From 94bc3b15a19c7d786aa24bd4eeec938a61590f84 Mon Sep 17 00:00:00 2001 From: atamazov Date: Thu, 4 Jan 2024 02:56:44 +0300 Subject: [PATCH] fix-rocm61rc417(06) [tests] Disable some testcase from handle_test as #2600 still persists in Hip Mainline 417. --- test/handle_test.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/handle_test.cpp b/test/handle_test.cpp index ba143d7ad1..16ce78f043 100644 --- a/test/handle_test.cpp +++ b/test/handle_test.cpp @@ -29,12 +29,11 @@ #define WORKAROUND_SWDEV_257056_PCH_MISSING_MACROS 1 // https://gerrit-git.amd.com/c/compute/ec/clr/+/972441 -// "HIP_PACKAGE_VERSION_FLAT == 6001000000ULL" is for ROCm 6.1 RC where issue #2600 is not -// yet fixed in the compiler. In order to test such release candidates, we have to -// override HIP version to 6.1.0. +// Issue #2600 is not fixed in 6.0 and still persists in 6.1 release candidates. +// We are expecting it to be fixed in 6.1 RC after week 4 in 2024. #define WORKAROUND_ISSUE_2600 \ ((HIP_PACKAGE_VERSION_FLAT >= 6000000000ULL && HIP_PACKAGE_VERSION_FLAT <= 6000999999ULL) || \ - HIP_PACKAGE_VERSION_FLAT == 6001000000ULL) + (HIP_PACKAGE_VERSION_FLAT >= 6001000000ULL && HIP_PACKAGE_VERSION_FLAT <= 6001024049ULL)) #include #include