forked from csc-training/hpc-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request csc-training#2 from ashwinvis/book
Jupyter book configuration
- Loading branch information
Showing
4 changed files
with
79 additions
and
0 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,13 @@ | ||
# Book settings | ||
title: Python in HPC | ||
author: Enkovaara, Louhivuori et al. | ||
logo: img/fractal.svg | ||
repository: | ||
url: https://github.com/csc-training/hpc-python | ||
html: | ||
use_repository_button: true | ||
copyright: "2020, CC-BY-NC-SA 4.0" # Copyright year to be placed in the footer | ||
|
||
latex: | ||
latex_documents: | ||
targetname: book.tex |
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,57 @@ | ||
- file: mooc/index | ||
|
||
- part: Welcome | ||
chapters: | ||
- file: mooc/python-and-performance/prerequisities.md | ||
- file: mooc/python-and-performance/setting-environment.md | ||
|
||
- part: Python and Performance | ||
chapters: | ||
- file: mooc/python-and-performance/performance-bottlenecks.md | ||
- file: mooc/python-and-performance/performance-analysis.md | ||
- file: mooc/python-and-performance/using-own-timers.md | ||
- file: mooc/python-and-performance/using-timeit.md | ||
- file: mooc/python-and-performance/heat-equation.md | ||
- file: mooc/python-and-performance/summary.md | ||
|
||
- part: Numerical computing | ||
chapters: | ||
- file: mooc/numerical-computing/creating-and-accessing.md | ||
- file: mooc/numerical-computing/simple-operations.md | ||
- file: mooc/numerical-computing/vectorised-operations.md | ||
- file: mooc/numerical-computing/broadcasting.md | ||
- file: mooc/numerical-computing/file-io.md | ||
- file: mooc/numerical-computing/random-numbers.md | ||
- file: mooc/numerical-computing/linear-algebra.md | ||
- file: mooc/numerical-computing/anatomy-of-ndarray.md | ||
- file: mooc/numerical-computing/temporary-arrays.md | ||
- file: mooc/numerical-computing/numexpr.md | ||
- file: mooc/numerical-computing/summary.md | ||
|
||
- part: Using compiled code and libraries | ||
chapters: | ||
- file: mooc/using-compiled-code/what-is-cython.md | ||
- file: mooc/using-compiled-code/creating-cython-modules.md | ||
- file: mooc/using-compiled-code/using-static-typing.md | ||
- file: mooc/using-compiled-code/avoiding-function-call-overheads.md | ||
- file: mooc/using-compiled-code/numpy-and-cython.md | ||
- file: mooc/using-compiled-code/profiling-cython.md | ||
- file: mooc/using-compiled-code/interfacing-c-with-cffi.md | ||
- file: mooc/using-compiled-code/interfacing-c-with-cython.md | ||
- file: mooc/using-compiled-code/interfacing-fortran.md | ||
- file: mooc/using-compiled-code/summary.md | ||
|
||
- part: Parallel Computing | ||
chapters: | ||
- file: mooc/parallel-programming/concepts.md | ||
- file: mooc/parallel-programming/intro-to-mpi.md | ||
- file: mooc/parallel-programming/parallel-sum.md | ||
- file: mooc/parallel-programming/send-receive.md | ||
- file: mooc/parallel-programming/send-receive-array.md | ||
- file: mooc/parallel-programming/non-blocking.md | ||
- file: mooc/parallel-programming/communicators.md | ||
- file: mooc/parallel-programming/collectives-1-to-n.md | ||
- file: mooc/parallel-programming/collectives-n-to-1.md | ||
- file: mooc/parallel-programming/collectives-n-to-n.md | ||
- file: mooc/parallel-programming/python-in-parallel.md | ||
- file: mooc/parallel-programming/summary.md |
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,3 @@ | ||
jupyter-book | ||
matplotlib | ||
numpy |