From daceede8a78ef04b4567023bdf3a66d8cb1a5fc6 Mon Sep 17 00:00:00 2001 From: German Andryeyev Date: Fri, 15 Mar 2024 13:24:44 -0400 Subject: [PATCH] SWDEV-311271 - Enable mempools under Linux Change-Id: I7fda94e61121f9d3a30f4ad185b8a97712922f3c [ROCm/clr commit: 7a371503b23c7a1a1f25bad1ed124cd67b3439eb] --- projects/clr/rocclr/utils/flags.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/clr/rocclr/utils/flags.hpp b/projects/clr/rocclr/utils/flags.hpp index a5f43c1179..6eee4e8e48 100644 --- a/projects/clr/rocclr/utils/flags.hpp +++ b/projects/clr/rocclr/utils/flags.hpp @@ -194,11 +194,11 @@ release(bool, ROC_SYSTEM_SCOPE_SIGNAL, true, \ "Enable system scope for signals (uses interrupts).") \ release(bool, GPU_FORCE_QUEUE_PROFILING, false, \ "Force command queue profiling by default") \ -release(bool, HIP_MEM_POOL_SUPPORT, IS_WINDOWS, \ +release(bool, HIP_MEM_POOL_SUPPORT, true, \ "Enables memory pool support in HIP") \ -release(bool, HIP_MEM_POOL_USE_VM, IS_WINDOWS, \ +release(bool, HIP_MEM_POOL_USE_VM, true, \ "Enables memory pool support in HIP") \ -release(bool, PAL_HIP_IPC_FLAG, true, \ +release(bool, PAL_HIP_IPC_FLAG, true, \ "Enable interprocess flag for device allocation in PAL HIP") \ release(uint, PAL_FORCE_ASIC_REVISION, 0, \ "Force a specific asic revision for all devices") \