-
Notifications
You must be signed in to change notification settings - Fork 928
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
[REVIEW] Fix jitcache-multiprocess test failure, fix CUDA 11 related CI issues #5942
[REVIEW] Fix jitcache-multiprocess test failure, fix CUDA 11 related CI issues #5942
Conversation
…DA context too soon
Please update the changelog in order to start CI tests. View the gpuCI docs here. |
Codecov Report
@@ Coverage Diff @@
## branch-0.15 #5942 +/- ##
===============================================
- Coverage 88.65% 84.43% -4.22%
===============================================
Files 57 80 +23
Lines 10945 13424 +2479
===============================================
+ Hits 9703 11335 +1632
- Misses 1242 2089 +847
Continue to review full report at Codecov.
|
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.
Jitcache changes LGTM
Recent changes to
rmm::mr::get_default_resource()
caused the CUDA contextto be created in the JITCACHE_MULTIPROCESS_TEST before the child process is
forked, which caused the child to not get a context. This PR fixes the failure.