From ee48f6221d6ba99175bb9ddb0ed08c68b268d776 Mon Sep 17 00:00:00 2001 From: Todd tiantuo Li <88386084+lttamd@users.noreply.github.com> Date: Tue, 25 Nov 2025 23:59:39 -0800 Subject: [PATCH] SWDEV-562708 - change default maximum SVM size to 256GB (#1731) --- 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 f7d774cd85..ddacf2182a 100644 --- a/projects/clr/rocclr/utils/flags.hpp +++ b/projects/clr/rocclr/utils/flags.hpp @@ -118,7 +118,7 @@ release(bool, DISABLE_DEFERRED_ALLOC, false, \ "Disables deferred memory allocation on device") \ release(int, AMD_GPU_FORCE_SINGLE_FP_DENORM, -1, \ "Force denorm for single precision: -1 - don't force, 0 - disable, 1 - enable") \ -release(uint, OCL_SET_SVM_SIZE, 4*16384, \ +release(uint, OCL_SET_SVM_SIZE, 256*1024, \ "set SVM space size for discrete GPU") \ release(uint, GPU_WAVES_PER_SIMD, 0, \ "Force the number of waves per SIMD (1-10)") \