Home
last modified time | relevance | path

Searched refs:packed_reduction_method (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_csupport.cpp3464 ((__kmp_threads[(gtid)]->th.th_local.packed_reduction_method) = (rmethod))
3467 (__kmp_threads[(gtid)]->th.th_local.packed_reduction_method)
3637 PACKED_REDUCTION_METHOD_T packed_reduction_method; in __kmpc_reduce_nowait() local
3683 packed_reduction_method = __kmp_determine_reduction_method( in __kmpc_reduce_nowait()
3685 __KMP_SET_REDUCTION_METHOD(global_tid, packed_reduction_method); in __kmpc_reduce_nowait()
3688 if (packed_reduction_method == critical_reduce_block) { in __kmpc_reduce_nowait()
3695 } else if (packed_reduction_method == empty_reduce_block) { in __kmpc_reduce_nowait()
3703 } else if (packed_reduction_method == atomic_reduce_block) { in __kmpc_reduce_nowait()
3716 } else if (TEST_REDUCTION_METHOD(packed_reduction_method, in __kmpc_reduce_nowait()
3749 __kmp_barrier(UNPACK_REDUCTION_BARRIER(packed_reduction_method), in __kmpc_reduce_nowait()
[all …]
H A Dkmp.h578 #define UNPACK_REDUCTION_METHOD(packed_reduction_method) \ argument
579 ((enum _reduction_method)((packed_reduction_method) & (0x0000FF00)))
581 #define UNPACK_REDUCTION_BARRIER(packed_reduction_method) \ argument
582 ((enum barrier_type)((packed_reduction_method) & (0x000000FF)))
587 #define UNPACK_REDUCTION_METHOD(packed_reduction_method) \ argument
588 (packed_reduction_method)
590 #define UNPACK_REDUCTION_BARRIER(packed_reduction_method) (bs_plain_barrier) argument
593 #define TEST_REDUCTION_METHOD(packed_reduction_method, which_reduction_block) \ argument
594 ((UNPACK_REDUCTION_METHOD(packed_reduction_method)) == \
2357 packed_reduction_method; /* stored by __kmpc_reduce*(), used by member
H A Dkmp_runtime.cpp9070 return ((__kmp_entry_thread()->th.th_local.packed_reduction_method) >> 8); in __kmp_get_reduce_method()