├── README.md ├── code ├── C-MPI │ ├── Makefile │ ├── archer2.job │ ├── traffic.c │ ├── traffic.h │ ├── trafficlib.c │ ├── uni.c │ └── uni.h ├── C-OMP │ ├── Makefile │ ├── archer2.job │ ├── traffic.c │ ├── traffic.h │ ├── trafficlib.c │ ├── uni.c │ └── uni.h ├── C-SER │ ├── Makefile │ ├── traffic.c │ ├── traffic.h │ ├── trafficlib.c │ ├── uni.c │ └── uni.h ├── F-MPI │ ├── Makefile │ ├── archer2.job │ ├── traffic.f90 │ ├── trafficlib.f90 │ └── unirand.f90 ├── F-OMP │ ├── Makefile │ ├── archer2.job │ ├── traffic.f90 │ ├── trafficlib.f90 │ └── unirand.f90 ├── F-SER │ ├── Makefile │ ├── traffic.f90 │ ├── trafficlib.f90 │ └── unirand.f90 ├── P-MPI │ ├── archer2.job │ ├── traffic.py │ └── trafficlib.py ├── P-SER-NP │ ├── archer2.job │ ├── traffic.py │ └── trafficlib.py └── P-SER │ ├── archer2.job │ ├── traffic.py │ └── trafficlib.py ├── images ├── .gitkeep ├── Archer2_logo.png ├── epcc_logo.jpg └── euro-cc.jpg ├── notebooks ├── images │ ├── archer2_logo.png │ ├── epcc_logo.png │ ├── hpe_logo.png │ ├── logos │ │ ├── bullet_black.eps │ │ ├── bullet_black.pdf │ │ ├── bullet_red.eps │ │ ├── bullet_red.pdf │ │ ├── crest_bw.eps │ │ ├── crest_bw.pdf │ │ ├── crest_col.eps │ │ ├── crest_col.pdf │ │ ├── crest_rb.eps │ │ ├── crest_rb.pdf │ │ ├── epccvert.eps │ │ ├── epccvert.pdf │ │ ├── eucrest.pdf │ │ ├── eucrest.ps │ │ ├── logo_black.eps │ │ ├── logo_black.pdf │ │ ├── logo_colour.eps │ │ ├── logo_colour.pdf │ │ ├── logo_white.eps │ │ ├── logo_white.pdf │ │ ├── nucrest.eps │ │ └── nucrest.pdf │ ├── reusematerial.png │ └── ukri_logo.png ├── mpi4py │ ├── .gitignore │ ├── example1.py │ ├── example2.py │ ├── example3.py │ ├── example4.py │ ├── example5.py │ ├── example5a.py │ ├── example6.py │ └── mpi4py.ipynb ├── numpy │ ├── darts.png │ ├── darts.py │ ├── example.py │ └── numpy.ipynb ├── traffic │ ├── traffic.ipynb │ ├── traffic.py │ └── trafficlib.py ├── trafficmpi │ ├── traffic.py │ ├── trafficlib.py │ └── trafficmpi.ipynb └── trafficnumpy │ ├── traffic.py │ ├── trafficlib.py │ └── trafficnumpy.ipynb └── pdf ├── ARCHER2-overview.pdf ├── E01-traffic-MSc.pdf ├── Intro.pdf ├── L01-mpconcepts.pdf └── L01-traffic.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/README.md -------------------------------------------------------------------------------- /code/C-MPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-MPI/Makefile -------------------------------------------------------------------------------- /code/C-MPI/archer2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-MPI/archer2.job -------------------------------------------------------------------------------- /code/C-MPI/traffic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-MPI/traffic.c -------------------------------------------------------------------------------- /code/C-MPI/traffic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-MPI/traffic.h -------------------------------------------------------------------------------- /code/C-MPI/trafficlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-MPI/trafficlib.c -------------------------------------------------------------------------------- /code/C-MPI/uni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-MPI/uni.c -------------------------------------------------------------------------------- /code/C-MPI/uni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-MPI/uni.h -------------------------------------------------------------------------------- /code/C-OMP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-OMP/Makefile -------------------------------------------------------------------------------- /code/C-OMP/archer2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-OMP/archer2.job -------------------------------------------------------------------------------- /code/C-OMP/traffic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-OMP/traffic.c -------------------------------------------------------------------------------- /code/C-OMP/traffic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-OMP/traffic.h -------------------------------------------------------------------------------- /code/C-OMP/trafficlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-OMP/trafficlib.c -------------------------------------------------------------------------------- /code/C-OMP/uni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-OMP/uni.c -------------------------------------------------------------------------------- /code/C-OMP/uni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-OMP/uni.h -------------------------------------------------------------------------------- /code/C-SER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-SER/Makefile -------------------------------------------------------------------------------- /code/C-SER/traffic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-SER/traffic.c -------------------------------------------------------------------------------- /code/C-SER/traffic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-SER/traffic.h -------------------------------------------------------------------------------- /code/C-SER/trafficlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-SER/trafficlib.c -------------------------------------------------------------------------------- /code/C-SER/uni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-SER/uni.c -------------------------------------------------------------------------------- /code/C-SER/uni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/C-SER/uni.h -------------------------------------------------------------------------------- /code/F-MPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-MPI/Makefile -------------------------------------------------------------------------------- /code/F-MPI/archer2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-MPI/archer2.job -------------------------------------------------------------------------------- /code/F-MPI/traffic.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-MPI/traffic.f90 -------------------------------------------------------------------------------- /code/F-MPI/trafficlib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-MPI/trafficlib.f90 -------------------------------------------------------------------------------- /code/F-MPI/unirand.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-MPI/unirand.f90 -------------------------------------------------------------------------------- /code/F-OMP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-OMP/Makefile -------------------------------------------------------------------------------- /code/F-OMP/archer2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-OMP/archer2.job -------------------------------------------------------------------------------- /code/F-OMP/traffic.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-OMP/traffic.f90 -------------------------------------------------------------------------------- /code/F-OMP/trafficlib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-OMP/trafficlib.f90 -------------------------------------------------------------------------------- /code/F-OMP/unirand.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-OMP/unirand.f90 -------------------------------------------------------------------------------- /code/F-SER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-SER/Makefile -------------------------------------------------------------------------------- /code/F-SER/traffic.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-SER/traffic.f90 -------------------------------------------------------------------------------- /code/F-SER/trafficlib.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-SER/trafficlib.f90 -------------------------------------------------------------------------------- /code/F-SER/unirand.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/F-SER/unirand.f90 -------------------------------------------------------------------------------- /code/P-MPI/archer2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-MPI/archer2.job -------------------------------------------------------------------------------- /code/P-MPI/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-MPI/traffic.py -------------------------------------------------------------------------------- /code/P-MPI/trafficlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-MPI/trafficlib.py -------------------------------------------------------------------------------- /code/P-SER-NP/archer2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-SER-NP/archer2.job -------------------------------------------------------------------------------- /code/P-SER-NP/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-SER-NP/traffic.py -------------------------------------------------------------------------------- /code/P-SER-NP/trafficlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-SER-NP/trafficlib.py -------------------------------------------------------------------------------- /code/P-SER/archer2.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-SER/archer2.job -------------------------------------------------------------------------------- /code/P-SER/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-SER/traffic.py -------------------------------------------------------------------------------- /code/P-SER/trafficlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/code/P-SER/trafficlib.py -------------------------------------------------------------------------------- /images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/Archer2_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/images/Archer2_logo.png -------------------------------------------------------------------------------- /images/epcc_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/images/epcc_logo.jpg -------------------------------------------------------------------------------- /images/euro-cc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/images/euro-cc.jpg -------------------------------------------------------------------------------- /notebooks/images/archer2_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/archer2_logo.png -------------------------------------------------------------------------------- /notebooks/images/epcc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/epcc_logo.png -------------------------------------------------------------------------------- /notebooks/images/hpe_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/hpe_logo.png -------------------------------------------------------------------------------- /notebooks/images/logos/bullet_black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/bullet_black.eps -------------------------------------------------------------------------------- /notebooks/images/logos/bullet_black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/bullet_black.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/bullet_red.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/bullet_red.eps -------------------------------------------------------------------------------- /notebooks/images/logos/bullet_red.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/bullet_red.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/crest_bw.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/crest_bw.eps -------------------------------------------------------------------------------- /notebooks/images/logos/crest_bw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/crest_bw.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/crest_col.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/crest_col.eps -------------------------------------------------------------------------------- /notebooks/images/logos/crest_col.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/crest_col.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/crest_rb.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/crest_rb.eps -------------------------------------------------------------------------------- /notebooks/images/logos/crest_rb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/crest_rb.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/epccvert.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/epccvert.eps -------------------------------------------------------------------------------- /notebooks/images/logos/epccvert.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/epccvert.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/eucrest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/eucrest.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/eucrest.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/eucrest.ps -------------------------------------------------------------------------------- /notebooks/images/logos/logo_black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/logo_black.eps -------------------------------------------------------------------------------- /notebooks/images/logos/logo_black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/logo_black.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/logo_colour.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/logo_colour.eps -------------------------------------------------------------------------------- /notebooks/images/logos/logo_colour.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/logo_colour.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/logo_white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/logo_white.eps -------------------------------------------------------------------------------- /notebooks/images/logos/logo_white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/logo_white.pdf -------------------------------------------------------------------------------- /notebooks/images/logos/nucrest.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/nucrest.eps -------------------------------------------------------------------------------- /notebooks/images/logos/nucrest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/logos/nucrest.pdf -------------------------------------------------------------------------------- /notebooks/images/reusematerial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/reusematerial.png -------------------------------------------------------------------------------- /notebooks/images/ukri_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/images/ukri_logo.png -------------------------------------------------------------------------------- /notebooks/mpi4py/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | -------------------------------------------------------------------------------- /notebooks/mpi4py/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/mpi4py/example1.py -------------------------------------------------------------------------------- /notebooks/mpi4py/example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/mpi4py/example2.py -------------------------------------------------------------------------------- /notebooks/mpi4py/example3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/mpi4py/example3.py -------------------------------------------------------------------------------- /notebooks/mpi4py/example4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/mpi4py/example4.py -------------------------------------------------------------------------------- /notebooks/mpi4py/example5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/mpi4py/example5.py -------------------------------------------------------------------------------- /notebooks/mpi4py/example5a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/mpi4py/example5a.py -------------------------------------------------------------------------------- /notebooks/mpi4py/example6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/mpi4py/example6.py -------------------------------------------------------------------------------- /notebooks/mpi4py/mpi4py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/mpi4py/mpi4py.ipynb -------------------------------------------------------------------------------- /notebooks/numpy/darts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/numpy/darts.png -------------------------------------------------------------------------------- /notebooks/numpy/darts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/numpy/darts.py -------------------------------------------------------------------------------- /notebooks/numpy/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/numpy/example.py -------------------------------------------------------------------------------- /notebooks/numpy/numpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/numpy/numpy.ipynb -------------------------------------------------------------------------------- /notebooks/traffic/traffic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/traffic/traffic.ipynb -------------------------------------------------------------------------------- /notebooks/traffic/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/traffic/traffic.py -------------------------------------------------------------------------------- /notebooks/traffic/trafficlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/traffic/trafficlib.py -------------------------------------------------------------------------------- /notebooks/trafficmpi/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/trafficmpi/traffic.py -------------------------------------------------------------------------------- /notebooks/trafficmpi/trafficlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/trafficmpi/trafficlib.py -------------------------------------------------------------------------------- /notebooks/trafficmpi/trafficmpi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/trafficmpi/trafficmpi.ipynb -------------------------------------------------------------------------------- /notebooks/trafficnumpy/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/trafficnumpy/traffic.py -------------------------------------------------------------------------------- /notebooks/trafficnumpy/trafficlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/trafficnumpy/trafficlib.py -------------------------------------------------------------------------------- /notebooks/trafficnumpy/trafficnumpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/notebooks/trafficnumpy/trafficnumpy.ipynb -------------------------------------------------------------------------------- /pdf/ARCHER2-overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/pdf/ARCHER2-overview.pdf -------------------------------------------------------------------------------- /pdf/E01-traffic-MSc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/pdf/E01-traffic-MSc.pdf -------------------------------------------------------------------------------- /pdf/Intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/pdf/Intro.pdf -------------------------------------------------------------------------------- /pdf/L01-mpconcepts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/pdf/L01-mpconcepts.pdf -------------------------------------------------------------------------------- /pdf/L01-traffic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EPCCed/PythonHPC/HEAD/pdf/L01-traffic.pdf --------------------------------------------------------------------------------