-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Features -------- - Add GPUs to cobra template. (#142) - Lower startup time of the CLI. (#153) Bugfixes -------- - Already submitted benchmarks are now hidden in the summary of ``mdbenchmark submit``. (#139) - Plotting will now work, even when some benchmarks are unfinished. (#140) - Restarting benchmarks with ``mdbenchmark submit --force`` works again. (#141) Misc ---- - Use ``poetry`` to manage Python dependencies and the project in general. (#155)
- Loading branch information
Showing
60 changed files
with
3,774 additions
and
1,043 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: 2 | ||
|
||
python: | ||
install: | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- docs | ||
|
||
sphinx: | ||
configuration: docs/conf.py |
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,5 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
mkdir -p $HOME/.matplotlib | ||
echo "backend: TkAgg" > $HOME/.matplotlib/matplotlibrc |
Oops, something went wrong.