Skip to content

Commit

Permalink
Add tpmv
Browse files Browse the repository at this point in the history
  • Loading branch information
pgorlani committed May 11, 2023
1 parent beec862 commit 4d39eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blas/backends/syclblas/syclblas_level2.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ void tbsv(sycl::queue &queue, oneapi::mkl::uplo upper_lower, oneapi::mkl::transp
void tpmv(sycl::queue &queue, oneapi::mkl::uplo upper_lower, oneapi::mkl::transpose trans,
oneapi::mkl::diag unit_diag, std::int64_t n, sycl::buffer<real_t, 1> &a,
sycl::buffer<real_t, 1> &x, std::int64_t incx) {
throw unimplemented("blas", "tpmv", "");
CALL_SYCLBLAS_FN(::blas::_tpmv, queue, upper_lower, trans, unit_diag, n, a, x, incx);
}

void tpmv(sycl::queue &queue, oneapi::mkl::uplo upper_lower, oneapi::mkl::transpose trans,
Expand Down

0 comments on commit 4d39eab

Please sign in to comment.