-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor scalability benchmark (#200)
- Loading branch information
Showing
7 changed files
with
173 additions
and
126 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 was deleted.
Oops, something went wrong.
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,18 @@ | ||
#!/bin/bash | ||
./build/FlywheelScalabilityBenchmark --sleipnir | ||
./tools/plot_scalability_results.py \ | ||
--filenames \ | ||
flywheel-scalability-results-sleipnir.csv \ | ||
--labels \ | ||
"Sleipnir" \ | ||
--title Flywheel \ | ||
--noninteractive | ||
|
||
./build/CartPoleScalabilityBenchmark --sleipnir | ||
./tools/plot_scalability_results.py \ | ||
--filenames \ | ||
cart-pole-scalability-results-sleipnir.csv \ | ||
--labels \ | ||
"Sleipnir" \ | ||
--title Cart-pole \ | ||
--noninteractive |
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,6 +1,24 @@ | ||
#!/bin/bash | ||
./build/FlywheelScalabilityBenchmark | ||
./tools/plot_scalability_results.py --filename flywheel-scalability-results.csv --title Flywheel --noninteractive | ||
./build/FlywheelScalabilityBenchmark --casadi | ||
./build/FlywheelScalabilityBenchmark --sleipnir | ||
./tools/plot_scalability_results.py \ | ||
--filenames \ | ||
flywheel-scalability-results-casadi.csv \ | ||
flywheel-scalability-results-sleipnir.csv \ | ||
--labels \ | ||
"CasADi + ipopt" \ | ||
"Sleipnir" \ | ||
--title Flywheel \ | ||
--noninteractive | ||
|
||
./build/CartPoleScalabilityBenchmark | ||
./tools/plot_scalability_results.py --filename cart-pole-scalability-results.csv --title Cart-pole --noninteractive | ||
./build/CartPoleScalabilityBenchmark --casadi | ||
./build/CartPoleScalabilityBenchmark --sleipnir | ||
./tools/plot_scalability_results.py \ | ||
--filenames \ | ||
cart-pole-scalability-results-casadi.csv \ | ||
cart-pole-scalability-results-sleipnir.csv \ | ||
--labels \ | ||
"CasADi + ipopt" \ | ||
"Sleipnir" \ | ||
--title Cart-pole \ | ||
--noninteractive |
Oops, something went wrong.