-
Notifications
You must be signed in to change notification settings - Fork 97
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
Update memory_pause_fraction in test_spill #757
Update memory_pause_fraction in test_spill #757
Conversation
Changes from dask/distributed#5438 have slightly modified the behavior for worker spilling options, thus we need to update memory_pause_fraction to a value that isn't `None`.
Failures should be fixed by rapidsai/cudf#9481 . |
rerun tests |
1 similar comment
rerun tests |
@@ -82,6 +82,7 @@ def main(args): | |||
"ignore", message=".*NVLink.*rmm_pool_size.*", category=UserWarning | |||
) | |||
|
|||
print(cluster_kwargs) |
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.
Is this leftover from testing or you do want to print kwargs ?
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.
This is something I was using for a different test and didn't see when committing, good catch. Removed it now.
Codecov Report
@@ Coverage Diff @@
## branch-21.12 #757 +/- ##
===============================================
Coverage ? 79.98%
===============================================
Files ? 15
Lines ? 1974
Branches ? 0
===============================================
Hits ? 1579
Misses ? 395
Partials ? 0 Continue to review full report at Codecov.
|
@gpucibot merge |
Thanks @quasiben ! |
Changes from dask/distributed#5438 have slightly
modified the behavior for worker spilling options, thus we need to
update memory_pause_fraction to a value that isn't
None
.