From 75960e5bd3b523c9850d21feb017f6b3523b5595 Mon Sep 17 00:00:00 2001 From: nscipione Date: Mon, 1 Jul 2024 17:01:18 +0100 Subject: [PATCH] Address PR feedbacks --- include/blas_meta.h | 2 +- test/unittest/CMakeLists.txt | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/include/blas_meta.h b/include/blas_meta.h index 6ba984958..ba0fb4371 100644 --- a/include/blas_meta.h +++ b/include/blas_meta.h @@ -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{}; diff --git a/test/unittest/CMakeLists.txt b/test/unittest/CMakeLists.txt index 030be228c..f473ab396 100644 --- a/test/unittest/CMakeLists.txt +++ b/test/unittest/CMakeLists.txt @@ -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()