From de3fc08731e85dd575ced3aea8093103380b5cbe Mon Sep 17 00:00:00 2001 From: Giacomo Travaglini Date: Fri, 26 Mar 2021 16:09:55 +0000 Subject: [PATCH] configs: Fix signature in GPU_VIPER and Garnet_standalone This was broken by: https://gem5-review.googlesource.com/c/public/gem5/+/43287 Signed-off-by: Giacomo Travaglini Change-Id: I0ac64cfe64cefd6c6ad8a9e7d00def00ee967136 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/43746 Reviewed-by: Matt Sinclair Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- configs/ruby/GPU_VIPER.py | 2 +- configs/ruby/Garnet_standalone.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/ruby/GPU_VIPER.py b/configs/ruby/GPU_VIPER.py index 4ebd8ce342..9841213129 100644 --- a/configs/ruby/GPU_VIPER.py +++ b/configs/ruby/GPU_VIPER.py @@ -395,7 +395,7 @@ def define_options(parser): "cache controller") def create_system(options, full_system, system, dma_devices, bootmem, - ruby_system): + ruby_system, cpus): if buildEnv['PROTOCOL'] != 'GPU_VIPER': panic("This script requires the GPU_VIPER protocol to be built.") diff --git a/configs/ruby/Garnet_standalone.py b/configs/ruby/Garnet_standalone.py index 13e990d15a..f8e21fcf2f 100644 --- a/configs/ruby/Garnet_standalone.py +++ b/configs/ruby/Garnet_standalone.py @@ -40,7 +40,7 @@ def define_options(parser): return def create_system(options, full_system, system, dma_ports, bootmem, - ruby_system): + ruby_system, cpus): if buildEnv['PROTOCOL'] != 'Garnet_standalone': panic("This script requires Garnet_standalone protocol to be built.")