| 16 | // take deviceDnTen as input |
| 17 | template <typename T> |
| 18 | void SqrtDn(DeviceDnTen<T>& out, DeviceDnTen<T>& in) { |
| 19 | int blockSize = 1024; |
| 20 | int numBlocks = (out.total_size + blockSize - 1) / blockSize; |
| 21 | sqrtKernel<<<numBlocks, blockSize>>>(out.vals, in.vals, out.total_size); |
| 22 | } |
| 23 | |
| 24 | #endif // DENSE_SQRT_H |
nothing calls this directly
no outgoing calls
no test coverage detected