Home
last modified time | relevance | path

Searched refs:cell_thread_x (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudaobjdetect/src/cuda/
Dhog.cu124 const int cell_thread_x = threadIdx.x & 0xF; in compute_hists_kernel_many_blocks() local
134 4 * cell_x + cell_thread_x; in compute_hists_kernel_many_blocks()
141 if (cell_thread_x < 12) in compute_hists_kernel_many_blocks()
145 cell_thread_x; in compute_hists_kernel_many_blocks()
149 const int dist_x = -4 + (int)cell_thread_x - 4 * cell_x; in compute_hists_kernel_many_blocks()
175 if (cell_thread_x < 6) hist_[0] += hist_[6]; in compute_hists_kernel_many_blocks()
176 if (cell_thread_x < 3) hist_[0] += hist_[3]; in compute_hists_kernel_many_blocks()
177 if (cell_thread_x == 0) in compute_hists_kernel_many_blocks()
189 int tid = (cell_y * CELLS_PER_BLOCK_Y + cell_x) * 16 + cell_thread_x; in compute_hists_kernel_many_blocks()
/external/opencv3/modules/objdetect/src/opencl/
Dobjdetect_hog.cl85 const int cell_thread_x = lidX - cell_x * 12;
92 const int offset_x = gidX * cblock_stride_x + (cell_x << 2) + cell_thread_x;
101 cell_thread_x;
105 const int dist_x = -4 + cell_thread_x - 4 * cell_x;
132 if (cell_thread_x < 6)
135 if (cell_thread_x < 3)
140 if (cell_thread_x == 0)
147 int tid = (cell_y * CELLS_PER_BLOCK_Y + cell_x) * 12 + cell_thread_x;