| 1395 | } |
| 1396 | |
| 1397 | bool CUDABlas::DoBlasSpr(Stream *stream, blas::UpperLower uplo, uint64 n, |
| 1398 | float alpha, const DeviceMemory<float> &x, int incx, |
| 1399 | DeviceMemory<float> *ap) { |
| 1400 | return DoBlasInternal<float>(cublasSspr, stream, |
| 1401 | true /* = pointer_mode_host */, |
| 1402 | CUDABlasUpperLower(uplo), n, &alpha, |
| 1403 | GpuMemory(x), incx, GpuMemoryMutable(ap)); |
| 1404 | } |
| 1405 | |
| 1406 | bool CUDABlas::DoBlasSpr(Stream *stream, blas::UpperLower uplo, uint64 n, |
| 1407 | double alpha, const DeviceMemory<double> &x, int incx, |
nothing calls this directly
no test coverage detected