MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / all_sync

Function all_sync

src/backend/cuda/kernel/shfl_intrinsics.hpp:18–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16//__all_sync wrapper
17template<typename T>
18__device__ T all_sync(T var) {
19#if (CUDA_VERSION >= 9000)
20 return __all_sync(FULL_MASK, var);
21#else
22 return __all(var);
23#endif
24}
25
26//__all_sync wrapper
27template<typename T>

Callers 2

reduce_blocks_by_keyFunction · 0.85
reduce_blocks_dim_by_keyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected