Lines Matching refs:threads
207 dim3 threads(32, 2, nblocks);
218 compute_hists_kernel_many_blocks<nblocks><<<grid, threads, smem>>>(
261 template <int nthreads, // Number of threads which process one block historgam
302 dim3 threads(nthreads, 1, nblocks);
309 normalize_hists_kernel_many_blocks<32, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
311 normalize_hists_kernel_many_blocks<64, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
313 normalize_hists_kernel_many_blocks<64, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
315 normalize_hists_kernel_many_blocks<256, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
317 normalize_hists_kernel_many_blocks<512, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
332 template <int nthreads, // Number of threads per one histogram block
378 dim3 threads(nthreads, 1, nblocks);
386 compute_confidence_hists_kernel_many_blocks<nthreads, nblocks><<<grid, threads>>>(
394 template <int nthreads, // Number of threads per one histogram block
440 dim3 threads(nthreads, 1, nblocks);
446 classify_hists_kernel_many_blocks<nthreads, nblocks><<<grid, threads>>>(
488 dim3 threads(nthreads, 1);
492 extract_descrs_by_rows_kernel<nthreads><<<grid, threads>>>(
537 dim3 threads(nthreads, 1);
541 extract_descrs_by_cols_kernel<nthreads><<<grid, threads>>>(
794 dim3 threads(32, 8);
795 dim3 grid(divUp(dst.cols, threads.x), divUp(dst.rows, threads.y));
800 resize_for_hog_kernel<<<grid, threads>>>(sx, sy, (PtrStepSz<T>)dst, colOfs);