-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding basic profiling tests * Fixing gmon path * Adding pandas to profiling tests * Sorting function names in profiling tests * Adding averaging in profiling tests * Updating timing tests to be a percentage of runtime
- Loading branch information
Michael Wathen
authored
Oct 25, 2021
1 parent
5099a3d
commit b7ac9e6
Showing
6 changed files
with
935 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
echo "Cloning config repo" | ||
git clone https://github.com/pmlmodelling/ersem-setups.git | ||
|
||
cd ersem-setups/L4 | ||
|
||
echo "Running GOTM with repo configuration" | ||
for i in {1..5} | ||
do | ||
~/local/gotm/bin/gotm | ||
gprof -b -Q ~/local/gotm/bin/gotm gmon.out | awk -v OFS=',' '{print $1,$2,$3,$4,$5,$6,$7}' | sed -e '1,3d' > gprof_$i.csv | ||
done |
Oops, something went wrong.