From 7d46f6014540ed93a6e2c4221f6b027bb5403672 Mon Sep 17 00:00:00 2001 From: Thorsten Kurth Date: Wed, 24 May 2023 09:46:18 +0200 Subject: [PATCH] Update run_benchmark.sh This is a fix to properly pass the io-mode to the benchmark --- .../pytorch/deepCam-inference/scripts/run_benchmark.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gds/benchmarks/pytorch/deepCam-inference/scripts/run_benchmark.sh b/gds/benchmarks/pytorch/deepCam-inference/scripts/run_benchmark.sh index a980360..9a1a9cf 100755 --- a/gds/benchmarks/pytorch/deepCam-inference/scripts/run_benchmark.sh +++ b/gds/benchmarks/pytorch/deepCam-inference/scripts/run_benchmark.sh @@ -83,10 +83,10 @@ elif [ "${mode}" == "training" ]; then args="${common_args} --preprocess --mode=train" tags="${common_tags}-preprocess-train${padtag}${memmaptag}" elif [ "${mode}" == "io" ]; then - args="${devarg} ${memmaparg} --drop_fs_cache" + args="${devarg} ${memmaparg} --drop_fs_cache --mode=io" tags="nocache${padtag}${memmaptag}" elif [ "${mode}" == "io-cache" ]; then - args="${devarg} ${memmaparg}" + args="${devarg} ${memmaparg} --mode=io" tags="${padtag}${memmaptag}" fi