| 67 | #define REQUIRES(...) typename std::enable_if<(__VA_ARGS__)>::type* = nullptr |
| 68 | |
| 69 | HOST_DEVICE constexpr int ceil_div(int a, int b) { return (a + (b - 1)) / b; } |
| 70 | |
| 71 | template <class DType> |
| 72 | HOST_DEVICE constexpr DType _abs(DType a) { |
no outgoing calls
no test coverage detected