-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse_results.sh
19 lines (16 loc) · 1.04 KB
/
parse_results.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env sh
# Parse results in summary files
mkdir -p results/summaries
python parse_results.py results/results-rmasanitizer-mpirma/results.csv --verbose > results/summaries/rmasanitizer_mpirma.summary
python parse_results.py results/results-rmasanitizer-shmem/results.csv --verbose >> results/summaries/rmasanitizer_shmem.summary
python parse_results.py results/results-rmasanitizer-gaspi/results.csv --verbose >> results/summaries/rmasanitizer_gaspi.summary
python parse_results.py results/results-other-tools/results.csv --verbose > results/summaries/othertools_mpirma.summary
# Get table with total results
echo "MPI RMA - Other tools"
python parse_results.py results/results-other-tools/results.csv --total-only
echo "RMASanitizer - MPI RMA"
python parse_results.py results/results-rmasanitizer-mpirma/results.csv --total-only
echo "RMASanitizer - SHMEM"
python parse_results.py results/results-rmasanitizer-shmem/results.csv --total-only
echo "RMASanitizer - GASPI"
python parse_results.py results/results-rmasanitizer-gaspi/results.csv --total-only