| 1433 | } |
| 1434 | |
| 1435 | bool CUDABlas::DoBlasSymv(Stream *stream, blas::UpperLower uplo, uint64 n, |
| 1436 | float alpha, const DeviceMemory<float> &a, int lda, |
| 1437 | const DeviceMemory<float> &x, int incx, float beta, |
| 1438 | DeviceMemory<float> *y, int incy) { |
| 1439 | return DoBlasInternal<float>( |
| 1440 | cublasSsymv, stream, true /* = pointer_mode_host */, |
| 1441 | CUDABlasUpperLower(uplo), n, &alpha, GpuMemory(a), lda, GpuMemory(x), |
| 1442 | incx, &beta, GpuMemoryMutable(y), incy); |
| 1443 | } |
| 1444 | |
| 1445 | bool CUDABlas::DoBlasSymv(Stream *stream, blas::UpperLower uplo, uint64 n, |
| 1446 | double alpha, const DeviceMemory<double> &a, int lda, |
nothing calls this directly
no test coverage detected