From ca2592d3ba6b5344de0502865cf20ad233cd0056 Mon Sep 17 00:00:00 2001 From: Matthew Poremba Date: Sat, 14 Oct 2023 20:07:39 -0700 Subject: [PATCH] configs: Fix missing param exchange for GPUFS (#457) PR #367 adds an option to configs/ruby/GPU_VIPER.py that was not added to the corresponding dGPU equal for GPUFS and thus all GPUFS runs are failing. Fixed in this patch. --- configs/ruby/GPU_VIPER.py | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/ruby/GPU_VIPER.py b/configs/ruby/GPU_VIPER.py index fae9f1ba9c..b034cf76fd 100644 --- a/configs/ruby/GPU_VIPER.py +++ b/configs/ruby/GPU_VIPER.py @@ -619,6 +619,7 @@ def construct_gpudirs(options, system, ruby_system, network): dir_cntrl.create(options, [addr_range], ruby_system, system) dir_cntrl.number_of_TBEs = options.num_tbes dir_cntrl.useL3OnWT = False + dir_cntrl.L2isWB = options.WB_L2 # Connect the Directory controller to the ruby network dir_cntrl.requestFromCores = MessageBuffer(ordered=True)