From b82483b28cf1bcf0c383f718427f7d05258010b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <post@soeren-henning.de> Date: Fri, 24 Apr 2020 23:29:07 +0200 Subject: [PATCH] Add execution script --- execution/execution.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 execution/execution.sh diff --git a/execution/execution.sh b/execution/execution.sh new file mode 100755 index 000000000..c16855de1 --- /dev/null +++ b/execution/execution.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +./run_loop.sh 1 "25000 50000 75000 100000 125000 150000" "1 2 3 4 5" 40 #6*5=3Std +sleep 5m +./run_loop.sh 2 "6 7 8 9" "1 2 3 4 6 8 10 12 14 16 18 20" 40 #4*12=5Std +sleep 5m +./run_loop.sh 3 "25000 50000 75000 100000 125000 150000" "1 2 3 4 5 6" 40 #6*6=3.5Std +sleep 5m +./run_loop.sh 4 "25000 50000 75000 100000 125000 150000" "1 2 4 6 8 10 12 14 16 18 20 30 40 50 60 70 80 90" 40 #6*18=11Std +sleep 5m + +./run_loop.sh 1 "25000 50000 75000 100000 125000 150000" "1 2 3 4 5" 400 #6*5=3Std +sleep 5m +./run_loop.sh 2 "6 7 8 9" "1 2 3 4 6 8 10 12 14 16 18 20" 400 #4*12=5Std +sleep 5m +./run_loop.sh 3 "25000 50000 75000 100000 125000 150000" "1 2 3 4 5 6" 400 #6*6=3.5Std +sleep 5m +./run_loop.sh 4 "25000 50000 75000 100000 125000 150000" "1 2 4 6 8 10 12 14 16 18 20 30 40 50 60 70 80 90" 400 #6*18=11Std +sleep 5m -- GitLab