numba-mpi 1.0.0__py3-none-any.whl → 1.0.1__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-1.0.0.dist-info → numba_mpi-1.0.1.dist-info}/METADATA +5 -5
- {numba_mpi-1.0.0.dist-info → numba_mpi-1.0.1.dist-info}/RECORD +5 -5
- {numba_mpi-1.0.0.dist-info → numba_mpi-1.0.1.dist-info}/WHEEL +1 -1
- {numba_mpi-1.0.0.dist-info → numba_mpi-1.0.1.dist-info}/LICENSE +0 -0
- {numba_mpi-1.0.0.dist-info → numba_mpi-1.0.1.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: numba-mpi
|
3
|
-
Version: 1.0.
|
4
|
-
Summary: Numba @
|
3
|
+
Version: 1.0.1
|
4
|
+
Summary: Numba @jittable MPI wrappers tested on Linux, macOS and Windows
|
5
5
|
Home-page: https://github.com/numba-mpi/numba-mpi
|
6
6
|
Author: https://github.com/numba-mpi/numba-mpi/graphs/contributors
|
7
7
|
License: GPL v3
|
@@ -19,7 +19,7 @@ Provides-Extra: tests
|
|
19
19
|
Requires-Dist: pytest <8.0.0 ; extra == 'tests'
|
20
20
|
Requires-Dist: py-pde ; extra == 'tests'
|
21
21
|
|
22
|
-
# <img src="https://raw.githubusercontent.com/numba-mpi/numba-mpi/main/.github/numba_mpi_logo.
|
22
|
+
# <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
|
23
23
|
|
24
24
|
[](https://www.python.org/)
|
25
25
|
[](https://numba.pydata.org)
|
@@ -35,7 +35,7 @@ Requires-Dist: py-pde ; extra == 'tests'
|
|
35
35
|
[](https://zenodo.org/badge/latestdoi/316911228)
|
36
36
|
|
37
37
|
### Overview
|
38
|
-
numba-mpi provides Python wrappers to the C MPI API callable from within [Numba JIT-compiled code](https://numba.readthedocs.io/en/stable/user/jit.html) (@
|
38
|
+
numba-mpi provides Python wrappers to the C MPI API callable from within [Numba JIT-compiled code](https://numba.readthedocs.io/en/stable/user/jit.html) (@jit mode). For an outline of the project, rationale, architecture, and features, refer to: [numba-mpi arXiv e-print](https://doi.org/10.48550/arXiv.2407.13712) (please cite if numba-mpi is used in your research).
|
39
39
|
|
40
40
|
Support is provided for a subset of MPI routines covering: `size`/`rank`, `send`/`recv`, `allreduce`, `bcast`, `scatter`/`gather` & `allgather`, `barrier`, `wtime`
|
41
41
|
and basic asynchronous communication with `isend`/`irecv` (only for contiguous arrays); for request handling including `wait`/`waitall`/`waitany` and `test`/`testall`/`testany`.
|
@@ -66,7 +66,7 @@ Features that are not implemented yet include (help welcome!):
|
|
66
66
|
```python
|
67
67
|
import numba, numba_mpi, numpy
|
68
68
|
|
69
|
-
@numba.
|
69
|
+
@numba.jit()
|
70
70
|
def hello():
|
71
71
|
src = numpy.array([1., 2., 3., 4., 5.])
|
72
72
|
dst_tst = numpy.empty_like(src)
|
@@ -16,8 +16,8 @@ numba_mpi/api/scatter_gather.py,sha256=goZn4BxMKakWQHjfXIOdjzK3DJ-lTeaiQQwgnyQeZ
|
|
16
16
|
numba_mpi/api/send.py,sha256=jn1hPw0YHBHOaeJop_ZbjaBChaqgfw3nM1xGhW9sabI,909
|
17
17
|
numba_mpi/api/size.py,sha256=-RX-FtcIH4qDxCoGOhZjjgEWXpytt79vsH0YX9dtZuY,597
|
18
18
|
numba_mpi/api/wtime.py,sha256=qrTqlefW7K7hqnAQKkGYm8kgdiRGuSAGiHmPcTrhLzE,279
|
19
|
-
numba_mpi-1.0.
|
20
|
-
numba_mpi-1.0.
|
21
|
-
numba_mpi-1.0.
|
22
|
-
numba_mpi-1.0.
|
23
|
-
numba_mpi-1.0.
|
19
|
+
numba_mpi-1.0.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
20
|
+
numba_mpi-1.0.1.dist-info/METADATA,sha256=Fp5jqI53wUJzoY-KreJqYy_tiXzuCyJNGQyuFEkYzC0,9887
|
21
|
+
numba_mpi-1.0.1.dist-info/WHEEL,sha256=uCRv0ZEik_232NlR4YDw4Pv3Ajt5bKvMH13NUU7hFuI,91
|
22
|
+
numba_mpi-1.0.1.dist-info/top_level.txt,sha256=yb_ktLmrfuhOZS0rjS81FFNC-gK_4c19WbLG2ViP73g,10
|
23
|
+
numba_mpi-1.0.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|