This commit is contained in:
Zhengyi Chen 2023-12-24 16:13:56 +00:00
parent f059736e2d
commit 905f90200e
4 changed files with 1149 additions and 1 deletions

View file

@ -19,7 +19,7 @@ In floating home protocols, some orchestration is needed for a stale node to be
A scope-consistency protocol is one where each sharing is associated with a scope -- only loads and stores within the scope's participants is guaranteed to respect the memory model.
Many newer systems don't even expose writable data movement (e.g., Grappa) -- to write, you have to move compute towards data. Reading is no-problem though.
Many newer systems don't even expose writable data-to-compute (e.g., Grappa) -- to write, you have to move compute towards data. Reading is no-problem though.
[7]'s case for acquire-invalidate holds only for MRSW (I think?).