| 188 | |
| 189 | template<typename T> |
| 190 | static inline void printMatrixWithLimit(T* ptr, int m, int k, int stride, bool is_device_ptr) { |
| 191 | printMatrix(ptr, std::min(PRINT_LIMIT, m), std::min(PRINT_LIMIT, k), stride, is_device_ptr); |
| 192 | } |
nothing calls this directly
no test coverage detected