Skip to content
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

In PjRtStreamExecutorBuffer::Delete, fix some bugs causing memory corruption. #67688

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

copybara-service[bot]
Copy link

@copybara-service copybara-service bot commented May 15, 2024

In PjRtStreamExecutorBuffer::Delete, fix some bugs causing memory corruption.

The bug is that we don't wait for events using the buffer on the Compute stream, and also the definition events. This can cause a race condition where the buffer is deleted before it is read/written, which can lead to memory corruptions.

For events on the compute stream, the fix is to schedule the deallocation on the compute stream.
For the definition events, the fix is to wait for them on a borrowed stream if they are not defined on the compute stream.

This change probably wouldn't be needed if all writes are scheduled on the compute stream, but that is not the case today. We have a lot of usages of the h2d and d2d stream.

@copybara-service copybara-service bot force-pushed the exported_pr_634078726 branch 2 times, most recently from 26dfdd5 to 3036433 Compare May 16, 2024 06:32
@copybara-service copybara-service bot changed the title Fix a bug in PjRtStreamExecutorBuffer::Delete. In PjRtStreamExecutorBuffer::Delete, fix some bugs causing memory corruption. May 16, 2024
…ruption.

The bug is that we don't wait for events using the buffer on the Compute stream, and also the definition events. This can cause a race condition where the buffer is deleted before it is read/written, which can lead to memory corruptions.

For events on the compute stream, the fix is to schedule the deallocation on the compute stream.
For the definition events, the fix is to wait for them on a borrowed stream if they are not defined on the compute stream.

This change probably wouldn't be needed if all writes are scheduled on the compute stream, but that is not the case today. We have a lot of usages of the h2d and d2d stream.

PiperOrigin-RevId: 634078726
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant