Skip to content

Instantly share code, notes, and snippets.

@shigh
shigh / Makefile
Last active March 31, 2022 15:30
Using MPI with Cython and C++. Specifically, using Cython to make Python wrappers for C++ code that uses MPI.
all:
python setup.py build_ext --inplace
clean:
rm -f pympi.cpp
rm -f pympi.so
rm -rf build