-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New examples for the updated documentation (#495)
* new examples * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Build notebooks as tests * add executor bit * extend notebook environment * Update 3-hpc-allocation.ipynb * Add key features * update key arguments * Work in progress for the readme * Update readme * add new lines * Change Backend Names * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update __init__.py * update readme * Update installation * Fix init * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * update local notebook * update local example notebook * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Explain jupyter kernel installation * copy existing kernel * Add HPC submission * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * execute HPC notebook once * hpc allocation * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update documentation * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * replace HPC submission notebook --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
d11a2d3
commit 6adbf5f
Showing
14 changed files
with
2,262 additions
and
996 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
# execute notebooks | ||
i=0; | ||
for notebook in $(ls notebooks/*.ipynb); do | ||
papermill ${notebook} ${notebook%.*}-out.${notebook##*.} -k python3 || i=$((i+1)); | ||
done; | ||
|
||
# push error to next level | ||
if [ $i -gt 0 ]; then | ||
exit 1; | ||
fi; |
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.