-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH Update numba versioning to pull 0.51 #109
Conversation
From successful GPU unit tests in rapidsai/cudf#5979 we are going to remove the restriciton that prevents use of numba 0.51 given the earlier timeout issues are resolve. Numba 0.51 brings CUDA 11 and Ampere support.
Adding Need a decision to how to proceed |
Looks like it is related to an issue with TBB. Disabling TBB on |
Awaiting #111 to merge first and final sign off to merge this PR |
rerun tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Had one clarifying question above.
conda/recipes/versions.yaml
Outdated
@@ -90,7 +90,7 @@ networkx_version: | |||
nodejs_version: | |||
- '>=12' | |||
numba_version: | |||
- '>=0.49,<0.51' | |||
- '>=0.49' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to allow Numba 0.51 or do we want to require it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should just allow it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was discovered Numba 0.51 breaks all usage of LocalCUDACluster
and dask-cuda-worker
Fixes are being worked on in these PRs: |
From our discussion today we will update the versioning to ignore |
@kkraus14 can you re-review |
Sounds good. Thanks Mike! 😀 |
From successful GPU unit tests in rapidsai/cudf#5979 we are going to remove the restriciton that prevents use of numba 0.51 given the earlier timeout issues are resolve. Numba 0.51 brings CUDA 11 and Ampere support.