| 1413 | } |
| 1414 | |
| 1415 | bool CUDABlas::DoBlasSpr2(Stream *stream, blas::UpperLower uplo, uint64 n, |
| 1416 | float alpha, const DeviceMemory<float> &x, int incx, |
| 1417 | const DeviceMemory<float> &y, int incy, |
| 1418 | DeviceMemory<float> *ap) { |
| 1419 | return DoBlasInternal<float>( |
| 1420 | cublasSspr2, stream, true /* = pointer_mode_host */, |
| 1421 | CUDABlasUpperLower(uplo), n, &alpha, GpuMemory(x), incx, GpuMemory(y), |
| 1422 | incy, GpuMemoryMutable(ap)); |
| 1423 | } |
| 1424 | |
| 1425 | bool CUDABlas::DoBlasSpr2(Stream *stream, blas::UpperLower uplo, uint64 n, |
| 1426 | double alpha, const DeviceMemory<double> &x, int incx, |
nothing calls this directly
no test coverage detected