Skip to content

Commit

Permalink
Scripts were extracting GFLop/s, not GPts/s.
Browse files Browse the repository at this point in the history
  • Loading branch information
PapyChacal committed Oct 24, 2023
1 parent f49d8a7 commit 3f85cd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fast/gpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export DEVITO_LOGGING=BENCH
# That is, we exclude the data copying to and from the device.
get_throughput() {
#echo $($@)
$@ |& grep section0 | head -n 1 | cut -d ' ' -f10
$@ |& grep section0 | head -n 1 | cut -d ' ' -f12
}

# Iterate over benchmarks and cases, print simple CSV data to stdout
Expand Down
2 changes: 1 addition & 1 deletion fast/slurm-jobs/gpu.slurm
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export DEVITO_LOGGING=BENCH
# That is, we exclude the data copying to and from the device.
get_throughput() {
#echo $($@)
$@ |& grep section0 | head -n 1 | cut -d ' ' -f10
$@ |& grep section0 | head -n 1 | cut -d ' ' -f12
}

# Iterate over benchmarks and cases, print simple CSV data to stdout
Expand Down

0 comments on commit 3f85cd2

Please sign in to comment.