Skip to content

Commit

Permalink
Add trsv to skipped test for AMD GPUs
Browse files Browse the repository at this point in the history
Running tests on w6800 AMD GPU revails another test failing. Skip this
test for now.

Signed-off-by: nscipione <[email protected]>
  • Loading branch information
s-Nick committed Apr 29, 2024
1 parent 192e5e3 commit 9b3ad2b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/unittest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ if(is_dpcpp AND ${TUNING_TARGET} STREQUAL "DEFAULT")
set(DEFAULT_SKIP
${PORTBLAS_UNITTEST}/blas1/blas1_iamax_test.cpp
${PORTBLAS_UNITTEST}/blas1/blas1_iamin_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_trsv_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_tbsv_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_tpsv_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_trsv_test.cpp
${PORTBLAS_UNITTEST}/blas3/blas3_trsm_test.cpp
)
message(WARNING "Targetting NVIDIA hardware with DEFAULT TUNING_TARGET.
Expand All @@ -119,9 +119,10 @@ if(is_dpcpp AND ${TUNING_TARGET} STREQUAL "DEFAULT")
${PORTBLAS_UNITTEST}/blas1/blas1_iamin_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_tbsv_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_tpsv_test.cpp
${PORTBLAS_UNITTEST}/blas2/blas2_trsv_test.cpp
)
message(WARNING "Targetting AMD hardware with DEFAULT TUNING_TARGET.
Disabling tests for following operators: iamax, iamin, tbsv, tpsv.")
Disabling tests for following operators: iamax, iamin, tbsv, tpsv, trsv.")
endif()
endif()

Expand Down

0 comments on commit 9b3ad2b

Please sign in to comment.