Jump to content

Talk:Distributed shared memory

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 65.96.114.69 (talk) at 00:18, 7 June 2005 (NUMA is not DSM). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

how about numa, and the Altix? it does fall in shared memory category doesn't it?!

NUMA is not DSM

NUMA and DSM are distinct. With NUMA a node can access memory elsewhere albeit less quickly than local memory. With DSM a node cannot directly access memory elsewhere. To access another node's memory it must engage the other node's cooperation (e.g., via messages). To ensure that all nodes have a coherent view of memory, now that's where things get interesting ...