| 1583 | } |
| 1584 | |
| 1585 | bool CUDABlas::DoBlasTpmv(Stream *stream, blas::UpperLower uplo, |
| 1586 | blas::Transpose trans, blas::Diagonal diag, uint64 n, |
| 1587 | const DeviceMemory<float> &ap, DeviceMemory<float> *x, |
| 1588 | int incx) { |
| 1589 | return DoBlasInternal<float>( |
| 1590 | cublasStpmv, stream, true /* = pointer_mode_host */, |
| 1591 | CUDABlasUpperLower(uplo), CUDABlasTranspose(trans), |
| 1592 | CUDABlasDiagonal(diag), n, GpuMemory(ap), GpuMemoryMutable(x), incx); |
| 1593 | } |
| 1594 | |
| 1595 | bool CUDABlas::DoBlasTpmv(Stream *stream, blas::UpperLower uplo, |
| 1596 | blas::Transpose trans, blas::Diagonal diag, uint64 n, |
nothing calls this directly
no test coverage detected