From 656b7c111cf21bf3bea21686ef7edb39325b53de Mon Sep 17 00:00:00 2001 From: Rakesh Roy <137397847+rakesroy@users.noreply.github.com> Date: Fri, 8 Sep 2023 14:01:44 +0530 Subject: [PATCH] Disable failed tests in PSDB stress test on 29th Aug 2023 (#415) - Unit_hipHostRegister_Memcpy - int/float/double failures are fixed in latest mainline (SWDEV-393727). - Remaining testcases were random failures seen only during stress test. Could be due to driver/hardware issue. [ROCm/hip-tests commit: 400c4a1bfe86daa770c2288832ac64e5445a0fe2] --- .../catch/hipTestMain/config/config_amd_linux | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/projects/hip-tests/catch/hipTestMain/config/config_amd_linux b/projects/hip-tests/catch/hipTestMain/config/config_amd_linux index aded65f0d6..6c353b8921 100644 --- a/projects/hip-tests/catch/hipTestMain/config/config_amd_linux +++ b/projects/hip-tests/catch/hipTestMain/config/config_amd_linux @@ -1,4 +1,13 @@ #define COMMON + +#if defined gfx906 + #define VEGA20 +#endif + +#if defined gfx908 + #define MI100 +#endif + #if defined gfx90a || defined gfx940 #define MI2XX #endif @@ -143,6 +152,15 @@ "Unit_hiprtc_half_shuffle", "Unit_hiprtc_includepath", #endif + #if defined VEGA20 + "=== SWDEV-419112 Below tests fail in stress test on 29/08/23 ===", + "Unit_deviceAllocation_Malloc_ComplexDataType", + "Unit_hipStreamCreate_WithPriorityPerformance_Default_low", + #endif + #if defined MI100 + "=== Below test soft hang in stress test on 29/08/23 ===", + "Unit_hipMultiThreadStreams2", + #endif #if defined MI2XX "Unit_hipStreamPerThread_DeviceReset_1", "Unit_hipMallocManaged_OverSubscription", @@ -160,6 +178,7 @@ "Unit_hipSignalExternalSemaphoresAsync_Vulkan_Negative_Parameters", "Unit_hipImportExternalSemaphore_Vulkan_Negative_Parameters", "Unit_hipDestroyExternalSemaphore_Vulkan_Negative_Parameters", + "SWDEV-415692 Soft hang in stress test on 29/08/23", "Unit_Grid_Group_Sync_Positive_Basic", "=== Below hiprtc tests are disabled temporarily, will be renabled once patches for SWDEV-395996 are merged ===", "Unit_hiprtc_saxpy", @@ -173,6 +192,23 @@ "Unit_RTC_LinkerAPI", "Unit_hiprtc_half_shuffle", "Unit_hiprtc_includepath", + "=== Below tests fail in stress test on 29/08/23 ===", + "Unit_hipMemcpy2DToArray_multiDevicePinnedMemPeerGpu", + "Unit_hipMemcpy2DToArray_multiDeviceDeviceContextChange", + "Unit_hipMemcpy2DToArrayAsync_multiDeviceDeviceContextChange", + "Unit_hipMemcpy3D_multiDevice-OnPeerDevice", + "Unit_hipMemcpy3DAsync_multiDevice-D2D", + "Unit_hipMemcpy3DAsync_multiDevice-DiffStream", + "Unit_hipMemcpy2DFromArray_multiDevicePinnedMemPeerGpu", + "Unit_hipMemcpy2DFromArray_multiDeviceContextChange", + "Unit_hipMemcpy2DFromArrayAsync_multiDeviceContextChange", + "Unit_hipMemcpyAtoH_multiDevice-PeerDeviceContext - char", + "Unit_hipMemcpyAtoH_multiDevice-PeerDeviceContext - int", + "Unit_hipMemcpyAtoH_multiDevice-PeerDeviceContext - float", + "Unit_hipMemcpyHtoA_multiDevice-PeerDeviceContext - char", + "Unit_hipMemcpyHtoA_multiDevice-PeerDeviceContext - int", + "Unit_hipMemcpyHtoA_multiDevice-PeerDeviceContext - float", + "Unit_hipDrvMemcpy3D_Host2ArrayDeviceContextChange", #endif "End of json" ]