| 1625 | } |
| 1626 | |
| 1627 | bool CUDABlas::DoBlasTpsv(Stream *stream, blas::UpperLower uplo, |
| 1628 | blas::Transpose trans, blas::Diagonal diag, uint64 n, |
| 1629 | const DeviceMemory<float> &ap, DeviceMemory<float> *x, |
| 1630 | int incx) { |
| 1631 | return DoBlasInternal<float>( |
| 1632 | cublasStpsv, stream, true /* = pointer_mode_host */, |
| 1633 | CUDABlasUpperLower(uplo), CUDABlasTranspose(trans), |
| 1634 | CUDABlasDiagonal(diag), n, GpuMemory(ap), GpuMemoryMutable(x), incx); |
| 1635 | } |
| 1636 | |
| 1637 | bool CUDABlas::DoBlasTpsv(Stream *stream, blas::UpperLower uplo, |
| 1638 | blas::Transpose trans, blas::Diagonal diag, uint64 n, |
nothing calls this directly
no test coverage detected