From 5d08eb62179b4a620b43f42e3458f4e4864d64d1 Mon Sep 17 00:00:00 2001 From: Marko Arandjelovic Date: Mon, 15 Apr 2024 16:42:22 +0200 Subject: [PATCH] SWDEV-456702 Fix Unit_hipMemcpyParam2D_Positive_Synchronization_Behavior - Device to device copies are async Change-Id: I9673710adf00e5f5b36739284090df22a1cb2cd8 [ROCm/hip-tests commit: a9b0e656e29fac5e6edd47a960a900e958991d87] --- projects/hip-tests/catch/unit/memory/hipMemcpyParam2D.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/projects/hip-tests/catch/unit/memory/hipMemcpyParam2D.cc b/projects/hip-tests/catch/unit/memory/hipMemcpyParam2D.cc index 7fc78c797c..ec391c5a51 100644 --- a/projects/hip-tests/catch/unit/memory/hipMemcpyParam2D.cc +++ b/projects/hip-tests/catch/unit/memory/hipMemcpyParam2D.cc @@ -67,11 +67,7 @@ TEST_CASE("Unit_hipMemcpyParam2D_Positive_Synchronization_Behavior") { #endif SECTION("Device to Device") { -#if HT_NVIDIA Memcpy2DDtoDSyncBehavior(MemcpyParam2DAdapter<>(), false); -#else - Memcpy2DDtoDSyncBehavior(MemcpyParam2DAdapter<>(), true); -#endif } #if HT_NVIDIA // Disabled on AMD due to defect - EXSWHTEC-232 @@ -196,4 +192,4 @@ TEST_CASE("Unit_hipMemcpyParam2D_Negative_Parameters") { NegativeTests(dst_alloc.ptr(), dst_alloc.pitch(), src_alloc.ptr(), src_alloc.pitch(), dst_alloc.width(), dst_alloc.height(), hipMemcpyDeviceToDevice); } -} \ No newline at end of file +}