Lines Matching refs:nthreads
1198 int nthreads; in ocl_normalize_hists() local
1220 nthreads = blocks_in_group * block_hist_size; in ocl_normalize_hists()
1222 globalThreads[0] = nthreads * num_groups; in ocl_normalize_hists()
1223 localThreads[0] = nthreads; in ocl_normalize_hists()
1238 nthreads = power_2up(block_hist_size); in ocl_normalize_hists()
1239 globalThreads[0] = img_block_width * nthreads; in ocl_normalize_hists()
1241 localThreads[0] = nthreads; in ocl_normalize_hists()
1243 if ((nthreads < 32) || (nthreads > 512) ) in ocl_normalize_hists()
1246 idx = k.set(idx, nthreads); in ocl_normalize_hists()
1252 idx = k.set(idx, (void*)NULL, nthreads * sizeof(float)); in ocl_normalize_hists()
1644 int nthreads; in ocl_classify_hists() local
1653 nthreads = 180; in ocl_classify_hists()
1669 nthreads = 256; in ocl_classify_hists()
1685 nthreads = 256; in ocl_classify_hists()
1707 size_t globalThreads[3] = { img_win_width * nthreads, img_win_height, 1 }; in ocl_classify_hists()
1708 size_t localThreads[3] = { nthreads, 1, 1 }; in ocl_classify_hists()