mps_helpers.h 128 B

123456
  1. constexpr int threadsPerBlock = 512;
  2. template <typename T>
  3. constexpr inline T ceil_div(T n, T m) {
  4. return (n + m - 1) / m;
  5. }