| 1313 | } |
| 1314 | |
| 1315 | bool CUDABlas::DoBlasHpr(Stream *stream, blas::UpperLower uplo, uint64 n, |
| 1316 | float alpha, |
| 1317 | const DeviceMemory<std::complex<float>> &x, int incx, |
| 1318 | DeviceMemory<std::complex<float>> *ap) { |
| 1319 | return DoBlasInternal<std::complex<float>>( |
| 1320 | cublasChpr, stream, true /* = pointer_mode_host */, |
| 1321 | CUDABlasUpperLower(uplo), n, GpuComplex(&alpha), GpuComplex(GpuMemory(x)), |
| 1322 | incx, GpuComplex(GpuMemoryMutable(ap))); |
| 1323 | } |
| 1324 | |
| 1325 | bool CUDABlas::DoBlasHpr(Stream *stream, blas::UpperLower uplo, uint64 n, |
| 1326 | double alpha, |
nothing calls this directly
no test coverage detected