CSC 456 Fall 2013/4b cv

From Expertiza_Wiki
Revision as of 02:03, 6 November 2013 by Rlcude (talk | contribs)
Jump to navigation Jump to search

Background

Non Uniform Memory (NUMA) technology has become the optimal solution for more complex systems in terms of the increase of processors. NUMA provides the functionality to distribute memory to each processor, giving each processor local access to its own share, as well as giving each processor the ability to access remote memory located in other processors.


History

Different Strategies

  • first touch - allocates the frame on the node that incurs the page fault, i.e. on the same node where the processor that accesses it resides.
  • round robin - pages are allocated in different memory nodes and are accessed based on time slices.
  • local to first access - waits
  • local to first request