From a9daa4c8f4a74d11999de8ac2bfaa6eb4cc40a61 Mon Sep 17 00:00:00 2001 From: German Andryeyev Date: Tue, 19 Nov 2024 15:18:52 -0500 Subject: [PATCH] SWDEV-486602 - Disable sysmem pool Currently amd::Monitor can work in FILO mode for the active waits and cause a delay in wakeup of some threads. That may have a problem with the current sysmem pool design. Change-Id: I145081478d1e0b282d8838855c5718f09cf54b69 [ROCm/clr commit: 9473f143c2ad776ffd1a9c91f7d2b1f1adcb40eb] --- projects/clr/rocclr/utils/flags.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/rocclr/utils/flags.hpp b/projects/clr/rocclr/utils/flags.hpp index 9fc958809d..b1de9e584b 100644 --- a/projects/clr/rocclr/utils/flags.hpp +++ b/projects/clr/rocclr/utils/flags.hpp @@ -261,7 +261,7 @@ release(uint, DEBUG_HIP_BLOCK_SYNC, 50, \ "Blocks synchronization on CPU until the callback processing is done")\ release(uint, DEBUG_CLR_MAX_BATCH_SIZE, 1000, \ "Forces the callback to clean-up CPU submission queue") \ -release(bool, DEBUG_CLR_SYSMEM_POOL, true, \ +release(bool, DEBUG_CLR_SYSMEM_POOL, false, \ "Use sysmem pool implementation in runtime for amd commands") \ release(bool, DEBUG_HIP_KERNARG_COPY_OPT, true, \ "Enable/Disable multiple kern arg copies") \