Skip to content

Commit

Permalink
add script to parse FOM from branson output files into a csv format
Browse files Browse the repository at this point in the history
  • Loading branch information
gshipman committed May 17, 2024
1 parent 55a0b6b commit f4c234d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions utils/branson/parse-results.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
grep FOM run.*.out | awk -F '.' '{print $2 " " $3 " " $4 " " $5 }' | awk '{printf "%d\t%d\t%d.%d \n", $1, $2, $7, $8 }' | sort -n --key=1,1 --key=2,2

0 comments on commit f4c234d

Please sign in to comment.