Lines Matching refs:threads_count
35 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_1d_fastpath() local
36 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_1d_fastpath()
46 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_1d_fastpath()
48 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_1d_fastpath()
71 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_1d_with_thread_fastpath() local
72 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_1d_with_thread_fastpath()
82 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_1d_with_thread_fastpath()
84 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_1d_with_thread_fastpath()
116 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_1d_with_uarch_fastpath() local
117 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_1d_with_uarch_fastpath()
127 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_1d_with_uarch_fastpath()
129 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_1d_with_uarch_fastpath()
152 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_1d_tile_1d_fastpath() local
153 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_1d_tile_1d_fastpath()
168 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_1d_tile_1d_fastpath()
170 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_1d_tile_1d_fastpath()
194 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_2d_fastpath() local
195 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_2d_fastpath()
214 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_2d_fastpath()
216 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_2d_fastpath()
240 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_2d_with_thread_fastpath() local
241 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_2d_with_thread_fastpath()
260 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_2d_with_thread_fastpath()
262 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_2d_with_thread_fastpath()
286 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_2d_tile_1d_fastpath() local
287 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_2d_tile_1d_fastpath()
309 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_2d_tile_1d_fastpath()
311 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_2d_tile_1d_fastpath()
345 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_2d_tile_1d_with_uarch_fastpath() local
346 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_2d_tile_1d_with_uarch_fastpath()
368 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_2d_tile_1d_with_uarch_fastpath()
370 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_2d_tile_1d_with_uarch_fastpath()
405 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_2d_tile_1d_with_uarch_with_thread_fastpath() local
406 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_2d_tile_1d_with_uarch_with_thread_fastpath()
428 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_2d_tile_1d_with_uarch_with_thread_fastpath()
430 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_2d_tile_1d_with_uarch_with_thread_fastpath()
455 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_2d_tile_2d_fastpath() local
456 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_2d_tile_2d_fastpath()
480 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_2d_tile_2d_fastpath()
482 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_2d_tile_2d_fastpath()
517 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_2d_tile_2d_with_uarch_fastpath() local
518 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_2d_tile_2d_with_uarch_fastpath()
542 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_2d_tile_2d_with_uarch_fastpath()
544 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_2d_tile_2d_with_uarch_fastpath()
570 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_3d_fastpath() local
571 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_3d_fastpath()
596 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_3d_fastpath()
598 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_3d_fastpath()
623 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_3d_tile_1d_fastpath() local
624 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_3d_tile_1d_fastpath()
652 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_3d_tile_1d_fastpath()
654 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_3d_tile_1d_fastpath()
680 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_3d_tile_1d_with_thread_fastpath() local
681 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_3d_tile_1d_with_thread_fastpath()
709 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_3d_tile_1d_with_thread_fastpath()
711 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_3d_tile_1d_with_thread_fastpath()
746 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_3d_tile_1d_with_uarch_fastpath() local
747 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_3d_tile_1d_with_uarch_fastpath()
775 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_3d_tile_1d_with_uarch_fastpath()
777 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_3d_tile_1d_with_uarch_fastpath()
813 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_3d_tile_1d_with_uarch_with_thread_fastpath() local
814 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_3d_tile_1d_with_uarch_with_thread_fastpath()
842 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_3d_tile_1d_with_uarch_with_thread_fastpath()
844 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_3d_tile_1d_with_uarch_with_thread_fastpath()
870 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_3d_tile_2d_fastpath() local
871 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_3d_tile_2d_fastpath()
902 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_3d_tile_2d_fastpath()
904 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_3d_tile_2d_fastpath()
940 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_3d_tile_2d_with_uarch_fastpath() local
941 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_3d_tile_2d_with_uarch_fastpath()
972 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_3d_tile_2d_with_uarch_fastpath()
974 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_3d_tile_2d_with_uarch_fastpath()
1001 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_4d_fastpath() local
1002 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_4d_fastpath()
1034 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_4d_fastpath()
1036 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_4d_fastpath()
1062 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_4d_tile_1d_fastpath() local
1063 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_4d_tile_1d_fastpath()
1098 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_4d_tile_1d_fastpath()
1100 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_4d_tile_1d_fastpath()
1127 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_4d_tile_2d_fastpath() local
1128 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_4d_tile_2d_fastpath()
1165 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_4d_tile_2d_fastpath()
1167 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_4d_tile_2d_fastpath()
1204 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_4d_tile_2d_with_uarch_fastpath() local
1205 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_4d_tile_2d_with_uarch_fastpath()
1242 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_4d_tile_2d_with_uarch_fastpath()
1244 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_4d_tile_2d_with_uarch_fastpath()
1272 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_5d_fastpath() local
1273 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_5d_fastpath()
1311 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_5d_fastpath()
1313 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_5d_fastpath()
1340 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_5d_tile_1d_fastpath() local
1341 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_5d_tile_1d_fastpath()
1382 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_5d_tile_1d_fastpath()
1384 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_5d_tile_1d_fastpath()
1413 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_5d_tile_2d_fastpath() local
1414 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_5d_tile_2d_fastpath()
1457 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_5d_tile_2d_fastpath()
1459 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_5d_tile_2d_fastpath()
1489 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_6d_fastpath() local
1490 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_6d_fastpath()
1535 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_6d_fastpath()
1537 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_6d_fastpath()
1565 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_6d_tile_1d_fastpath() local
1566 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_6d_tile_1d_fastpath()
1614 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_6d_tile_1d_fastpath()
1616 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_6d_tile_1d_fastpath()
1646 const size_t threads_count = threadpool->threads_count.value; in pthreadpool_thread_parallelize_6d_tile_2d_fastpath() local
1647 const size_t range_threshold = -threads_count; in pthreadpool_thread_parallelize_6d_tile_2d_fastpath()
1697 for (size_t tid = modulo_decrement(thread_number, threads_count); in pthreadpool_thread_parallelize_6d_tile_2d_fastpath()
1699 tid = modulo_decrement(tid, threads_count)) in pthreadpool_thread_parallelize_6d_tile_2d_fastpath()