From f964f45902ce18850caa30a64c7d34c354058c42 Mon Sep 17 00:00:00 2001 From: vstojilj Date: Mon, 13 Oct 2025 16:38:27 +0200 Subject: [PATCH] SWDEV-553920 - Disable and fix failing tests (#1133) --- projects/hip-tests/catch/hipTestMain/config/config_amd_linux | 2 ++ projects/hip-tests/catch/unit/memory/hipMemcpyPeerAsync.cc | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/hip-tests/catch/hipTestMain/config/config_amd_linux b/projects/hip-tests/catch/hipTestMain/config/config_amd_linux index bc1602a1a7..0d808d4d79 100644 --- a/projects/hip-tests/catch/hipTestMain/config/config_amd_linux +++ b/projects/hip-tests/catch/hipTestMain/config/config_amd_linux @@ -603,6 +603,8 @@ "Unit_hipGraphNodeSetEnabled_Functional_MemSet", "Unit_hipGraph_PerfCheck_hipGraphExecChildGraphNodeSetParams", "Unit_TexObjectCreate_TypePitch2D_IncompleteInit", + "=== SWDEV-553920 disabled until multi device graph issues are resolved ===", + "Unit_hipGraphUpload_Functional_multidevice_test", #endif #if defined gfx90a || defined gfx942 || defined gfx950 "=== SWDEV-443630 : Below test failed in stress test on 19/01/24 ===", diff --git a/projects/hip-tests/catch/unit/memory/hipMemcpyPeerAsync.cc b/projects/hip-tests/catch/unit/memory/hipMemcpyPeerAsync.cc index 031bde6efa..0e50795dec 100644 --- a/projects/hip-tests/catch/unit/memory/hipMemcpyPeerAsync.cc +++ b/projects/hip-tests/catch/unit/memory/hipMemcpyPeerAsync.cc @@ -202,11 +202,9 @@ TEST_CASE("Unit_hipMemcpyPeerAsync_Positive_ZeroSize") { HIP_CHECK(hipGetLastError()); constexpr int expected_value = 20; - HIP_CHECK(hipSetDevice(dst_device)); VectorSet<<>>(dst_alloc.ptr(), expected_value, element_count); HIP_CHECK(hipGetLastError()); - HIP_CHECK(hipSetDevice(src_device)); constexpr int set_value_h = 21; std::fill_n(result.host_ptr(), element_count, set_value_h);