numba-mpi 1.0.0__tar.gz → 1.0.1__tar.gz

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.
Files changed (61) hide show
  1. numba_mpi-1.0.1/.github/numba_mpi_logo.png +0 -0
  2. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/.github/workflows/tests+pypi.yml +3 -3
  3. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/.zenodo.json +1 -1
  4. numba_mpi-1.0.1/CITATION.cff +20 -0
  5. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/PKG-INFO +5 -5
  6. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/README.md +3 -3
  7. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi.egg-info/PKG-INFO +5 -5
  8. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi.egg-info/SOURCES.txt +2 -0
  9. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/setup.py +4 -1
  10. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/.github/numba_mpi_logo.svg +0 -0
  11. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/.github/workflows/readme_snippets.yml +0 -0
  12. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/.github/workflows/stale.yml +0 -0
  13. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/.gitignore +0 -0
  14. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/.pre-commit-config.yaml +0 -0
  15. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/.vscode/settings.json +0 -0
  16. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/CODE_OF_CONDUCT.md +0 -0
  17. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/LICENSE +0 -0
  18. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/__init__.py +0 -0
  19. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/__init__.py +0 -0
  20. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/allreduce.py +0 -0
  21. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/barrier.py +0 -0
  22. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/bcast.py +0 -0
  23. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/initialized.py +0 -0
  24. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/irecv.py +0 -0
  25. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/isend.py +0 -0
  26. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/operator.py +0 -0
  27. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/rank.py +0 -0
  28. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/recv.py +0 -0
  29. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/requests.py +0 -0
  30. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/scatter_gather.py +0 -0
  31. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/send.py +0 -0
  32. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/size.py +0 -0
  33. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/api/wtime.py +0 -0
  34. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/common.py +0 -0
  35. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi/utils.py +0 -0
  36. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi.egg-info/dependency_links.txt +0 -0
  37. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi.egg-info/requires.txt +0 -0
  38. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/numba_mpi.egg-info/top_level.txt +0 -0
  39. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/setup.cfg +0 -0
  40. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/__init__.py +0 -0
  41. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_allreduce.py +0 -0
  42. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_barrier.py +0 -0
  43. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_bcast.py +0 -0
  44. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_init.py +0 -0
  45. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_isend_irecv.py +0 -0
  46. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_rank.py +0 -0
  47. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_scatter_gather.py +0 -0
  48. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_send_recv.py +0 -0
  49. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_size.py +0 -0
  50. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/api/test_wtime.py +0 -0
  51. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/common.py +0 -0
  52. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/paper_listings/exchange.py +0 -0
  53. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/paper_listings/hello.py +0 -0
  54. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/paper_listings/mpi4py_with_error.py +0 -0
  55. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/paper_listings/numba_mpi.py +0 -0
  56. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/paper_listings/py-pde.py +0 -0
  57. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/paper_listings/test.py +0 -0
  58. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/paper_listings/timing.py +0 -0
  59. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/test_paper_listings.py +0 -0
  60. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/test_version.py +0 -0
  61. {numba_mpi-1.0.0 → numba_mpi-1.0.1}/tests/utils.py +0 -0
@@ -64,15 +64,15 @@ jobs:
64
64
  - uses: mpi4py/setup-mpi@v1
65
65
  - name: Build
66
66
  run: |
67
- pip install pdoc3
67
+ pip install pdoc
68
68
  pip install -e .
69
- python -We -m pdoc --html numba_mpi
69
+ PDOC_ALLOW_EXEC=1 python -We -m pdoc -o html numba_mpi
70
70
  - name: Deploy
71
71
  if: github.ref == 'refs/heads/main'
72
72
  uses: JamesIves/github-pages-deploy-action@4.1.1
73
73
  with:
74
74
  BRANCH: pdoc
75
- FOLDER: html/numba_mpi
75
+ FOLDER: html
76
76
  CLEAN: true
77
77
 
