| 223 | } |
| 224 | template <> |
| 225 | Status DoMatrixTranspose(const GPUDevice& device, const Tensor& in, |
| 226 | Tensor* out) { |
| 227 | return internal::DoMatrixTransposeImpl(device, in, /*conjugate=*/false, out); |
| 228 | } |
| 229 | template <> |
| 230 | Status DoConjugateMatrixTranspose(const GPUDevice& device, const Tensor& in, |
| 231 | Tensor* out) { |
nothing calls this directly
no test coverage detected