numba-mpi 1.1.6__py3-none-any.whl → 1.1.7__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/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.6
3
+ Version: 1.1.7
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<8.0.0; extra == "ci-version-pins"
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
  [![Linux OK](https://img.shields.io/static/v1?label=Linux&logo=Linux&color=yellow&message=%E2%9C%93)](https://en.wikipedia.org/wiki/Linux)
38
38
  [![macOS OK](https://img.shields.io/static/v1?label=macOS&logo=Apple&color=silver&message=%E2%9C%93)](https://en.wikipedia.org/wiki/macOS)
39
39
  [![Windows OK](https://img.shields.io/static/v1?label=Windows&logo=Windows&color=white&message=%E2%9C%93)](https://en.wikipedia.org/wiki/Windows)
40
- [![Github Actions Status](https://github.com/numba-mpi/numba-mpi/workflows/tests+pypi/badge.svg?branch=main)](https://github.com/numba-mpi/numba-mpi/actions/workflows/tests+pypi.yml)
40
+ [![Github Actions Status](https://github.com/numba-mpi/numba-mpi/actions/workflows/tests+pypi.yml/badge.svg?branch=main)](https://github.com/numba-mpi/numba-mpi/actions/workflows/tests+pypi.yml)
41
41
  [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/numba-mpi/numba-mpi/graphs/commit-activity)
42
42
  [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html)
43
43
  [![PyPI version](https://badge.fury.io/py/numba-mpi.svg)](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
- macOS ([MPICH](https://www.mpich.org/) & [OpenMPI](https://www.open-mpi.org/doc/)) and
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,5 +1,5 @@
1
1
  numba_mpi/__init__.py,sha256=UupJqiiT2YdyzF80ZOIR3Gc1HX6MY8EsDtFGYcSw_xA,828
2
- numba_mpi/common.py,sha256=XOnXiy2hDFIsNkhTUXuPY17Xz-a9xg6F-SxIayMrgqU,2555
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
@@ -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.6.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
22
- numba_mpi-1.1.6.dist-info/METADATA,sha256=Augv4alfk4ttT8RtkfZpSMfYIsK-PocFQdaKxVWVSe8,11367
23
- numba_mpi-1.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
- numba_mpi-1.1.6.dist-info/top_level.txt,sha256=yb_ktLmrfuhOZS0rjS81FFNC-gK_4c19WbLG2ViP73g,10
25
- numba_mpi-1.1.6.dist-info/RECORD,,
21
+ numba_mpi-1.1.7.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
22
+ numba_mpi-1.1.7.dist-info/METADATA,sha256=oj2qK4RcfnQuvpEsEpxoj4Z1L3Cpy0r5qXNJ0aDcA1Q,11133
23
+ numba_mpi-1.1.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
+ numba_mpi-1.1.7.dist-info/top_level.txt,sha256=yb_ktLmrfuhOZS0rjS81FFNC-gK_4c19WbLG2ViP73g,10
25
+ numba_mpi-1.1.7.dist-info/RECORD,,