From bfbcb7c05cfce5d1029150363389676779046eda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Zwoli=C5=84ski?= Date: Thu, 8 Aug 2024 17:11:59 +0000 Subject: [PATCH] fix: adjust tests to enabled global allocator 9/n MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Related-To: NEO-7063 Signed-off-by: Fabian ZwoliƄski --- shared/source/execution_environment/execution_environment.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shared/source/execution_environment/execution_environment.cpp b/shared/source/execution_environment/execution_environment.cpp index 937d79aab7..4004e76c7a 100644 --- a/shared/source/execution_environment/execution_environment.cpp +++ b/shared/source/execution_environment/execution_environment.cpp @@ -13,6 +13,7 @@ #include "shared/source/direct_submission/direct_submission_controller.h" #include "shared/source/execution_environment/root_device_environment.h" #include "shared/source/helpers/affinity_mask.h" +#include "shared/source/helpers/bindless_heaps_helper.h" #include "shared/source/helpers/driver_model_type.h" #include "shared/source/helpers/gfx_core_helper.h" #include "shared/source/helpers/hw_info.h" @@ -42,6 +43,7 @@ void ExecutionEnvironment::releaseRootDeviceEnvironmentResources(RootDeviceEnvir rootDeviceEnvironment->builtins.reset(); } rootDeviceEnvironment->releaseDummyAllocation(); + rootDeviceEnvironment->bindlessHeapsHelper.reset(); } ExecutionEnvironment::~ExecutionEnvironment() {