-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix stream sync for scratch pad eviction
Summary: Before this diff, SSD TBE unsafely evicts data from the scratch pad (the buffer that stores conflict missed data). The eviction happened on the SSD stream while the backward TBE happened on the default stream. SSD TBE did not properly synchronize the streams to ensure that the backward TBE completed before evicting data from the scratch pad. This diff fixes the problem by adding the syncrhonization between streams to ensure the correct execution order between the backward TBE and the scratch pad eviction. Differential Revision: D59716516
- Loading branch information
1 parent
88349ff
commit d74edee
Showing
1 changed file
with
44 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters