| 47 | |
| 48 | template <typename T> |
| 49 | inline void DiagAdd(DeviceDnTen<T>& mat, DeviceDnTen<T>& diag){ |
| 50 | // allocate memory for the result |
| 51 | DiagAddKernel<<<(mat.dimensions[0] + 1023) / 1024, 1024>>>(mat.vals, diag.vals, mat.dimensions[0]); |
| 52 | |
| 53 | } |
| 54 | |
| 55 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected