zoukankan      html  css  js  c++  java
  • NONUNIFORM MEMORY ACCESS

    COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION

    In terms of commercial products, the two common approaches to providing a
    multiple-processor system to support applications are SMPs and clusters. For some
    years, another approach, known as nonuniform memory access (NUMA), has been
    the subject of research and commercial NUMA products are now available.
    Before proceeding, we should define some terms often found in the NUMA
    literature.
    • Uniform memory access (UMA): All processors have access to all parts of
    main memory using loads and stores. The memory access time of a processor
    to all regions of memory is the same. The access times experienced by differ-
    ent processors are the same. The SMP organization discussed in Sections 17.2
    and 17.3 is UMA.
    • Nonuniform memory access (NUMA): All processors have access to all parts
    of main memory using loads and stores. The memory access time of a proces-
    sor differs depending on which region of main memory is accessed. The last
    statement is true for all processors; however, for different processors, which
    memory regions are slower and which are faster differ.
    • Cache-coherent NUMA (CC-NUMA): A NUMA system in which cache
    coherence is maintained among the caches of the various processors.
    A NUMA system without cache coherence is more or less equivalent to a cluster.
    The commercial products that have received much attention recently are CC-NUMA
    systems, which are quite distinct from both SMPs and clusters. Usually, but unfortu-
    nately not always, such systems are in fact referred to in the commercial literature as
    CC-NUMA systems. This section is concerned only with CC-NUMA systems.

  • 相关阅读:
    忆2011年的秋天:一个人的项目
    横看成岭侧成峰,远近高低各不同——从面试官的角度谈面试
    使用Scratch进行少儿编程
    初识少儿编程
    升级openssl
    CentOS设置虚拟网卡做NAT方式和Bridge方式桥接
    iptables conntrack有什么用
    nohup和&的区别
    Linux就这个范儿 第12章 一个网络一个世界
    一个由INode节点爆满引起的业务故障
  • 原文地址:https://www.cnblogs.com/rsapaper/p/6253832.html
Copyright © 2011-2022 走看看