numba-mpi 1.1.6__py3-none-any.whl → 1.1.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- numba_mpi/api/irecv.py +1 -0
- numba_mpi/api/isend.py +1 -0
- numba_mpi/common.py +2 -1
- {numba_mpi-1.1.6.dist-info → numba_mpi-1.1.8.dist-info}/METADATA +7 -8
- {numba_mpi-1.1.6.dist-info → numba_mpi-1.1.8.dist-info}/RECORD +8 -8
- {numba_mpi-1.1.6.dist-info → numba_mpi-1.1.8.dist-info}/WHEEL +0 -0
- {numba_mpi-1.1.6.dist-info → numba_mpi-1.1.8.dist-info}/licenses/LICENSE +0 -0
- {numba_mpi-1.1.6.dist-info → numba_mpi-1.1.8.dist-info}/top_level.txt +0 -0
numba_mpi/api/irecv.py
CHANGED
numba_mpi/api/isend.py
CHANGED
numba_mpi/common.py
CHANGED
|
@@ -76,7 +76,8 @@ if LIB is None:
|
|
|
76
76
|
if sys.platform == "darwin":
|
|
77
77
|
raise RuntimeError(
|
|
78
78
|
"""MPI library not found, if MPI was installed with Homebrew, export the following:
|
|
79
|
-
DYLD_FALLBACK_LIBRARY_PATH="/opt/homebrew/lib:/usr/lib:$DYLD_FALLBACK_LIBRARY_PATH
|
|
79
|
+
ARM: DYLD_FALLBACK_LIBRARY_PATH="/opt/homebrew/lib:/usr/lib:$DYLD_FALLBACK_LIBRARY_PATH
|
|
80
|
+
Intel: DYLD_FALLBACK_LIBRARY_PATH="/usr/local/lib:/usr/lib:$DYLD_FALLBACK_LIBRARY_PATH
|
|
80
81
|
"""
|
|
81
82
|
)
|
|
82
83
|
raise RuntimeError("no MPI library found")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: numba-mpi
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.8
|
|
4
4
|
Summary: Numba @jittable MPI wrappers tested on Linux, macOS and Windows
|
|
5
5
|
Author-email: "https://github.com/numba-mpi/numba-mpi/graphs/contributors" <sylwester.arabas@agh.edu.pl>
|
|
6
6
|
License-Expression: GPL-3.0-only
|
|
@@ -27,7 +27,7 @@ Provides-Extra: tests
|
|
|
27
27
|
Requires-Dist: pytest; extra == "tests"
|
|
28
28
|
Requires-Dist: py-pde; extra == "tests"
|
|
29
29
|
Provides-Extra: ci-version-pins
|
|
30
|
-
Requires-Dist: pytest
|
|
30
|
+
Requires-Dist: pytest==9.0.1; extra == "ci-version-pins"
|
|
31
31
|
Dynamic: license-file
|
|
32
32
|
|
|
33
33
|
# <img src="https://raw.githubusercontent.com/numba-mpi/numba-mpi/main/.github/numba_mpi_logo.png" width=128 height=142 alt="numba-mpi logo"> numba-mpi
|
|
@@ -37,7 +37,7 @@ Dynamic: license-file
|
|
|
37
37
|
[](https://en.wikipedia.org/wiki/Linux)
|
|
38
38
|
[](https://en.wikipedia.org/wiki/macOS)
|
|
39
39
|
[](https://en.wikipedia.org/wiki/Windows)
|
|
40
|
-
[](https://github.com/numba-mpi/numba-mpi/actions/workflows/tests+pypi.yml)
|
|
40
|
+
[](https://github.com/numba-mpi/numba-mpi/actions/workflows/tests+pypi.yml)
|
|
41
41
|
[](https://GitHub.com/numba-mpi/numba-mpi/graphs/commit-activity)
|
|
42
42
|
[](https://www.gnu.org/licenses/gpl-3.0.html)
|
|
43
43
|
[](https://pypi.org/project/numba-mpi)
|
|
@@ -62,9 +62,10 @@ Packages can be obtained from
|
|
|
62
62
|
|
|
63
63
|
numba-mpi is a pure-Python package.
|
|
64
64
|
The codebase includes a test suite used through the GitHub Actions workflows ([thanks to mpi4py's setup-mpi](https://github.com/mpi4py/setup-mpi)!)
|
|
65
|
-
for automated testing on: Linux ([MPICH](https://www.mpich.org/), [OpenMPI](https://www.open-mpi.org/doc/)
|
|
65
|
+
for automated testing on: Intel Linux ([MPICH](https://www.mpich.org/), [OpenMPI](https://www.open-mpi.org/doc/)
|
|
66
66
|
& [Intel MPI](https://www.intel.com/content/www/us/en/developer/tools/oneapi/mpi-library.html)),
|
|
67
|
-
|
|
67
|
+
ARM Linux ([MPICH](https://www.mpich.org/) & [OpenMPI](https://www.open-mpi.org/doc/)),
|
|
68
|
+
Intel and ARM macOS ([MPICH](https://www.mpich.org/)) and
|
|
68
69
|
Windows ([MS MPI](https://docs.microsoft.com/en-us/message-passing-interface/microsoft-mpi)). Note, that some of those
|
|
69
70
|
combinations may not be fully supported yet - see [Known Issues](#known-issues) for more information.
|
|
70
71
|
|
|
@@ -172,8 +173,6 @@ if numba_mpi.rank() == 0:
|
|
|
172
173
|
|
|
173
174
|
**NOTE**: Issues listed below only relate to combinations of platforms and MPI distributions that we target to support, but due to various reason are currently not working and are temporarily excluded from automated testing:
|
|
174
175
|
|
|
175
|
-
- tests on Ubuntu 2024.4 that use MPICH are not run due to failures caused by newer version of MPICH (`4.2.0`); note, that previous tests ran
|
|
176
|
-
using version `4.0.2` of MPICH (that is installed by default on Ubuntu 2022.4 using `apt`) were passing (see [related issue](https://github.com/numba-mpi/numba-mpi/issues/162) - TODO #162),
|
|
177
176
|
- tests on MacOS (both Intel- and ARM-based) that use OpenMPI are currently not run due to failures being under investigation (see [related issue](https://github.com/numba-mpi/numba-mpi/issues/163) - TODO #163).
|
|
178
177
|
|
|
179
178
|
### MPI resources on the web:
|
|
@@ -191,7 +190,7 @@ using version `4.0.2` of MPICH (that is installed by default on Ubuntu 2022.4 us
|
|
|
191
190
|
- Python/JAX: https://mpi4jax.readthedocs.io
|
|
192
191
|
- Julia: https://juliaparallel.org/MPI.jl
|
|
193
192
|
- Rust: https://docs.rs/mpi
|
|
194
|
-
- C++: https://boost.org/doc/html/mpi.html
|
|
193
|
+
- C++: https://www.boost.org/doc/libs/latest/doc/html/mpi.html
|
|
195
194
|
- R: https://cran.r-project.org/web/packages/Rmpi
|
|
196
195
|
|
|
197
196
|
### Acknowledgements:
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
numba_mpi/__init__.py,sha256=UupJqiiT2YdyzF80ZOIR3Gc1HX6MY8EsDtFGYcSw_xA,828
|
|
2
|
-
numba_mpi/common.py,sha256=
|
|
2
|
+
numba_mpi/common.py,sha256=KJE6i-TLRHcoQBPT2Mu5QN_RGPiVahOF5ouLCdZf5Qo,2659
|
|
3
3
|
numba_mpi/utils.py,sha256=gfGFuzmGgs4FnBqzPI91ftAq4UHgXb_HFkvxrVWkcIo,1866
|
|
4
4
|
numba_mpi/api/__init__.py,sha256=Zj5df4lWeGpxAXV8jKGFnmtLBQ50HwNU8dPf-os06X8,51
|
|
5
5
|
numba_mpi/api/allreduce.py,sha256=szS7YzrQ5a90LlKDiefyxVEiAXnsHbni5g2M1of0TmE,3261
|
|
6
6
|
numba_mpi/api/barrier.py,sha256=9VSJPBC4V0H-xo47uzlT8Hp4xmQhTNLxg5bAcX3Y03g,461
|
|
7
7
|
numba_mpi/api/bcast.py,sha256=8SsYFj9qRjx4l3Q9367JMZd469izlf4if1qusuYILqU,1843
|
|
8
8
|
numba_mpi/api/initialized.py,sha256=oKXpZzHeips0VU1U9wEF_578kOrfKb_IEXxD_aQ2c2E,497
|
|
9
|
-
numba_mpi/api/irecv.py,sha256=
|
|
10
|
-
numba_mpi/api/isend.py,sha256=
|
|
9
|
+
numba_mpi/api/irecv.py,sha256=qgMm8ylU5ivEGR3ac_SQCsg9e0jZHs3ITVTPAbbPAxg,1121
|
|
10
|
+
numba_mpi/api/isend.py,sha256=o27SkCrHvn_TjqZvXGDUXAKkQ3vNDYOYQEv2012j_AA,1081
|
|
11
11
|
numba_mpi/api/operator.py,sha256=3VTPZAdOP05bxdqt3lA0hRDICM-iaBMa4m-krEdO91s,342
|
|
12
12
|
numba_mpi/api/query_thread.py,sha256=2oVA2cYIeG6fcDJZGOetYrLoFyND--b-4qARGM_D5_E,462
|
|
13
13
|
numba_mpi/api/rank.py,sha256=1xZvHUclsK20aMtK07JzXYxW5F4Er8HZgOmcf495sjo,597
|
|
@@ -18,8 +18,8 @@ numba_mpi/api/scatter_gather.py,sha256=goZn4BxMKakWQHjfXIOdjzK3DJ-lTeaiQQwgnyQeZ
|
|
|
18
18
|
numba_mpi/api/send.py,sha256=jn1hPw0YHBHOaeJop_ZbjaBChaqgfw3nM1xGhW9sabI,909
|
|
19
19
|
numba_mpi/api/size.py,sha256=-RX-FtcIH4qDxCoGOhZjjgEWXpytt79vsH0YX9dtZuY,597
|
|
20
20
|
numba_mpi/api/wtime.py,sha256=qrTqlefW7K7hqnAQKkGYm8kgdiRGuSAGiHmPcTrhLzE,279
|
|
21
|
-
numba_mpi-1.1.
|
|
22
|
-
numba_mpi-1.1.
|
|
23
|
-
numba_mpi-1.1.
|
|
24
|
-
numba_mpi-1.1.
|
|
25
|
-
numba_mpi-1.1.
|
|
21
|
+
numba_mpi-1.1.8.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
22
|
+
numba_mpi-1.1.8.dist-info/METADATA,sha256=wkyEdc6tVauk_NXV7YF26HKV6nckrQPf2FfAic8cAnk,11133
|
|
23
|
+
numba_mpi-1.1.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
24
|
+
numba_mpi-1.1.8.dist-info/top_level.txt,sha256=yb_ktLmrfuhOZS0rjS81FFNC-gK_4c19WbLG2ViP73g,10
|
|
25
|
+
numba_mpi-1.1.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|