LOAD=-100
# time limit for the simulation
-DEADLINE=800
+DEADLINE=600 #800
# optional: additional arguments for loba (default: empty)
MORE_ARGS=( -c1e8,0 -C1e5,0 -M10)
--- /dev/null
+### PARAMETER FILE FOR RC'S EXPERIMENTATIONS
+
+# define the topologies
+TOPOLOGIES=(
+ hcube
+)
+
+# define the algorithms
+ALGORITHMS=(
+ simple
+ makhoul
+ besteffort
+ 2besteffort
+
+)
+
+# the different platform files
+PLATFORMS=(
+ cluster64.xml
+)
+
+# number of hosts
+NHOSTS=0
+
+# total load
+LOAD=-100
+
+# time limit for the simulation
+DEADLINE=1000
+
+# optional: additional arguments for loba (default: empty)
+MORE_ARGS=( -c1e8,0 -C1e5,0 -M10)
+
+# optional: path to binary (default: ./loba)
+LOBA=../loba
+
+# optional: path to results (default: ./results)
+RESULTS=./results_hcube1
--- /dev/null
+### PARAMETER FILE FOR RC'S EXPERIMENTATIONS
+
+# define the topologies
+TOPOLOGIES=(
+ hcube
+)
+
+# define the algorithms
+ALGORITHMS=(
+ simple
+ makhoul
+ besteffort
+ 2besteffort
+
+)
+
+# the different platform files
+PLATFORMS=(
+ cluster64.xml
+)
+
+# number of hosts
+NHOSTS=0
+
+# total load
+LOAD=-100
+
+# time limit for the simulation
+DEADLINE=600 #800
+
+# optional: additional arguments for loba (default: empty)
+MORE_ARGS=( -R -r42 -c1e8,0 -C1e5,0 -M10)
+
+# optional: path to binary (default: ./loba)
+LOBA=../loba
+
+# optional: path to results (default: ./results)
+RESULTS=./results_hcubeN
--- /dev/null
+### PARAMETER FILE FOR RC'S EXPERIMENTATIONS
+
+# define the topologies
+TOPOLOGIES=(
+ line
+)
+
+# define the algorithms
+ALGORITHMS=(
+ simple
+ makhoul
+ besteffort
+ 2besteffort
+
+)
+
+# the different platform files
+PLATFORMS=(
+ cluster64.xml
+)
+
+# number of hosts
+NHOSTS=0
+
+# total load
+LOAD=-100
+
+# time limit for the simulation
+DEADLINE=6000
+
+# optional: additional arguments for loba (default: empty)
+MORE_ARGS=( -c1e8,0 -C1e5,0 -M10)
+
+# optional: path to binary (default: ./loba)
+LOBA=../loba
+
+# optional: path to results (default: ./results)
+RESULTS=./results_line1
--- /dev/null
+### PARAMETER FILE FOR RC'S EXPERIMENTATIONS
+
+# define the topologies
+TOPOLOGIES=(
+ line
+)
+
+# define the algorithms
+ALGORITHMS=(
+ simple
+ makhoul
+ besteffort
+ 2besteffort
+
+)
+
+# the different platform files
+PLATFORMS=(
+ cluster64.xml
+)
+
+# number of hosts
+NHOSTS=0
+
+# total load
+LOAD=-100
+
+# time limit for the simulation
+DEADLINE=6000
+
+# optional: additional arguments for loba (default: empty)
+MORE_ARGS=( -R -r42 -c1e8,0 -C1e5,0 -M10)
+
+# optional: path to binary (default: ./loba)
+LOBA=../loba
+
+# optional: path to results (default: ./results)
+RESULTS=./results_lineN
for topo in "${TOPOLOGIES[@]}"; do
topo_output="$plat_output/topo_$topo"
[ $debug = 0 ] && mkdir -p "$topo_output"
- for lr in "1" "N"; do
- case "$lr" in
- "1") loadinit=( ) ;;
- "N") loadinit=( "-R" "-r42" ) ;;
- *) die "internal error (lr = \"$lr\")" ;;
- esac
+ # for lr in "1" "N"; do
+ # case "$lr" in
+ # "1") loadinit=( ) ;;
+ # "N") loadinit=( "-R" "-r42" ) ;;
+ # *) die "internal error (lr = \"$lr\")" ;;
+ # esac
for mode in "R" "Z"; do
case "$mode" in
"R") computemode=( );;
-N"$NHOSTS"
-L"$LOAD"
-t"$DEADLINE"
- "${loadinit[@]}"
+# "${loadinit[@]}"
"${computemode[@]}"
"$plat"
)
"bookkeeping") cmd+=( "-b" ) ;;
*) die "internal error (bk = \"$bk\")" ;;
esac
- out="${algo_output}_${bk}_${lr}${mode}.out"
+ out="${algo_output}_${bk}_${mode}.out"
outf="$out$outsuffix"
cmd+=( "${args[@]}" )
log "Run: ${cmd[@]}"$'\n'"... &> $outf"
gzip --best "$out"
fi
done
- done
+# done
done
done
done