Skip to content

Commit 176d217

Browse files
authored
Merge branch 'main' into halvor
2 parents 50f03d3 + 247f5d0 commit 176d217

File tree

4 files changed

+61
-4
lines changed

4 files changed

+61
-4
lines changed

.github/actions/install-dependencies/action.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ runs:
2222
use-mamba: true
2323
# uncomment to install env in one go (without caching)
2424
# environment-file: environment.yml
25-
# needed for caching
26-
use-only-tar-bz2: true
2725

2826
- name: Get Date
2927
id: get-date
@@ -36,10 +34,21 @@ runs:
3634
with:
3735
path: ${{ env.CONDA }}/envs/mpi-tutorial
3836
key:
39-
conda-env-${{ steps.get-date.outputs.today }}-${{ inputs.python-version }}-${{ hashFiles('environment.yml') }}
37+
conda-env-${{ steps.get-date.outputs.today }}-${{ inputs.python-version }}-${{ hashFiles('environment.yml') }}-${{ hashFiles('.github/actions/install-dependencies/**') }}
4038

39+
- name: Clear package cache
40+
# package cache seems to be stale
41+
run:
42+
mamba clean -y --index-cache
43+
44+
shell: bash -el {0}
4145
- name: Update environment
4246
if: steps.cache-env.outputs.cache-hit != 'true'
4347
run:
4448
mamba env update -n mpi-tutorial -f environment.yml
4549
shell: bash -el {0}
50+
51+
- name: List environment
52+
run:
53+
mamba list -n mpi-tutorial
54+
shell: bash -el {0}

CITATION.cff

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This CITATION.cff file was generated with cffinit.
2+
# Visit https://bit.ly/cffinit to generate yours today!
3+
4+
cff-version: 1.2.0
5+
title: MPI tutorial
6+
message: >-
7+
If you use this software, please cite it using the
8+
metadata from this file.
9+
type: software
10+
authors:
11+
- given-names: Ana
12+
family-names: Budisa
13+
affiliation: Simula Research Laboratory
14+
- given-names: Jørgen Schartum
15+
family-names: Dokken
16+
affiliation: Simula Research Laboratory
17+
- given-names: Halvor
18+
family-names: Herlyng
19+
affiliation: Simula Research Laboratory
20+
- given-names: Sidney
21+
family-names: Pontes-Filho
22+
affiliation: Simula Research Laboratory
23+
- given-names: Benjamin
24+
family-names: Ragan-Kelley
25+
affiliation: Simula Research Laboratory
26+
identifiers:
27+
- type: url
28+
value: 'https://scientificcomputing.github.io/mpi-tutorial/'
29+
repository-code: 'https://github.com/scientificcomputing/mpi-tutorial'
30+
url: 'https://scientificcomputing.github.io/mpi-tutorial/'
31+
license: MIT

environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ dependencies:
1111
- numpy
1212
- pandas
1313
- autopep8
14+
- fenics-dolfinx

index.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# MPI-tutorial
22

3-
Welcome to this MPI tutorial.
3+
This MPI tutorial is interactive, which means that all the code presented in can be opened in Binder by pressing the "rocket"-symbol in the upper left tool-bar, and then pressing "Binder". This is only available on pages with code in them.
4+
5+
## About the authors
6+
- [Ana Budisa](https://www.simula.no/people/ana) (https://github.com/anabudisa) is a Post-Doctoral fellow at the Department of Numerical Analysis and Scientific Computing at Simula Research Laboratory.
7+
- [Jørgen S. Dokken](https://www.simula.no/people/dokken) (https://github.com/jorgensd) is a Research Engineer at Simula Research Laboratory
8+
- [Halvor Herlyng](https://www.simula.no/people/hherlyng) (https://github.com/hherlyng) is a PhD-candidate at the Department of Numerical Analysis and Scientific Computing at Simula Research Laboratory
9+
- [Sidney Pontes-Filho](https://www.simula.no/people/sidney) (https://github.com/sidneyp) is a Post-Doctoral fellow at the Department of Numerical Analysis and Scientific Computing at Simula Research Laboratory.
10+
- [Benjamin Ragan-Kelley](https://www.simula.no/people/benjaminrk) (https://github.com/minrk) is a Senior Research Scientist at Simula Research Laboratory. He is the main developer of [IPythonParallel](https://ipyparallel.readthedocs.io/).
11+
12+
## About the content
13+
14+
The content here is based on a large variety of sources, referenced in each indvidual page.
15+
The authors are greatful for the authors of all the resources.
16+
17+
## Citing
18+
Please cite this repo as
19+
*Budisa, A., Dokken, J. S., Herlyng, H., Pontes-Filho, S., & Ragan-Kelley, B. MPI tutorial. https://github.com/scientificcomputing/mpi-tutorial*
420

521
## Contents
622
```{tableofcontents}

0 commit comments

Comments
 (0)