-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix fuzzer analysis to determine when it is safe to reuse reductions.
This is essentially a cache invalidation bug due to missing the following case in the reduction checking logic: * Complete launch * Read-only privilege * Non-injective projection functor The select_reduction code had been written to assume that the cache invalidation case would always involve a write privilege. And in that case the old code would correctly ensure that launches would use injective projection functors. But that only covers the case when downgrading a reduction privilege, and did not correctly handle the case where the fuzzer chooses to send a read-only operation through the pipeline. Because read-only operations have relaxed semantics even when doing index launches, we had to reflow the check to cover those invariants explicitly.
- Loading branch information
1 parent
d4e8005
commit 4b526eb
Showing
1 changed file
with
57 additions
and
35 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