HomeSort by relevance Sort by last modified time
    Searched refs:thread_idx (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
depthtospace_op_gpu.cu.cc 108 CUDA_1D_KERNEL_LOOP(thread_idx, nthreads) {
113 // We assume thread_idx encodes n_oC_iY_iX, and use an unrolled loop over
120 const int n_oC_iY = thread_idx / input_width;
121 const int iX = thread_idx - n_oC_iY * input_width;
123 const int n = thread_idx / output_depth_by_input_area;
124 const int oC_iY_iX = thread_idx - n * output_depth_by_input_area;
spacetodepth_op_gpu.cu.cc 108 CUDA_1D_KERNEL_LOOP(thread_idx, nthreads) {
113 // We assume thread_idx encodes n_iC_oY_oX, and use an unrolled loop over
120 const int n_iC_oY = thread_idx / output_width;
121 const int oX = thread_idx - n_iC_oY * output_width;
122 const int n = thread_idx / input_depth_by_output_area;
123 const int iC_oY_oX = thread_idx - n * input_depth_by_output_area;
depthwise_conv_op_gpu.cu.cc 218 const int thread_idx = thread_pix * kBlockDepth + thread_depth;
221 for (int i = thread_idx; i < tile_size; i += block_size) {
239 thread_pix < filter_pixels ? tile_size + thread_idx : 0;
497 const int thread_idx = thread_depth * block_pixels + thread_pix;
500 for (int i = thread_idx; i < tile_size; i += block_size) {
516 const int filter_pix = thread_idx / kBlockDepth;
517 const int filter_channel = thread_idx % kBlockDepth;
522 filter_pix < filter_pixels ? tile_size + thread_idx : 0;
    [all...]
  /external/opencv/cv/src/
cvtemplmatch.cpp 198 int thread_idx = cvGetThreadNum(); local
204 CvMat* _dft_img = dft_img[thread_idx];
205 void* _buf = buf[thread_idx];
  /system/core/adb/
test_device.py 501 def hammer(thread_idx, thread_count, result):
503 for i in range(thread_idx, 240, thread_count):
508 result[thread_idx] = success
    [all...]
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.cc 993 int thread_idx = 0; local
1002 list.CopyIndexAfterObject(thread_idx++, &thread, sizeof(MDRawThread));
    [all...]

Completed in 184 milliseconds