You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
705 B
Bash
36 lines
705 B
Bash
#!/bin/bash
|
|
|
|
declare -a matrices=(
|
|
"cz148"
|
|
"cz308"
|
|
"cz628"
|
|
"cz1268"
|
|
"cz2548"
|
|
"cz5108"
|
|
"cz10228"
|
|
"cz20468"
|
|
"cz40948"
|
|
)
|
|
|
|
|
|
declare -a iterations=(
|
|
"10" "300" "600" "900" "1200" "1500" "1800" "2100" "2400" "2700" "3000"
|
|
)
|
|
|
|
# matrix=cz148
|
|
# iter=300
|
|
# cmd="grep -e MPI ${matrix}_matrix/${iter}_iter_${matrix}_matrix/halo_persistant_output.txt"
|
|
# eval $cmd
|
|
|
|
|
|
for matrix in "${matrices[@]}"; do
|
|
echo "${matrix}"
|
|
eval "scorep-score -r cz628_matrix/10_iter_cz628_matrix/profile.cubex | grep -e max_buf"
|
|
|
|
for iter in "${iterations[@]}"; do
|
|
cmd="grep -e MPI ${matrix}_matrix/${iter}_iter_${matrix}_matrix/halo_persistant_output.txt"
|
|
eval $cmd
|
|
done
|
|
|
|
done
|