| 29 | void PrintMatrix(const float *const m, const int M, const int N, const int row_stride); |
| 30 | |
| 31 | constexpr inline int iceildiv(const int a, const int b) |
| 32 | { |
| 33 | return (a + b - 1) / b; |
| 34 | } |
| 35 | |
| 36 | template <typename T> |
| 37 | inline T roundup(const T a, const T b) |
no outgoing calls
no test coverage detected