-
Notifications
You must be signed in to change notification settings - Fork 58
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
POSIX IO: use async memcpy #374
Conversation
909ffd7
to
f83475e
Compare
{ | ||
for (auto& [_, stream] : _streams) { | ||
try { | ||
CUDA_DRIVER_TRY(cudaAPI::instance().StreamDestroy(stream)); |
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.
Doesn't this segfault when destroying the singleton? We had to let the libcudf stream pool "leak" to avoid this.
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.
Not on my workstation or in CI. Maybe it is because we are using a newer CTK. Do you have a link to the libcudf issue?
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.
huh. I can't repro the crash now.
I don't think we had an issue open.
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.
Thanks for checking
…o posix_use_stream
/merge |
Closes #311