-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (squashing to simplify rebase) rebased on dev reorganized files fix gh workflow * modify workflow * update dockerfile Co-authored-by: valo <[email protected]>
- Loading branch information
1 parent
c6dc262
commit e6bc93c
Showing
17 changed files
with
582 additions
and
256 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
#! /bin/bash | ||
|
||
# Check if we are running as root | ||
# Check if we are running as root. | ||
if [ "$EUID" -ne 0 ]; then | ||
echo "This script must be run as root" | ||
exit | ||
fi | ||
|
||
# Run the benchmark binary | ||
# Run the benchmark binary. | ||
../../../target/release/bench | ||
|
||
# Plot the results | ||
# Run the benchmark binary in memory profiling mode. | ||
../../../target/release/bench --memory-profiling | ||
|
||
# Plot the results. | ||
../../../target/release/plot metrics.csv |
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
Oops, something went wrong.