Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
s-Nick committed May 8, 2024
1 parent 159400d commit ff25df6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/interface/blas2/backend/default.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ typename sb_handle_t::event_t _trsv(
return blas::internal::_trsv_impl<32, 4, uplo, trn, diag>(
sb_handle, _N, _mA, _lda, _vx, _incx, _dependencies);
} else {
std::cout << "Trsv operator not currently not supported on Intel GPUs\n";
std::cout << "Trsv operator currently not supported on Intel GPUs\n";
return {};
}
} else {
Expand Down Expand Up @@ -173,7 +173,7 @@ typename sb_handle_t::event_t _tbsv(
return blas::internal::_tbsv_impl<32, 4, uplo, trn, diag>(
sb_handle, _N, _K, _mA, _lda, _vx, _incx, _dependencies);
} else {
std::cout << "Tbsv operator not currently not supported on Intel GPUs\n";
std::cout << "Tbsv operator currently not supported on Intel GPUs\n";
return {};
}
} else {
Expand All @@ -200,7 +200,7 @@ typename sb_handle_t::event_t _tpsv(
return blas::internal::_tpsv_impl<32, 4, uplo, trn, diag>(
sb_handle, _N, _mA, _vx, _incx, _dependencies);
} else {
std::cout << "Tpsv operator not currently not supported on Intel GPUs\n";
std::cout << "Tpsv operator currently not supported on Intel GPUs\n";
return {};
}
} else {
Expand Down

0 comments on commit ff25df6

Please sign in to comment.