Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Move Cython sources #492

Merged
merged 2 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ file(
GLOB_RECURSE MPI.deps
${SRCDIR}/mpi4py/*.pyx
${SRCDIR}/mpi4py/*.pxd
${SRCDIR}/mpi4py/MPI/*.pyx
${SRCDIR}/mpi4py/MPI/*.pxi
${SRCDIR}/mpi4py/MPI.src/*.pyx
${SRCDIR}/mpi4py/MPI.src/*.pxi
)
set(MPI.c ${BINDIR}/MPI.c)
set(MPI.h ${BINDIR}/MPI.h ${BINDIR}/MPI_api.h)
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ available once the ``ucx`` package is installed.
`using external MPI libraries <cf-mpi-docs_>`_ .

.. _conda-forge: https://conda-forge.org/
.. _cf-mpi-docs: https://conda-forge.org/docs/user/tipsandtricks.html#using-external-message-passing-interface-mpi-libraries
.. _cf-mpi-docs: https://conda-forge.org/docs/user/tipsandtricks/#using-external-message-passing-interface-mpi-libraries


Linux
Expand Down
4 changes: 2 additions & 2 deletions docs/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Tutorial
book covers parallel programming with MPI and OpenMP in C/C++ and
Fortran, and MPI in Python using mpi4py.

.. _Victor Eijkhout: https://www.tacc.utexas.edu/about/directory/victor-eijkhout
.. _TACC: https://www.tacc.utexas.edu/
.. _Victor Eijkhout: https://tacc.utexas.edu/about/directory/victor-eijkhout
.. _TACC: https://tacc.utexas.edu/
.. _ppse-pdf: https://tinyurl.com/vle335course
.. _ppse-html: https://theartofhpc.com/pcse/index.html

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,8 @@ def sources():
depends=[
'src/mpi4py/*.pyx',
'src/mpi4py/*.pxd',
'src/mpi4py/MPI/*.pyx',
'src/mpi4py/MPI/*.pxd',
'src/mpi4py/MPI/*.pxi',
'src/mpi4py/MPI.src/*.pyx',
'src/mpi4py/MPI.src/*.pxi',
],
)
#
Expand Down
2 changes: 1 addition & 1 deletion src/mpi4py/MPI.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
from __future__ import annotations
cimport cython # no-cython-lint

include "MPI/MPI.pyx"
include "MPI.src/MPI.pyx"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading