Skip to content

Commit

Permalink
Update to numba 0.60
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderKalistratov committed Aug 9, 2024
1 parent 9392a43 commit a94202f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions numba_mlir/conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ requirements:
- https://software.repos.intel.com/python/conda/::dpcpp-cpp-rt {{ dpcpp_version }}
- tbb-devel >=2021.6.0
- level-zero-devel
- numba >=0.59.1, <0.60
- numba >=0.60.0, <0.60.1
- pybind11
- python
- setuptools
Expand All @@ -40,7 +40,7 @@ requirements:
run:
- https://software.repos.intel.com/python/conda/::mkl
- https://software.repos.intel.com/python/conda/::mkl-dpcpp {{ dpcpp_version }}
- numba >=0.59.1, <0.60
- numba >=0.60.0, <0.60.1
- packaging
- python
- tbb >=2021.6.0
Expand Down
4 changes: 4 additions & 0 deletions numba_mlir/numba_mlir/mlir/tests/test_numba_parfor.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ def _gen_tests():
"test_issue9256_lower_sroa_conflict", # using variable outside of parfor
"test_issue9256_lower_sroa_conflict_variant1", # using variable outside of parfor
"test_issue9256_lower_sroa_conflict_variant2", # using variable outside of parfor
"test_call_hoisting", # list is not supported
"test_tuple_hoisting", # list is not supported
}

skip_tests = {
Expand Down Expand Up @@ -391,6 +393,8 @@ def _gen_replace_parfor_tests():
"test_issue9256_lower_sroa_conflict_variant1", # using variable outside of parfor
"test_issue9256_lower_sroa_conflict_variant2", # using variable outside of parfor
"test_allocation_hoisting", # TODO: investigate
"test_call_hoisting", # list is not supported
"test_tuple_hoisting", # list is not supported
}
skip_tests = {
"test_copy_global_for_parfor", # flaky test
Expand Down
2 changes: 1 addition & 1 deletion numba_mlir/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=packages,
install_requires=["numba>=0.59.1,<0.60"],
install_requires=["numba>=0.60.0,<0.60.1"],
include_package_data=True,
)

Expand Down
2 changes: 1 addition & 1 deletion scripts/numba-mlir.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip>=22
numba=0.59.1
numba=0.60.0
numpy=1.24
setuptools<65.6
scikit-learn
Expand Down

0 comments on commit a94202f

Please sign in to comment.