diff --git a/test/halo/results/halo-persistant/examine.sh b/test/halo/results/halo-persistant/examine.sh new file mode 100755 index 00000000..2327fe10 --- /dev/null +++ b/test/halo/results/halo-persistant/examine.sh @@ -0,0 +1,50 @@ +#!/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" +) + + + +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="scorep-score -r ${matrix}_matrix/${iter}_iter_${matrix}_matrix/profile.cubex | grep -e MPI_Wait" + # eval $cmd + # done + + # for iter in "${iterations[@]}"; do + # cmd="scorep-score -r ${matrix}_matrix/${iter}_iter_${matrix}_matrix/profile.cubex | grep -e MPI_Start" + # eval $cmd + # done + + # for iter in "${iterations[@]}"; do + # cmd="scorep-score -r ${matrix}_matrix/${iter}_iter_${matrix}_matrix/profile.cubex | grep -e MPI_Dist_graph_create_adjacent" + # eval $cmd + # done + + for iter in "${iterations[@]}"; do + cmd="scorep-score -r ${matrix}_matrix/${iter}_iter_${matrix}_matrix/profile.cubex | grep -e MPI_Dist_graph_neighbors" + eval $cmd + done + + # for iter in "${iterations[@]}"; do + # cmd="scorep-score -r ${matrix}_matrix/${iter}_iter_${matrix}_matrix/profile.cubex | grep -e MPI_Dist_graph_neighbors_count" + # eval $cmd + # done +done diff --git a/test/halo/results/halo-persistant/mpix_examine.sh b/test/halo/results/halo-persistant/mpix_examine.sh new file mode 100755 index 00000000..99463f1f --- /dev/null +++ b/test/halo/results/halo-persistant/mpix_examine.sh @@ -0,0 +1,35 @@ +#!/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