From 633cd1179fff4a8a5da52657cb1177a691b062fc Mon Sep 17 00:00:00 2001 From: Branislav Brzak Date: Fri, 4 Oct 2024 09:06:08 +0000 Subject: [PATCH] SWDEV-489117 - Add missing stream destry in Unit_hipCGMultiGridGroupType_Basic Change-Id: Ic926da700e7c1933d105495306b94f302d130150 [ROCm/hip-tests commit: 09697ca260c284b7460817fe8f9c5995a9fb6d51] --- .../catch/unit/cooperativeGrps/hipCGMultiGridGroupType_old.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/hip-tests/catch/unit/cooperativeGrps/hipCGMultiGridGroupType_old.cc b/projects/hip-tests/catch/unit/cooperativeGrps/hipCGMultiGridGroupType_old.cc index d8b37c5461..a9a66dfe99 100644 --- a/projects/hip-tests/catch/unit/cooperativeGrps/hipCGMultiGridGroupType_old.cc +++ b/projects/hip-tests/catch/unit/cooperativeGrps/hipCGMultiGridGroupType_old.cc @@ -374,6 +374,8 @@ static void test_cg_multi_grid_group_type(F kernel_func, int num_devices, int bl HIP_CHECK(hipHostFree(size_host[i])); HIP_CHECK(hipHostFree(thd_rank_host[i])); HIP_CHECK(hipHostFree(is_valid_host[i])); + + HIP_CHECK(hipStreamDestroy(stream[i])); } }