From b0599b7e4a0bf227fc772552e1674b56d7be8ca3 Mon Sep 17 00:00:00 2001 From: Branislav Brzak Date: Fri, 4 Oct 2024 09:02:52 +0000 Subject: [PATCH] SWDEV-489116 - Add missing hipFree to Unit_cg_binary_part Change-Id: I1c2a8f21213d7e257e491d55714f0a2b77f6d1b3 --- catch/unit/cooperativeGrps/binary_partition.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/catch/unit/cooperativeGrps/binary_partition.cc b/catch/unit/cooperativeGrps/binary_partition.cc index 0460e9f7a0..a6b8a0872d 100644 --- a/catch/unit/cooperativeGrps/binary_partition.cc +++ b/catch/unit/cooperativeGrps/binary_partition.cc @@ -100,6 +100,7 @@ TEST_CASE("Unit_cg_binary_part") { REQUIRE(even_output == 1); } + HIP_CHECK(hipFree(data)); HIP_CHECK(hipFree(odd_res)); HIP_CHECK(hipFree(even_res)); } \ No newline at end of file