Skip to content

Commit

Permalink
Address PR feedbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
s-Nick committed Jul 1, 2024
1 parent 8116dbf commit 75960e5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion include/blas_meta.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class unsupported_exception : public std::runtime_error {
: std::runtime_error(operator_name), _msg(operator_name) {
_msg += " operator currently not supported on selected device";
};
const char *what() const noexcept { return _msg.c_str(); }
const char *what() const noexcept override { return _msg.c_str(); }

private:
std::string _msg{};
Expand Down
10 changes: 0 additions & 10 deletions test/unittest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,6 @@ if(is_dpcpp)
)
endif()

if( ("${TUNING_TARGET}" STREQUAL "INTEL_GPU") OR
("${DPCPP_SYCL_ARCH}" MATCHES "_pvc|_agm") )
message(WARNING "disabling trsv, tbsv and tpsv tests for Intel ARC and Intel GPU Max GPUs")
set(TESTS_TO_SKIP
${PORTBLAS_UNITTEST}/blas2/blas2_trsv_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_tbsv_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_tpsv_test.cpp
)
endif()

if(GEMM_TALL_SKINNY_SUPPORT)
list(APPEND SYCL_UNITTEST_SRCS ${PORTBLAS_UNITTEST}/blas3/blas3_gemm_tall_skinny_test.cpp)
endif()
Expand Down

0 comments on commit 75960e5

Please sign in to comment.