Skip to content

Commit

Permalink
[tests] Disable test_regression_opencl_float_mi100 if WORKAROUND_ISSU…
Browse files Browse the repository at this point in the history
…E_1317 is set. (#1352)
  • Loading branch information
atamazov authored Dec 19, 2021
1 parent 03df5df commit 2de4c8b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,9 @@ option( WORKAROUND_ISSUE_1334 "" ${WORKAROUND_ISSUE_1334_DEFAULT})
set_var_to_condition(WORKAROUND_SWDEV_292187_DEFAULT MIOPEN_TEST_GFX1030)
option( WORKAROUND_SWDEV_292187 "" ${WORKAROUND_SWDEV_292187_DEFAULT})

set_var_to_condition(WORKAROUND_ISSUE_1317_DEFAULT MIOPEN_TEST_OPENCL)
option( WORKAROUND_ISSUE_1317 "" ${WORKAROUND_ISSUE_1317_DEFAULT})

if(NOT MIOPEN_TEST_MIOTENSILE)
if(MIOPEN_TEST_HALF)
if(MIOPEN_BACKEND_OPENCL)
Expand Down Expand Up @@ -599,6 +602,10 @@ function(add_custom_test NAME)
AND (${NAME} MATCHES "test_conv_ck_igemm_fwd_v6r1_dlops_nchw" ))
set_tests_properties(${NAME} PROPERTIES DISABLED On)
endif()
if(WORKAROUND_ISSUE_1317
AND (${NAME} MATCHES "test_regression_opencl_float_mi100" ))
set_tests_properties(${NAME} PROPERTIES DISABLED On)
endif()
endfunction()

if(${CODECOV_TEST})
Expand Down

0 comments on commit 2de4c8b

Please sign in to comment.