78
78
  zenodo_json:
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "title": "numba-mpi",
3
- "description": "Numba @njittable wrappers for MPI C API tested on Linux, macOS and Windows",
3
+ "description": "Numba @jittable wrappers for MPI C API tested on Linux, macOS and Windows",
4
4
  "creators": [
5
5
  {
6
6
  "affiliation": "Jagiellonian University, Kraków, Poland",
@@ -0,0 +1,20 @@
1
+ cff-version: 1.2.0
2
+ title: "numba-mpi"
3
+ url: "https://github.com/numba-mpi/numba-mpi"
4
+ preferred-citation:
5
+ type: article
6
+ authors:
7
+ - family-names: "Derlatka"
8
+ given-names: "Kacper"
9
+ - family-names: "Manna"
10
+ given-names: "Maciej"
11
+ - family-names: "Bulenok"
12
+ given-names: "Oleksii"
13
+ - family-names: "Zwicker"
14
+ given-names: "David"
15
+ - family-names: "Arabas"
16
+ given-names: "Sylwester"
17
+ doi: "10.48550/arXiv.2407.13712"
18
+ journal: "arXiv"
19
+ title: " Enabling MPI communication within Numba/LLVM JIT-compiled Python code using numba-mpi v1.0 "
20
+ year: 2024
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: numba-mpi
3
- Version: 1.0.0
4
- Summary: Numba @njittable MPI wrappers tested on Linux, macOS and Windows
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.svg" style="height:50pt" alt="numba-mpi logo"> numba-mpi
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
  [![Python 3](https://img.shields.io/static/v1?label=Python&logo=Python&color=3776AB&message=3)](https://www.python.org/)
25
25
  [![LLVM](https://img.shields.io/static/v1?label=LLVM&logo=LLVM&color=gold&message=Numba)](https://numba.pydata.org)
@@ -35,7 +35,7 @@ Requires-Dist: py-pde; extra == "tests"
35
35
  [![DOI](https://zenodo.org/badge/316911228.svg)](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) (@njit mode).
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.njit()
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)
@@ -1,4 +1,4 @@
1
- # <img src="https://raw.githubusercontent.com/numba-mpi/numba-mpi/main/.github/numba_mpi_logo.svg" style="height:50pt" alt="numba-mpi logo"> numba-mpi
1
+ # <img src="https://raw.githubusercontent.com/numba-mpi/numba-mpi/main/.github/numba_mpi_logo.svg" width=128 height=142 alt="numba-mpi logo"> numba-mpi
2
2
 
3
3
  [![Python 3](https://img.shields.io/static/v1?label=Python&logo=Python&color=3776AB&message=3)](https://www.python.org/)
4
4
  [![LLVM](https://img.shields.io/static/v1?label=LLVM&logo=LLVM&color=gold&message=Numba)](https://numba.pydata.org)
@@ -14,7 +14,7 @@
14
14
  [![DOI](https://zenodo.org/badge/316911228.svg)](https://zenodo.org/badge/latestdoi/316911228)
15
15
 
16
16
  ### Overview
17
- 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) (@njit mode).
17
+ 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).
18
18
 
19
19
  Support is provided for a subset of MPI routines covering: `size`/`rank`, `send`/`recv`, `allreduce`, `bcast`, `scatter`/`gather` & `allgather`, `barrier`, `wtime`
20
20
  and basic asynchronous communication with `isend`/`irecv` (only for contiguous arrays); for request handling including `wait`/`waitall`/`waitany` and `test`/`testall`/`testany`.
@@ -45,7 +45,7 @@ Features that are not implemented yet include (help welcome!):
45
45
  ```python
46
46
  import numba, numba_mpi, numpy
47
47
 
48
- @numba.njit()
48
+ @numba.jit()
49
49
  def hello():
50
50
  src = numpy.array([1., 2., 3., 4., 5.])
51
51
  dst_tst = numpy.empty_like(src)
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: numba-mpi
3
- Version: 1.0.0
4
- Summary: Numba @njittable MPI wrappers tested on Linux, macOS and Windows
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.svg" style="height:50pt" alt="numba-mpi logo"> numba-mpi
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
  [![Python 3](https://img.shields.io/static/v1?label=Python&logo=Python&color=3776AB&message=3)](https://www.python.org/)
25
25
  [![LLVM](https://img.shields.io/static/v1?label=LLVM&logo=LLVM&color=gold&message=Numba)](https://numba.pydata.org)
@@ -35,7 +35,7 @@ Requires-Dist: py-pde; extra == "tests"
35
35
  [![DOI](https://zenodo.org/badge/316911228.svg)](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) (@njit mode).
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.njit()
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)
@@ -1,10 +1,12 @@
1
1
  .gitignore
2
2
  .pre-commit-config.yaml
3
3
  .zenodo.json
4
+ CITATION.cff
4
5
  CODE_OF_CONDUCT.md
5
6
  LICENSE
6
7
  README.md
7
8
  setup.py
9
+ .github/numba_mpi_logo.png
8
10
  .github/numba_mpi_logo.svg
9
11
  .github/workflows/readme_snippets.yml
10
12
  .github/workflows/stale.yml
@@ -7,6 +7,9 @@ def get_long_description():
7
7
  """returns contents of README.md file"""
8
8
  with open("README.md", "r", encoding="utf8") as file:
9
9
  long_description = file.read()
10
+ long_description = long_description.replace(
11
+ "numba_mpi_logo.svg", "numba_mpi_logo.png"
12
+ )
10
13
  return long_description
11
14
 
12
15
 
@@ -21,7 +24,7 @@ setup(
21
24
  python_requires=">=3.8",
22
25
  setup_requires=["setuptools_scm"],
23
26
  license="GPL v3",
24
- description="Numba @njittable MPI wrappers tested on Linux, macOS and Windows",
27
+ description="Numba @jittable MPI wrappers tested on Linux, macOS and Windows",
25
28
  install_requires=("numba", "numpy", "mpi4py", "psutil"),
26
29
  extras_require={"tests": ("pytest<8.0.0", "py-pde")}, # TODO #122
27
30
  long_description=get_long_description(),
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes