aco: remove can_reorder semantic in get_sync_info_with_hack
No fossil-db changes. Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8416>
This commit is contained in:
@@ -342,7 +342,7 @@ memory_sync_info get_sync_info_with_hack(const Instruction* instr)
|
||||
if (instr->format == Format::SMEM && !instr->operands.empty() && instr->operands[0].bytes() == 16) {
|
||||
// FIXME: currently, it doesn't seem beneficial to omit this due to how our scheduler works
|
||||
sync.storage = (storage_class)(sync.storage | storage_buffer);
|
||||
sync.semantics = (memory_semantics)(sync.semantics | semantic_private);
|
||||
sync.semantics = (memory_semantics)((sync.semantics | semantic_private) & ~semantic_can_reorder);
|
||||
}
|
||||
return sync;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user