| 16 | //__all_sync wrapper |
| 17 | template<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 |
| 27 | template<typename T> |
no outgoing calls
no test coverage detected