From 035c860b2aee8e88cbede64eae5a9f8771cdecbf Mon Sep 17 00:00:00 2001 From: "Huang, AnZhong" Date: Thu, 8 May 2025 14:05:48 +0800 Subject: [PATCH] SWDEV-527299 - Support HIP_POINTER_ATTRIBUTE_CONTEXT (#122) Removed this verification, as HIP_POINTER_ATTRIBUTE_CONTEXT will be supported. [ROCm/hip-tests commit: 2c800b120d66b8beb73bf58f05f66169d36c024a] --- .../hip-tests/catch/unit/memory/hipPointerGetAttribute.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/projects/hip-tests/catch/unit/memory/hipPointerGetAttribute.cc b/projects/hip-tests/catch/unit/memory/hipPointerGetAttribute.cc index 16101a6283..7b33062d2b 100644 --- a/projects/hip-tests/catch/unit/memory/hipPointerGetAttribute.cc +++ b/projects/hip-tests/catch/unit/memory/hipPointerGetAttribute.cc @@ -322,10 +322,6 @@ TEST_CASE("Unit_hipPointerGetAttribute_Negative") { REQUIRE(hipPointerGetAttribute(&data, HIP_POINTER_ATTRIBUTE_MEMPOOL_HANDLE, reinterpret_cast(A_d)) == hipErrorNotSupported); } - SECTION("Pass HIP_POINTER_ATTRIBUTE_CONTEXT not supported by HIP") { - REQUIRE(hipPointerGetAttribute(&data, HIP_POINTER_ATTRIBUTE_CONTEXT, - reinterpret_cast(A_d)) == hipErrorNotSupported); - } SECTION("Pass HIP_POINTER_ATTRIBUTE_P2P_TOKENS not supported by HIP") { REQUIRE(hipPointerGetAttribute(&data, HIP_POINTER_ATTRIBUTE_P2P_TOKENS, reinterpret_cast(A_d)) == hipErrorNotSupported);