From b7a15e99281df96f745c07bb805470a68a7b3310 Mon Sep 17 00:00:00 2001 From: Xuan Gu <xuan.gu@liu.se> Date: Tue, 30 May 2023 13:09:33 +0000 Subject: [PATCH] Update file run_benchmark.sh --- scripts/run_benchmark.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/run_benchmark.sh b/scripts/run_benchmark.sh index dc88636..d1ca648 100644 --- a/scripts/run_benchmark.sh +++ b/scripts/run_benchmark.sh @@ -11,14 +11,14 @@ for nodes in {1..1}; do # For single node if [ $nodes -eq 1 ]; then - bash scripts/benchmark_single_node.bash ${dim} ${nodes} ${gpus} ${batch_size} ${iteration} + bash scripts/benchmark_single_node.sh ${dim} ${nodes} ${gpus} ${batch_size} ${iteration} sleep 1 # pause to be kind to the scheduler else # For multi node gpus=8 - bash scripts/benchmark_multi_node.bash ${dim} ${nodes} ${gpus} ${batch_size} ${iteration} + bash scripts/benchmark_multi_node.sh ${dim} ${nodes} ${gpus} ${batch_size} ${iteration} sleep 1 # pause to be kind to the scheduler fi @@ -37,14 +37,14 @@ for nodes in {1..1}; do # For single node if [ $nodes -eq 1 ]; then - bash scripts/benchmark_single_node.bash ${dim} ${nodes} ${gpus} ${batch_size} ${iteration} + bash scripts/benchmark_single_node.sh ${dim} ${nodes} ${gpus} ${batch_size} ${iteration} sleep 1 # pause to be kind to the scheduler else # For multi node gpus=8 - bash scripts/benchmark_multi_node.bash ${dim} ${nodes} ${gpus} ${batch_size} ${iteration} + bash scripts/benchmark_multi_node.sh ${dim} ${nodes} ${gpus} ${batch_size} ${iteration} sleep 1 # pause to be kind to the scheduler fi -- GitLab