├── .gitignore ├── LICENSE ├── README.md ├── parallel_code_examples ├── mandelbrot_mpi.py ├── mandelbrot_mpi.sh ├── p2p.py └── p2p.sh └── profiling_and_optimizing ├── mandel08.f90 ├── mandel09.py └── profile_and_optimize_mandelbrot.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.pyc 3 | .ipynb_checkpoints 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/README.md -------------------------------------------------------------------------------- /parallel_code_examples/mandelbrot_mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/parallel_code_examples/mandelbrot_mpi.py -------------------------------------------------------------------------------- /parallel_code_examples/mandelbrot_mpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/parallel_code_examples/mandelbrot_mpi.sh -------------------------------------------------------------------------------- /parallel_code_examples/p2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/parallel_code_examples/p2p.py -------------------------------------------------------------------------------- /parallel_code_examples/p2p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/parallel_code_examples/p2p.sh -------------------------------------------------------------------------------- /profiling_and_optimizing/mandel08.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/profiling_and_optimizing/mandel08.f90 -------------------------------------------------------------------------------- /profiling_and_optimizing/mandel09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/profiling_and_optimizing/mandel09.py -------------------------------------------------------------------------------- /profiling_and_optimizing/profile_and_optimize_mandelbrot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NIH-HPC/python-in-hpc/HEAD/profiling_and_optimizing/profile_and_optimize_mandelbrot.ipynb --------------------------------------------------------------------------------