US20080147988A1 - Multiprocessor System With Dynamic Cache Coherency Regions - Google Patents

Multiprocessor System With Dynamic Cache Coherency Regions Download PDF

Info

Publication number
US20080147988A1
US20080147988A1 US12/037,172 US3717208A US2008147988A1 US 20080147988 A1 US20080147988 A1 US 20080147988A1 US 3717208 A US3717208 A US 3717208A US 2008147988 A1 US2008147988 A1 US 2008147988A1
Authority
US
United States
Prior art keywords
processors
coherency
computer system
cache
multiprocessor
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US12/037,172
Inventor
Thomas J. Heller
Richard I. Baum
Michael Ignatowski
James W. Rymarczyk
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US12/037,172 priority Critical patent/US20080147988A1/en
Publication of US20080147988A1 publication Critical patent/US20080147988A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/08Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
    • G06F12/0802Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches
    • G06F12/0806Multiuser, multiprocessor or multiprocessing cache systems
    • G06F12/0815Cache consistency protocols
    • G06F12/0831Cache consistency protocols using a bus scheme, e.g. with bus monitoring or watching means
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/08Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
    • G06F12/0802Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches
    • G06F12/0806Multiuser, multiprocessor or multiprocessing cache systems
    • G06F12/0815Cache consistency protocols
    • G06F12/0817Cache consistency protocols using directory methods
    • G06F12/0824Distributed directories, e.g. linked lists of caches

Definitions

  • This invention relates to a multiprocessor computer system having a plurality of nodes and particularly to one which uses processor state information to determine which coherent caches in the system are require examination during the processing of a coherency transaction produced by a single originating processor's storage request.
  • IBM® is a registered trademark of International Business Machines Corporation, Armonk, N.Y., U.S.A. Other names may be registered trademarks or product names of International Business Machines Corporation or other companies.
  • the idle time spent by computer processors while waiting for memory references to complete has become a much larger fraction of the total execution time for a wide variety of important commercial and technical computing workloads.
  • Many prior-art techniques have been used in multiprocessor system designs to minimize the time a processor must wait while the access of main storage locations is completed. These techniques fall broadly into two categories. The first category of techniques attempts to find additional instructions for the processors to execute while waiting for the memory reference which is experiencing a delay. These techniques include such hardware and software mechanisms as out of order execution and multithreading. The second category of techniques focuses on minimizing the latency of the memory reference itself, e.g. SRAM caches, DRAM caches and high speed multiprocessor bus architectures.
  • SRAM and DRAM caches have been extremely successful in reducing memory reference latency and one or both are used by all current multiprocessor designs.
  • Prior-art cache designs include specialized hardware and software which maintain cache coherence for multiprocessor systems.
  • a snoop bus protocol is typically employed for systems which connect a plurality of processors via a shared bus.
  • Each coherent transaction performed upon the shared bus is examined (or “snooped”) against data in the caches of all other devices attached to the bus. If a copy of the affected data is found, the state of the cache line containing the data may be updated in response to the coherent transaction.
  • Logical partitioning as described in U.S. Pat. No. 4,843,541, when using shared processors also causes poor scaling for prior-art system designs when extended to large numbers of processors.
  • U.S. Pat. No. 4,843,541 shows how a virtual machine hypervisor program can be used to “partition the resources in a central electronic complex of a data processing system into a plurality of logical partitions”.
  • Logical partitioning is widely used on large multiprocessor systems to run many workloads that operate on private data simultaneously.
  • an operating system instance is initialized within each logical partition.
  • the logical partition can have from 1 to n logical processors.
  • the hypervisor is responsible to dispatch each of the logical processors onto a physical processor.
  • a physical processor is the host of just a single logical processor over a long period of time it is said to be “dedicated” to that logical processor's partition. If a physical processor is the host of the logical processors from multiple partitions it is said to be a “shared” processor. It is desirable, from an overall hardware utilization point of view, for a large multiprocessor system to allow the flexibility of defining many or most of the physical processors as “shared” and allowing the movement of logical processors among the physical processors of the multiprocessor as the utilization of the physical processors fluctuates with external changes. Prior-art multiprocessor cache designs do not scale well for these partitioned workloads, especially when the physical processors are defined as “shared”.
  • a large factor in the poor performance scaling of large multiprocessors for both the large single database workload and the shared logical partition case is the relationship between increasing numbers of processors and the time delay required to communicate among them.
  • Snoop bus protocols require memory references that miss local caches to be broadcast to all caches which may contain a copy of the requested lines, typically all other caches in the system.
  • the bus bandwidth required to distribute the addresses and responses for large multiprocessor systems is very high. The need to provide the required high bandwidth has driven prior-art designs to use switch chips with many wide ports, expensive chip carriers to provide the needed pins, expensive card technology to provide good electrical characteristics and therefore high speed buses, expensive card connectors to provide wide buses etc. The cost of all these elements has become a significant problem when trying to improve the cost/performance of large multiprocessor systems.
  • Multiprocessor systems which rely on directories to track the access of local memory by remote requesters, as exemplified by the Sequent NUMA-Q design (“STiNG: A CC-NUMA Computer System for the Commercial Marketplace”, in Proc. 23rd International Symposium of Computer Architecture, May 1996) work to reduce the address bandwidth required for large numbers of processors. They do so at the expense of large RAM directories and an increase in protocol complexity and hardware support.
  • This type of design also depends upon an assumption that the majority of the main storage lines referenced by a particular software process is located on the same physical node as the node that the processor that is executing the workload is currently dispatched on.
  • One goal of the current invention is to allow the movement of the execution of a workload quickly and easily among many processors without the need to move main storage contents and without significant performance degradation.
  • Hagersten et al. U.S. Pat. No. 5,852,716 describes the use of multiple address partitions in order to define cache coherent operations which are either “local” and confined to a subset of processors in a large multiprocessor or “global” and therefore broadcast to all processors.
  • a local transaction in Hagersten is defined as one which has physical memory allocated to the same subset of processing nodes as the subset to which the processor which originates the storage request belongs.
  • the description beginning on in 63 of column 7 of U.S. Pat. No. 5,852,716 makes it clear that this prior-art invention does not allow the movement of a process between what is referred to as “local domains” without either moving the physical storage associated with that process or by changing the addressing mode to “global”.
  • the preferred embodiment of our invention works to allow the movement of a process between nodes of a large multiprocessor without moving physical storage contents and without requiring subsequent broadcasting of the storage references, originated by the process, to all of the caches in the multiprocessor.
  • the preferred embodiment of our invention is embodied in a multiprocessor computer system having a plurality of nodes and which uses processor state information to determine which coherent caches in the system are required to examine a coherency transaction produced by a single originating processor's storage request.
  • Our invention reduces the number of caches in a multiprocessor system that must be examined during a cache coherency transaction and therefore reduces the time and address bandwidth required to complete the transaction. Still, the computer system of the preferred embodiment the ability to quickly and easily move workload among the physical processors in the system. The reduction in the number of caches involved in any single transaction allows systems using the invention to complete cache coherency operations much faster than prior-art designs for some types of storage requests which are common in important workloads.
  • the preferred embodiment of the multiprocessor system which has multiple and many processors provides “cache coherence regions” which encompass subsets of the total number of processors and caches in the system.
  • the cache coherence regions are chosen for their physical proximity. The physical proximity allows for a hardware system design which has low latency for coherence operations which are confined to cache coherence regions which have fewer processors than the total number of processors in the system.
  • the hardware uses only a subset of the total processors in a large system for a single workload at any specific point in time and can optimize the cache coherency as the supervisor software or firmware expands and contracts the number of processors which are being used to run any single workload.
  • the preferred embodiment of the invention is in a system which uses logical partitioning. Each partition operates on its own address space and therefore a distinct cache coherency region can be defined for each partition. The preferred embodiment of the current invention uses such a hypervisor. While this partitioned system is our preferred embodiment, an alternative embodiment of many features of the invention can work with a single operating system or application.
  • the invention allows more independent workloads to coexist on the same hardware as compared to prior-art designs.
  • the invention is well suited for use in a system whose hardware and software supports logical partitioning of a multiprocessor system, it should be understood that the invention can also be used in systems which don't have such hardware and software support. Any software or firmware which can identify separate processes which have instruction streams that operate on independent main storage locations can use the invention.
  • the preferred embodiment of our invention uses cache coherence mode bits to eliminate the need for some coherency transaction broadcasts.
  • the mode bits are appended to a processor's storage transactions when they are transmitted on the bus network connecting the processors of a multiprocessor system.
  • the cache coherency controls are designed such that the mode bits are used in the decision of whether the storage request must be transmitted to additional processors in the system.
  • One advantage of the invention is that it allows an increase in the effective utilization of the address bandwidth of the buses used to interconnect the processors of a multiprocessor system.
  • a second advantage is that the invention allows easy movement of workload among physical processors in a multiprocessor system at the same time as reducing the address bandwidth required to maintain cache coherency among all the processors.
  • FIG. 1 illustrates a block diagram of one embodiment of one node of a computer with dynamic coherency boundaries.
  • FIG. 2 shows how multiple instances of node of the computer from FIG. 1 can be connected with a second level controller to create a large multiprocessor system.
  • FIG. 3 shows a single processing element from FIG. 1 .
  • FIG. 4 illustrates a table that describes how the node controller uses the mode bits to determine which processors must receive any given transaction that is received by the node controller.
  • FIG. 5 shows a table that describes how the second level controller uses the mode bits to determine which nodes must receive any given transaction that is received by the second level controller.
  • FIG. 6 shows one possible mapping of logical partitions to allowable physical processors.
  • FIG. 1 a block diagram of one embodiment of one node ( 10 ) of a computer with dynamic coherency boundaries is shown.
  • FIG. 1 shows a plurality of processors P 0 -P 3 , each with a cache, attached to a local node controller ( 11 ).
  • the local controller connects multiple processors together with a DRAM main storage element ( 12 ). Storage transactions that are initiated by a single processor are transmitted to the node controller which may in turn transmit the transaction to any or all of the other processors in the node.
  • the node controller may also transmit the transaction on bus ( 13 ) to other parts of the computing system which contains additional processors (not shown).
  • FIG. 2 shows how multiple instances of node ( 10 ) from FIG.
  • FIG. 1 can be connected with a second level controller ( 15 ) to create a large multiprocessor system.
  • FIG. 1 shows the use of 4 processing elements but it should be understood that any number of processing elements could be used.
  • FIG. 1 shows only 1 memory element but it should be understood that any number of memory elements could be used.
  • the preferred embodiment uses the hierarchical bus organization shown in FIGS. 1 and 2 , but the invention can be applied to multiprocessor systems that use any other type of interconnect topology.
  • FIG. 3 shows a single processing element from FIG. 1 .
  • the invention uses one or more coherency mode bits ( 16 ) for each processor in the multiprocessor system.
  • the coherency mode bits associated with a processor are sent together with each storage transaction that is initiated by that processor when the transaction is transmitted to the node controller via bus ( 17 ) on FIG. 3 .
  • bus ( 17 ) on FIG. 3 It should be understood that a node controller is used in this embodiment but could be replaced with a simple physical bus in other embodiments.
  • the cache coherency hardware in node controller ( 11 ) and second level controller ( 15 ) use the mode bits associated with each transaction to determine which caches must participate in any storage transactions that they receive from any of the processors.
  • the preferred embodiment uses 3 mode bits.
  • a coherency mode setting of “000” is used to define a coherency region of just a single processor as shown by dashed lines ( 10 ′) in FIG. 1 . Any of the other 3 processors could be used in a single processor coherency region also.
  • a coherency mode setting of “001” is used to define a coherency region of two processors as shown by dashed lines ( 18 ) and ( 19 ) in FIG. 1 .
  • the current embodiment allows the hypervisor to define two-processor coherency regions that cover either (P 0 and P 1 ) or (P 2 and P 3 ) in order to simplify the hardware controls required in the node controller.
  • a coherency mode setting of “010” is used to define a coherency region that includes all of the processors of a single node as shown by dashed line ( 20 ) in FIG. 1 .
  • a setting of “101” defines a coherency region that includes two nodes as shown by dashed lines ( 21 ) and ( 22 ) in FIG. 2 .
  • a processor with a setting of “111” indicates that all storage transactions generated must be sent to all the caches in the entire system.
  • the coherency mode setting is considered part of the state of a logical partition and therefore part of the state of the logical processors which are defined in that partition.
  • all logical processors from a single logical partition have the same coherency mode setting at a single point in time.
  • additional software or firmware could be used to define processes within a single partition which use an isolated set of storage addresses and therefore could be provided a different coherency mode setting and a different set of allowable physical processors to be used for dispatch.
  • the physical processor temporarily takes on the coherency mode setting of the logical processor.
  • the coherency mode bits are sent with all storage transactions generated by the processor when they are transmitted to the node controller ( 11 ).
  • the current invention provides hardware and firmware controls in the node controller ( 11 ) and second level controller ( 15 ) which use the coherency mode bits that accompany each bus transaction to determine how to route the transaction over the buses which interconnect the processors in the system.
  • FIG. 4 shows a table that describes how the node controller uses the mode bits to determine which processors must receive any given transaction that is received by the node controller.
  • FIG. 5 shows a table that describes how the second level controller uses the mode bits to determine which nodes must receive any given transaction that is received by the second level controller.
  • FIG. 6 shows one possible mapping of logical partitions to allowable physical processors. In the current embodiment, the node controller will forward all transactions received from the secondary node controller to all the processors connected to the node controller. It should be understood that there are many other potential coherency boundaries that could be established which would require the node controller to transmit requests which come from the second level node controller to just a subset of processors connected to the second level node controller.
  • the mode bits for each logical processor are set by hypervisor software. It should be understood that the bits could alternatively be set by suitable hardware or firmware controls. Since the coherency mode bits control which processors will be included in the broadcast of any transaction, the hypervisor software must carefully control the setting and changing of the mode bits to maintain accurate cache coherency. Our preferred embodiment adds additional function to a prior-art software hypervisor to perform the function of setting the mode bits.
  • a hypervisor divides the physical memory resource of a computing system into 2 or more partitions. The hypervisor insures that there is no overlap between the main storage addresses of the multiple partitions. The current invention requires that the hypervisor assign a coherency mode setting to each of the logical partitions in the system.
  • the hypervisor must insure that the value of the setting is used when determining which physical processors can be used to host the logical processors from that logical partition.
  • the decision of whether a physical processor can be used to host a specific logical processor involves both the prior setting of the mode bits and the set of processors that have hosted the partition since the last change of the mode bits.
  • FIG. 6 shows one potential mapping of logical partitions and physical processors.
  • the hypervisor must keep a software image of this type of mapping to insure cache coherency when using the current invention. As shown in FIG. 6 , partition 5 has been established with coherency mode “101”. Mode “101” represents a coherency region of two nodes and the initial setting has been chosen to use node 2 and node 3 .
  • processor 0 of node 2 and processor 1 of node 2 can be used to host logical processors from either partition 2 or partition 5 .
  • the hypervisor chooses to dispatch a new logical processor on a physical processor it must always consult a software table like FIG. 6 and properly set the coherency mode bits of the physical processor with the settings associated with the partition to be dispatched. This setting of the coherency mode bits must happen before the first storage reference of the newly dispatched logical processor.
  • the hypervisor may change either the coherency mode bit settings associated with a logical partition or the allowable physical processors associated with a partition or both.
  • a change in the allowable physical processors must follow the following procedure.
  • Partition 0 in FIG. 6 is shown to have a coherency mode setting of “000”. It is also shown in FIG. 6 that partition 0 can only be dispatched on processor 2 of node 0 . If the hypervisor needs to move the dispatching of logical partition 0 to some other processor in the system which is not currently included in the coherency boundary established for that partition, then it must first stop dispatching all logical processors from that logical partition.
  • the hypervisor must initiate a purge of the caches of processor 2 node 0 (this could be a selective purge based on the logical partition ID if the hardware supports selective purges).
  • the hypervisor must update the software table shown in FIG. 6 to include the new allowable physical processors, in this case processor 3 of node 3 .
  • the hypervisor can begin to dispatch the logical processors of partition 0 on processor 3 of node 3 .
  • the hypervisor may change coherency mode bits for a specific logical partition in order to increase then number of physical processors that can be used or to decrease the number of processors and therefore reduce the total system address bandwidth consumed by that partition.
  • Partition 0 could be changed from “000” to “001” which would change the allowable logical processors from just processor 2 of node 0 to both processor 2 of node 0 and processor 3 of node 0 .
  • Changing to a mode which decreases the number of physical processors must include a cache purge operation on the physical processors which are being eliminated from the allowable processor list in table 6 .
  • the hypervisor must stop dispatching any logical processors from partition 2 .
  • the hypervisor must initiate a purging of the caches on processor 1 of node 2 .
  • the hypervisor must update table 6 to reflect the new coherency mode bit setting of “000” and the new allowable processor entry of just processor 0 of node 2 .
  • the hypervisor can begin dispatching the logical processors of partition 2 on physical processor 0 of node 2 .
  • the mode bits are set to “000” the node controller does not transmit the transaction to any additional processors or nodes.

Abstract

A multiprocessor computer system has a plurality of processing nodes which use processor state information to determine which coherent caches in the system are required to examine a coherency transaction produced by a single originating processor's storage request. A node of the computer has dynamic coherency boundaries such that the hardware uses only a subset of the total processors in a large system for a single workload at any specific point in time and can optimize the cache coherency as the supervisor software or firmware expands and contracts the number of processors which are being used to run any single workload. Multiple instances of a node can be connected with a second level controller to create a large multiprocessor system. The node controller uses the mode bits to determine which processors must receive any given transaction that is received by the node controller. The second level controller uses the mode bits to determine which nodes must receive any given transaction that is received by the second level controller. Logical partitions are mapped to allowable physical processors. Cache coherence regions which encompass subsets of the total number of processors and caches in the system are chosen for their physical proximity. A distinct cache coherency region can be defined for each partition using a hypervisor.

Description

    RELATED APPLICATIONS
  • This application is a division of U.S. Ser. No. 10/603,251, filed Jun. 25, 2003, entitled “Multiprocessor System with Dynamic Cache Coherency Regions”, and is related to an application entitled: “Multiprocessor computer system having multiple coherency regions and software process migration between coherency regions without cache purges” U.S. Ser. No. 10/603,252, filed Jun. 25, 2003.
  • FIELD OF THE INVENTION
  • This invention relates to a multiprocessor computer system having a plurality of nodes and particularly to one which uses processor state information to determine which coherent caches in the system are require examination during the processing of a coherency transaction produced by a single originating processor's storage request.
  • These co-pending applications and the present application are owned by one and the same assignee, International Business Machines Corporation of Armonk, N.Y.
  • The description set forth in these co-pending application is hereby incorporated into the present application by this reference.
  • Trademarks: IBM® is a registered trademark of International Business Machines Corporation, Armonk, N.Y., U.S.A. Other names may be registered trademarks or product names of International Business Machines Corporation or other companies. BACKGROUND OF THE INVENTION
  • The idle time spent by computer processors while waiting for memory references to complete has become a much larger fraction of the total execution time for a wide variety of important commercial and technical computing workloads. Many prior-art techniques have been used in multiprocessor system designs to minimize the time a processor must wait while the access of main storage locations is completed. These techniques fall broadly into two categories. The first category of techniques attempts to find additional instructions for the processors to execute while waiting for the memory reference which is experiencing a delay. These techniques include such hardware and software mechanisms as out of order execution and multithreading. The second category of techniques focuses on minimizing the latency of the memory reference itself, e.g. SRAM caches, DRAM caches and high speed multiprocessor bus architectures. SRAM and DRAM caches have been extremely successful in reducing memory reference latency and one or both are used by all current multiprocessor designs. Prior-art cache designs include specialized hardware and software which maintain cache coherence for multiprocessor systems. For systems which connect a plurality of processors via a shared bus, a snoop bus protocol is typically employed. Each coherent transaction performed upon the shared bus is examined (or “snooped”) against data in the caches of all other devices attached to the bus. If a copy of the affected data is found, the state of the cache line containing the data may be updated in response to the coherent transaction.
  • Although caches have worked well for multiprocessor systems with a moderate number of processors, prior-art multiprocessor designs do not scale well when extended to large numbers of processors for many important workloads including the transaction and database workload simulated by the TPC-C benchmark.
  • Logical partitioning, as described in U.S. Pat. No. 4,843,541, when using shared processors also causes poor scaling for prior-art system designs when extended to large numbers of processors. U.S. Pat. No. 4,843,541 shows how a virtual machine hypervisor program can be used to “partition the resources in a central electronic complex of a data processing system into a plurality of logical partitions”. Logical partitioning is widely used on large multiprocessor systems to run many workloads that operate on private data simultaneously. In a typical system employing logical partitioning, an operating system instance is initialized within each logical partition. The logical partition can have from 1 to n logical processors. The hypervisor is responsible to dispatch each of the logical processors onto a physical processor. If a physical processor is the host of just a single logical processor over a long period of time it is said to be “dedicated” to that logical processor's partition. If a physical processor is the host of the logical processors from multiple partitions it is said to be a “shared” processor. It is desirable, from an overall hardware utilization point of view, for a large multiprocessor system to allow the flexibility of defining many or most of the physical processors as “shared” and allowing the movement of logical processors among the physical processors of the multiprocessor as the utilization of the physical processors fluctuates with external changes. Prior-art multiprocessor cache designs do not scale well for these partitioned workloads, especially when the physical processors are defined as “shared”.
  • A large factor in the poor performance scaling of large multiprocessors for both the large single database workload and the shared logical partition case is the relationship between increasing numbers of processors and the time delay required to communicate among them. Snoop bus protocols require memory references that miss local caches to be broadcast to all caches which may contain a copy of the requested lines, typically all other caches in the system. The bus bandwidth required to distribute the addresses and responses for large multiprocessor systems is very high. The need to provide the required high bandwidth has driven prior-art designs to use switch chips with many wide ports, expensive chip carriers to provide the needed pins, expensive card technology to provide good electrical characteristics and therefore high speed buses, expensive card connectors to provide wide buses etc. The cost of all these elements has become a significant problem when trying to improve the cost/performance of large multiprocessor systems.
  • Prior-art designs have attempted to solve these two problems, coherency operation latency and address bandwidth limitations, in many different ways but each has imposed other costs on the system design which the current invention seeks to avoid.
  • Large shared caches, as exemplified in the IBM S/390 G4 design (IBM Journal of Research and Development Volume 41, Numbers 4&5, 1997) have been used in prior-art designs to address both problems. The interconnection of a few large shared caches does provide good latency for requests which hit in the shared cache. The inclusive shared cache also acts as a filter which eliminates the need to broadcast addresses to all of the processors in the system for some cases. The design does not scale well to large numbers of processors. The use of additional processors drives the design to using large multichip modules with many wiring layers and L2 cache chips with an extremely large number of I/O required to provide a port for each of the processors connected.
  • Multiprocessor systems which rely on directories to track the access of local memory by remote requesters, as exemplified by the Sequent NUMA-Q design (“STiNG: A CC-NUMA Computer System for the Commercial Marketplace”, in Proc. 23rd International Symposium of Computer Architecture, May 1996) work to reduce the address bandwidth required for large numbers of processors. They do so at the expense of large RAM directories and an increase in protocol complexity and hardware support. This type of design also depends upon an assumption that the majority of the main storage lines referenced by a particular software process is located on the same physical node as the node that the processor that is executing the workload is currently dispatched on. There are severe performance penalties for cases where a workload is accessing a large number of remote lines since the number of lines that can be “checked out” by remote nodes is limited by the size of the NUMA directories. One goal of the current invention is to allow the movement of the execution of a workload quickly and easily among many processors without the need to move main storage contents and without significant performance degradation.
  • Hagersten et al., U.S. Pat. No. 5,852,716 describes the use of multiple address partitions in order to define cache coherent operations which are either “local” and confined to a subset of processors in a large multiprocessor or “global” and therefore broadcast to all processors. A local transaction in Hagersten is defined as one which has physical memory allocated to the same subset of processing nodes as the subset to which the processor which originates the storage request belongs. The description beginning on in 63 of column 7 of U.S. Pat. No. 5,852,716 makes it clear that this prior-art invention does not allow the movement of a process between what is referred to as “local domains” without either moving the physical storage associated with that process or by changing the addressing mode to “global”.
  • We have determined that there is a need for techniques to reduce transmission of address requests between various processors in a multiprocessor computer system without using large amounts of SRAM directory and without requiring the movement of main storage contents. In developing solutions for fulfilling this need we have determined that there is an associated need to reduce the latency of all storage reference transactions in large multiprocessor systems.
  • SUMMARY OF THE INVENTION
  • In fulfilling these determined needs, we have software and/or firmware to define which subset of processors in a large multiprocessor must participate in a coherency transaction independent of which processing node is connected to the physical DRAM storage being requested. The preferred embodiment of our invention works to allow the movement of a process between nodes of a large multiprocessor without moving physical storage contents and without requiring subsequent broadcasting of the storage references, originated by the process, to all of the caches in the multiprocessor. The preferred embodiment of our invention is embodied in a multiprocessor computer system having a plurality of nodes and which uses processor state information to determine which coherent caches in the system are required to examine a coherency transaction produced by a single originating processor's storage request.
  • Our invention reduces the number of caches in a multiprocessor system that must be examined during a cache coherency transaction and therefore reduces the time and address bandwidth required to complete the transaction. Still, the computer system of the preferred embodiment the ability to quickly and easily move workload among the physical processors in the system. The reduction in the number of caches involved in any single transaction allows systems using the invention to complete cache coherency operations much faster than prior-art designs for some types of storage requests which are common in important workloads.
  • The preferred embodiment of the multiprocessor system which has multiple and many processors provides “cache coherence regions” which encompass subsets of the total number of processors and caches in the system. The cache coherence regions are chosen for their physical proximity. The physical proximity allows for a hardware system design which has low latency for coherence operations which are confined to cache coherence regions which have fewer processors than the total number of processors in the system.
  • The hardware uses only a subset of the total processors in a large system for a single workload at any specific point in time and can optimize the cache coherency as the supervisor software or firmware expands and contracts the number of processors which are being used to run any single workload. The preferred embodiment of the invention is in a system which uses logical partitioning. Each partition operates on its own address space and therefore a distinct cache coherency region can be defined for each partition. The preferred embodiment of the current invention uses such a hypervisor. While this partitioned system is our preferred embodiment, an alternative embodiment of many features of the invention can work with a single operating system or application.
  • By defining multiple cache coherent regions, the invention allows more independent workloads to coexist on the same hardware as compared to prior-art designs. Although the invention is well suited for use in a system whose hardware and software supports logical partitioning of a multiprocessor system, it should be understood that the invention can also be used in systems which don't have such hardware and software support. Any software or firmware which can identify separate processes which have instruction streams that operate on independent main storage locations can use the invention.
  • The preferred embodiment of our invention uses cache coherence mode bits to eliminate the need for some coherency transaction broadcasts. The mode bits are appended to a processor's storage transactions when they are transmitted on the bus network connecting the processors of a multiprocessor system. The cache coherency controls are designed such that the mode bits are used in the decision of whether the storage request must be transmitted to additional processors in the system.
  • The advantages of the invention are numerous. One advantage of the invention is that it allows an increase in the effective utilization of the address bandwidth of the buses used to interconnect the processors of a multiprocessor system. A second advantage is that the invention allows easy movement of workload among physical processors in a multiprocessor system at the same time as reducing the address bandwidth required to maintain cache coherency among all the processors.
  • These and other improvements are set forth in the following detailed description. For a better understanding of the invention with advantages and features, refer to the description and to the drawings.
  • DESCRIPTION OF THE DRAWINGS
  • FIG. 1 illustrates a block diagram of one embodiment of one node of a computer with dynamic coherency boundaries.
  • FIG. 2 shows how multiple instances of node of the computer from FIG. 1 can be connected with a second level controller to create a large multiprocessor system.
  • FIG. 3 shows a single processing element from FIG. 1.
  • FIG. 4 illustrates a table that describes how the node controller uses the mode bits to determine which processors must receive any given transaction that is received by the node controller.
  • FIG. 5 shows a table that describes how the second level controller uses the mode bits to determine which nodes must receive any given transaction that is received by the second level controller.
  • FIG. 6 shows one possible mapping of logical partitions to allowable physical processors.
  • Our detailed description explains the preferred embodiments of our invention, together with advantages and features, by way of example with reference to the drawings.
  • DETAILED DESCRIPTION OF THE INVENTION
  • Turning now to FIG. 1, a block diagram of one embodiment of one node (10) of a computer with dynamic coherency boundaries is shown. FIG. 1 shows a plurality of processors P0-P3, each with a cache, attached to a local node controller (11). The local controller connects multiple processors together with a DRAM main storage element (12). Storage transactions that are initiated by a single processor are transmitted to the node controller which may in turn transmit the transaction to any or all of the other processors in the node. The node controller may also transmit the transaction on bus (13) to other parts of the computing system which contains additional processors (not shown). FIG. 2 shows how multiple instances of node (10) from FIG. 1 can be connected with a second level controller (15) to create a large multiprocessor system. FIG. 1 shows the use of 4 processing elements but it should be understood that any number of processing elements could be used. FIG. 1 shows only 1 memory element but it should be understood that any number of memory elements could be used. The preferred embodiment uses the hierarchical bus organization shown in FIGS. 1 and 2, but the invention can be applied to multiprocessor systems that use any other type of interconnect topology.
  • FIG. 3 shows a single processing element from FIG. 1. The invention uses one or more coherency mode bits (16) for each processor in the multiprocessor system. The coherency mode bits associated with a processor are sent together with each storage transaction that is initiated by that processor when the transaction is transmitted to the node controller via bus (17) on FIG. 3. It should be understood that a node controller is used in this embodiment but could be replaced with a simple physical bus in other embodiments. The cache coherency hardware in node controller (11) and second level controller (15) use the mode bits associated with each transaction to determine which caches must participate in any storage transactions that they receive from any of the processors. The preferred embodiment uses 3 mode bits. The 3 mode bits are used together to identify the following modes of operation for the node controller and secondary controller. A coherency mode setting of “000” is used to define a coherency region of just a single processor as shown by dashed lines (10′) in FIG. 1. Any of the other 3 processors could be used in a single processor coherency region also. A coherency mode setting of “001” is used to define a coherency region of two processors as shown by dashed lines (18) and (19) in FIG. 1. The current embodiment allows the hypervisor to define two-processor coherency regions that cover either (P0 and P1) or (P2 and P3) in order to simplify the hardware controls required in the node controller. Other embodiments could allow other combinations, such as P0 from node 1 and P0 from node 2. A coherency mode setting of “010” is used to define a coherency region that includes all of the processors of a single node as shown by dashed line (20) in FIG. 1. A setting of “101” defines a coherency region that includes two nodes as shown by dashed lines (21) and (22) in FIG. 2. Finally, a processor with a setting of “111” indicates that all storage transactions generated must be sent to all the caches in the entire system.
  • The coherency mode setting is considered part of the state of a logical partition and therefore part of the state of the logical processors which are defined in that partition. In the current embodiment, all logical processors from a single logical partition have the same coherency mode setting at a single point in time. It should be understood that additional software or firmware could be used to define processes within a single partition which use an isolated set of storage addresses and therefore could be provided a different coherency mode setting and a different set of allowable physical processors to be used for dispatch. When a logical processor is dispatched onto a physical single processor the physical processor temporarily takes on the coherency mode setting of the logical processor. The coherency mode bits are sent with all storage transactions generated by the processor when they are transmitted to the node controller (11). Since many logical partitions can be defined and used at once, many different and overlapping coherency regions are used at the same time. The current invention provides hardware and firmware controls in the node controller (11) and second level controller (15) which use the coherency mode bits that accompany each bus transaction to determine how to route the transaction over the buses which interconnect the processors in the system.
  • FIG. 4 shows a table that describes how the node controller uses the mode bits to determine which processors must receive any given transaction that is received by the node controller. FIG. 5 shows a table that describes how the second level controller uses the mode bits to determine which nodes must receive any given transaction that is received by the second level controller. FIG. 6 shows one possible mapping of logical partitions to allowable physical processors. In the current embodiment, the node controller will forward all transactions received from the secondary node controller to all the processors connected to the node controller. It should be understood that there are many other potential coherency boundaries that could be established which would require the node controller to transmit requests which come from the second level node controller to just a subset of processors connected to the second level node controller.
  • The mode bits for each logical processor are set by hypervisor software. It should be understood that the bits could alternatively be set by suitable hardware or firmware controls. Since the coherency mode bits control which processors will be included in the broadcast of any transaction, the hypervisor software must carefully control the setting and changing of the mode bits to maintain accurate cache coherency. Our preferred embodiment adds additional function to a prior-art software hypervisor to perform the function of setting the mode bits. A hypervisor divides the physical memory resource of a computing system into 2 or more partitions. The hypervisor insures that there is no overlap between the main storage addresses of the multiple partitions. The current invention requires that the hypervisor assign a coherency mode setting to each of the logical partitions in the system. The hypervisor must insure that the value of the setting is used when determining which physical processors can be used to host the logical processors from that logical partition. The decision of whether a physical processor can be used to host a specific logical processor involves both the prior setting of the mode bits and the set of processors that have hosted the partition since the last change of the mode bits. FIG. 6 shows one potential mapping of logical partitions and physical processors. The hypervisor must keep a software image of this type of mapping to insure cache coherency when using the current invention. As shown in FIG. 6, partition 5 has been established with coherency mode “101”. Mode “101” represents a coherency region of two nodes and the initial setting has been chosen to use node 2 and node 3.
  • A careful examination of the table in FIG. 6 shows that processor 0 of node 2 and processor 1 of node 2 can be used to host logical processors from either partition 2 or partition 5. When the hypervisor chooses to dispatch a new logical processor on a physical processor it must always consult a software table like FIG. 6 and properly set the coherency mode bits of the physical processor with the settings associated with the partition to be dispatched. This setting of the coherency mode bits must happen before the first storage reference of the newly dispatched logical processor.
  • The hypervisor may change either the coherency mode bit settings associated with a logical partition or the allowable physical processors associated with a partition or both. A change in the allowable physical processors must follow the following procedure. Partition 0 in FIG. 6 is shown to have a coherency mode setting of “000”. It is also shown in FIG. 6 that partition 0 can only be dispatched on processor 2 of node 0. If the hypervisor needs to move the dispatching of logical partition 0 to some other processor in the system which is not currently included in the coherency boundary established for that partition, then it must first stop dispatching all logical processors from that logical partition. Second, the hypervisor must initiate a purge of the caches of processor 2 node 0 (this could be a selective purge based on the logical partition ID if the hardware supports selective purges). Third, the hypervisor must update the software table shown in FIG. 6 to include the new allowable physical processors, in this case processor 3 of node 3. Finally it can begin to dispatch the logical processors of partition 0 on processor 3 of node 3.
  • The hypervisor may change coherency mode bits for a specific logical partition in order to increase then number of physical processors that can be used or to decrease the number of processors and therefore reduce the total system address bandwidth consumed by that partition. Changing to a mode which increases the number of physical processors, from “000” to “001” for example, only requires that the hypervisor stop dispatching the logical processors for the partition and change the mode in table 6. Partition 0 could be changed from “000” to “001” which would change the allowable logical processors from just processor 2 of node 0 to both processor 2 of node 0 and processor 3 of node 0. Changing to a mode which decreases the number of physical processors must include a cache purge operation on the physical processors which are being eliminated from the allowable processor list in table 6. For example, if the coherency mode bits for logical partition 2 shown in table 6 are changed from “001” to “000” and processor 1 of node 2 is removed from the allowable list, the following steps must be taken. The hypervisor must stop dispatching any logical processors from partition 2. The hypervisor must initiate a purging of the caches on processor 1 of node 2. The hypervisor must update table 6 to reflect the new coherency mode bit setting of “000” and the new allowable processor entry of just processor 0 of node 2. After completing these steps, the hypervisor can begin dispatching the logical processors of partition 2 on physical processor 0 of node 2. When the mode bits are set to “000” the node controller does not transmit the transaction to any additional processors or nodes.
  • Although our preferred embodiment uses a hypervisor, it should be understood that any hardware, firmware or software mechanism which can provide the required function could be used to control the setting of the coherency mode registers.
  • While the preferred embodiment to the invention has been described, it will be understood that those skilled in the art, both now and in the future, may make various improvements and enhancements which fall within the scope of the claims which follow. These claims should be construed to maintain the proper protection for the invention first described.

Claims (20)

1. A multiprocessor computer system comprising,
a cache coherent symmetric (SMP) computer system of symmetric multiple processors having a plurality of processing nodes and caches and a node controller which use processor state information according to mappings provided by supervisor software or firmware of allowable physical processors to an application workload to determine which coherent cache regions in the system are required to examine a coherency transaction produced by a storage request of a single originating processor of said computer system and to change coherency boundaries of one or more of said coherent cache regions directly with coherency mode bits for said coherent cache regions, and wherein a hypervisor assigns cache coherence regions which encompass subsets of processors and caches in the system chosen for their physical proximity and defines a distinct cache coherency region for each of said logical partitions.
2. The multiprocessor computer system according to claim 1 wherein a node of said plurality of processing nodes of the computer has dynamic coherency boundaries such that hardware of said computer system uses only a subset of the processors in said computer system for a single workload at any specific point in time and optimizes the cache coherency as the supervisor software or firmware expands and contracts the number of processors which are being used to run any single workload.
3. The multiprocessor computer system according to claim 1 wherein multiple instances of a physical node are connected with a second level controller to create a multiprocessor system having multiple node controllers.
4. The multiprocessor computer system according to claim 1 wherein said node controller uses mode bits to determine which processors must receive any given transaction that is received by the node controller.
5. The multiprocessor computer system according to claim 1 wherein a second level controller is provided which uses mode bits to determine which nodes must receive any given transaction that is received by the second level controller.
6. The multiprocessor computer system according to claim 1 wherein logical partitions are provided and mapping of said logical partitions to allowable physical processors is provided by supervisor software or firmware of allowable physical processors to an application workload.
7. The multiprocessor computer system according to claim 1 wherein logical partitions are provided for the supervisor software or firmware which maps allowable physical processors to an application workload.
8. The multiprocessor computer system according to claim 1 wherein a single workload uses only a subset of the total processors in the computer system for a single workload at any specific point in time for an assigned partition and a distinct cache coherency for the address space of the assigned partition as the supervisor software or firmware expands and contracts the number of processors which are being used to run any single workload in said assigned partition.
9. The multiprocessor computer system according to claim 1 wherein a single workload uses only a subset of the total processors in the computer system for a single workload at any specific point in time, and multiple cache coherent regions are assigned for different partitions as more independent workloads coexist on said hardware.
10. The multiprocessor computer system according to claim 1 wherein cache coherence regions encompass subsets of processors and caches in the computer system and a single workload uses only a subset of the total processors in the computer system for a single workload at any specific point in time for an assigned partition and a distinct cache coherency for the address space of the assigned partition as the supervisor software or firmware expands and contracts the number of processors which are being used to run any single workload in said assigned partition.
11. The multiprocessor computer system according to claim 1 wherein software and/or firmware define which subset of processors in said multiprocessor must participate in a coherency transaction independent of which processing node is connected to physical DRAM storage being requested by said single originating processor.
12. The multiprocessor computer system according to claim 11 wherein the movement of a process between nodes of said symmetric multiple processors of said multiprocessor is effectuated without moving physical storage contents and without requiring subsequent broadcasting of the storage references originated by the process from said single originating processor's storage request to all of the caches in the multiprocessor.
13. The multiprocessor computer system according to claim 1 wherein cache coherence mode bits are appended to a processor's storage transactions when transmitted to a connected processor of said multiprocessor computer system.
14. The multiprocessor computer system according to claim 13 wherein said cache coherence mode bits are used in a decision determining whether the single originating processor's storage request must be transmitted to additional processors in the system.
15. The multiprocessor computer system according to claim 14 wherein an increase in the effective utilization of the address bandwidth of the buses used to interconnect the processors of a multiprocessor system allows movement of workload among physical processors in a multiprocessor system at the same time as a reduction of the address bandwidth required to maintain cache coherency among all the processors is caused.
16. A method of managing cache coherence of a computer system, comprising:
providing a plurality of logical partitions which are defined based upon computing environment requirements,
defining a plurality of coherent cache regions,
mapping logical partitions to said coherent cache regions, and
determining coherency mode bits for each partitions and writing said coherency mode bits to a state of said partitions, and
associating said coherency mode bits with a partition be dispatched by hypervisor dispatch, whereby
a hypervisor assigns cache coherence regions which encompass subsets of processors and caches in said computer system chosen for their physical proximity and defines a distinct cache coherency region for each of said logical partitions.
17. The method according to claim 16 wherein said coherency boundaries for one or more of said logical partitions are changed after a need for a change occurs due to system or workload requirements.
18. The method according to claim 16 wherein a partition has it matching changed when cache coherency regions are to be added by changing coherency mode bits for that partition to include a larger region.
19. The method according to claim 16 wherein if a coherency region does not include all nodes of an old regions, then said hypervisor dispatch is stopped, and caches of nodes are selectively purged and coherency mode bits for the partition are changed and then normal hypervisor dispatch is resumed.
20. The method according to claim 16 wherein a change in cache coherency regions is initiated by a virtual control program.
US12/037,172 2003-06-25 2008-02-26 Multiprocessor System With Dynamic Cache Coherency Regions Abandoned US20080147988A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US12/037,172 US20080147988A1 (en) 2003-06-25 2008-02-26 Multiprocessor System With Dynamic Cache Coherency Regions

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US10/603,251 US7484043B2 (en) 2003-06-25 2003-06-25 Multiprocessor system with dynamic cache coherency regions
US12/037,172 US20080147988A1 (en) 2003-06-25 2008-02-26 Multiprocessor System With Dynamic Cache Coherency Regions

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US10/603,251 Division US7484043B2 (en) 2003-06-25 2003-06-25 Multiprocessor system with dynamic cache coherency regions

Publications (1)

Publication Number Publication Date
US20080147988A1 true US20080147988A1 (en) 2008-06-19

Family

ID=33539692

Family Applications (2)

Application Number Title Priority Date Filing Date
US10/603,251 Active 2025-07-21 US7484043B2 (en) 2003-06-25 2003-06-25 Multiprocessor system with dynamic cache coherency regions
US12/037,172 Abandoned US20080147988A1 (en) 2003-06-25 2008-02-26 Multiprocessor System With Dynamic Cache Coherency Regions

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US10/603,251 Active 2025-07-21 US7484043B2 (en) 2003-06-25 2003-06-25 Multiprocessor system with dynamic cache coherency regions

Country Status (2)

Country Link
US (2) US7484043B2 (en)
WO (1) WO2005001693A2 (en)

Cited By (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090313436A1 (en) * 2008-06-12 2009-12-17 Microsoft Corporation Cache regions
US20090313438A1 (en) * 2008-06-12 2009-12-17 Microsoft Corporation Distributed cache arrangement
CN102460403A (en) * 2009-06-11 2012-05-16 飞思卡尔半导体公司 Processor and method for dynamic and selective alteration of address translation
US20150026432A1 (en) * 2013-07-18 2015-01-22 International Business Machines Corporation Dynamic formation of symmetric multi-processor (smp) domains
US20150089155A1 (en) * 2013-09-26 2015-03-26 International Business Machines Corporation Centralized management of high-contention cache lines in multi-processor computing environments
US9292444B2 (en) 2013-09-26 2016-03-22 International Business Machines Corporation Multi-granular cache management in multi-processor computing environments
US9298623B2 (en) 2013-09-26 2016-03-29 Globalfoundries Inc. Identifying high-conflict cache lines in transactional memory computing environments
US9298626B2 (en) 2013-09-26 2016-03-29 Globalfoundries Inc. Managing high-conflict cache lines in transactional memory computing environments
US9329890B2 (en) 2013-09-26 2016-05-03 Globalfoundries Inc. Managing high-coherence-miss cache lines in multi-processor computing environments
US10372638B2 (en) 2017-10-20 2019-08-06 Hewlett Packard Enterprise Development Lp Interconnect agent
US10970213B2 (en) * 2019-04-30 2021-04-06 Hewlett Packard Enterprise Development Lp Selective disabling of hardware-based cache coherency and enforcement of software-based cache coherency

Families Citing this family (47)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7484043B2 (en) * 2003-06-25 2009-01-27 International Business Machines Corporation Multiprocessor system with dynamic cache coherency regions
US7469321B2 (en) * 2003-06-25 2008-12-23 International Business Machines Corporation Software process migration between coherency regions without cache purges
GB0315504D0 (en) * 2003-07-02 2003-08-06 Advanced Risc Mach Ltd Coherent multi-processing system
US8776050B2 (en) * 2003-08-20 2014-07-08 Oracle International Corporation Distributed virtual machine monitor for managing multiple virtual resources across multiple physical nodes
JP4224438B2 (en) * 2004-07-16 2009-02-12 日信工業株式会社 Method for producing carbon fiber composite metal material
US8683139B2 (en) 2006-10-31 2014-03-25 Hewlett-Packard Development Company, L.P. Cache and method for cache bypass functionality
US20080104333A1 (en) * 2006-10-31 2008-05-01 Veazey Judson E Tracking of higher-level cache contents in a lower-level cache
US7941499B2 (en) * 2007-03-06 2011-05-10 Freescale Semiconductor, Inc. Interprocessor message transmission via coherency-based interconnect
US7818508B2 (en) * 2007-04-27 2010-10-19 Hewlett-Packard Development Company, L.P. System and method for achieving enhanced memory access capabilities
US20080270708A1 (en) * 2007-04-30 2008-10-30 Craig Warner System and Method for Achieving Cache Coherency Within Multiprocessor Computer System
US7904676B2 (en) * 2007-04-30 2011-03-08 Hewlett-Packard Development Company, L.P. Method and system for achieving varying manners of memory access
US7809970B2 (en) 2007-08-27 2010-10-05 International Business Machines Corporation System and method for providing a high-speed message passing interface for barrier operations in a multi-tiered full-graph interconnect architecture
US7958183B2 (en) * 2007-08-27 2011-06-07 International Business Machines Corporation Performing collective operations using software setup and partial software execution at leaf nodes in a multi-tiered full-graph interconnect architecture
US7793158B2 (en) 2007-08-27 2010-09-07 International Business Machines Corporation Providing reliability of communication between supernodes of a multi-tiered full-graph interconnect architecture
US8108545B2 (en) * 2007-08-27 2012-01-31 International Business Machines Corporation Packet coalescing in virtual channels of a data processing system in a multi-tiered full-graph interconnect architecture
US7840703B2 (en) 2007-08-27 2010-11-23 International Business Machines Corporation System and method for dynamically supporting indirect routing within a multi-tiered full-graph interconnect architecture
US7769891B2 (en) 2007-08-27 2010-08-03 International Business Machines Corporation System and method for providing multiple redundant direct routes between supernodes of a multi-tiered full-graph interconnect architecture
US8185896B2 (en) * 2007-08-27 2012-05-22 International Business Machines Corporation Method for data processing using a multi-tiered full-graph interconnect architecture
US7904590B2 (en) * 2007-08-27 2011-03-08 International Business Machines Corporation Routing information through a data processing system implementing a multi-tiered full-graph interconnect architecture
US8140731B2 (en) * 2007-08-27 2012-03-20 International Business Machines Corporation System for data processing using a multi-tiered full-graph interconnect architecture
US7822889B2 (en) 2007-08-27 2010-10-26 International Business Machines Corporation Direct/indirect transmission of information using a multi-tiered full-graph interconnect architecture
US7958182B2 (en) 2007-08-27 2011-06-07 International Business Machines Corporation Providing full hardware support of collective operations in a multi-tiered full-graph interconnect architecture
US7769892B2 (en) * 2007-08-27 2010-08-03 International Business Machines Corporation System and method for handling indirect routing of information between supernodes of a multi-tiered full-graph interconnect architecture
US8014387B2 (en) 2007-08-27 2011-09-06 International Business Machines Corporation Providing a fully non-blocking switch in a supernode of a multi-tiered full-graph interconnect architecture
US7827428B2 (en) * 2007-08-31 2010-11-02 International Business Machines Corporation System for providing a cluster-wide system clock in a multi-tiered full-graph interconnect architecture
US7921316B2 (en) * 2007-09-11 2011-04-05 International Business Machines Corporation Cluster-wide system clock in a multi-tiered full-graph interconnect architecture
US8782779B2 (en) * 2007-09-26 2014-07-15 Hewlett-Packard Development Company, L.P. System and method for achieving protected region within computer system
US8612973B2 (en) * 2007-09-26 2013-12-17 Hewlett-Packard Development Company, L.P. Method and system for handling interrupts within computer system during hardware resource migration
US9207990B2 (en) * 2007-09-28 2015-12-08 Hewlett-Packard Development Company, L.P. Method and system for migrating critical resources within computer systems
US20090182893A1 (en) * 2008-01-11 2009-07-16 Anand Vaijayanthimala K Cache coherence in a virtual machine managed system
US8077602B2 (en) 2008-02-01 2011-12-13 International Business Machines Corporation Performing dynamic request routing based on broadcast queue depths
US7779148B2 (en) * 2008-02-01 2010-08-17 International Business Machines Corporation Dynamic routing based on information of not responded active source requests quantity received in broadcast heartbeat signal and stored in local data structure for other processor chips
US7979746B2 (en) * 2009-04-27 2011-07-12 Honeywell International Inc. Dual-dual lockstep processor assemblies and modules
US8510512B2 (en) * 2009-08-21 2013-08-13 International Business Machines Corporation Memory coherence directory supporting remotely sourced requests of nodal scope
CN102053946B (en) * 2009-10-30 2014-05-28 国际商业机器公司 Method, equipment and system for processing requests in multi-core system
US9037810B2 (en) 2010-03-02 2015-05-19 Marvell Israel (M.I.S.L.) Ltd. Pre-fetching of data packets
US8417778B2 (en) 2009-12-17 2013-04-09 International Business Machines Corporation Collective acceleration unit tree flow control and retransmit
US8327107B2 (en) * 2010-03-08 2012-12-04 International Business Machines Corporation Volume coherency verification for sequential-access storage media
US8327047B2 (en) 2010-03-18 2012-12-04 Marvell World Trade Ltd. Buffer manager and methods for managing memory
US9098203B1 (en) 2011-03-01 2015-08-04 Marvell Israel (M.I.S.L) Ltd. Multi-input memory command prioritization
US9086980B2 (en) 2012-08-01 2015-07-21 International Business Machines Corporation Data processing, method, device, and system for processing requests in a multi-core system
CN103049422B (en) * 2012-12-17 2013-11-27 浪潮电子信息产业股份有限公司 Method for building multi-processor node system with multiple cache consistency domains
US20160246721A1 (en) * 2015-02-19 2016-08-25 Qualcomm Incorporated Role based cache coherence bus traffic control
US11080192B2 (en) * 2015-05-14 2021-08-03 Hitachi, Ltd. Storage system and storage control method
US10255181B2 (en) * 2016-09-19 2019-04-09 Qualcomm Incorporated Dynamic input/output coherency
US10540286B2 (en) 2018-04-30 2020-01-21 Hewlett Packard Enterprise Development Lp Systems and methods for dynamically modifying coherence domains
US11556471B2 (en) 2019-04-30 2023-01-17 Hewlett Packard Enterprise Development Lp Cache coherency management for multi-category memories

Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5781757A (en) * 1994-10-11 1998-07-14 International Business Machines Corporation Adaptive scalable cache coherence network for a multiprocessor data processing system
US5819061A (en) * 1994-07-25 1998-10-06 International Business Machines Corporation Method and apparatus for dynamic storage reconfiguration in a partitioned environment
US5852716A (en) * 1996-07-02 1998-12-22 Sun Microsystems, Inc. Split-SMP computer system with local domains and a top repeater that distinguishes local and global transactions
US5860114A (en) * 1995-05-10 1999-01-12 Cagent Technologies, Inc. Method and apparatus for managing snoop requests using snoop advisory cells
US20020099901A1 (en) * 2001-01-25 2002-07-25 Hitachi, Ltd. Storage system and virtual private volume control method
US20030018739A1 (en) * 2001-05-01 2003-01-23 Robert Cypher Shared memory multiprocessing system employing mixed broadcast snooping and directory based coherency protocols
US6631447B1 (en) * 1993-03-18 2003-10-07 Hitachi, Ltd. Multiprocessor system having controller for controlling the number of processors for which cache coherency must be guaranteed
US20040268044A1 (en) * 2003-06-25 2004-12-30 International Business Machines Corporation Multiprocessor system with dynamic cache coherency regions
US7003633B2 (en) * 2002-11-04 2006-02-21 Newisys, Inc. Methods and apparatus for managing probe requests
US7065761B2 (en) * 2001-03-01 2006-06-20 International Business Machines Corporation Nonvolatile logical partition system data management
US7469321B2 (en) * 2003-06-25 2008-12-23 International Business Machines Corporation Software process migration between coherency regions without cache purges

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6049847A (en) * 1996-09-16 2000-04-11 Corollary, Inc. System and method for maintaining memory coherency in a computer system having multiple system buses

Patent Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6631447B1 (en) * 1993-03-18 2003-10-07 Hitachi, Ltd. Multiprocessor system having controller for controlling the number of processors for which cache coherency must be guaranteed
US5819061A (en) * 1994-07-25 1998-10-06 International Business Machines Corporation Method and apparatus for dynamic storage reconfiguration in a partitioned environment
US5781757A (en) * 1994-10-11 1998-07-14 International Business Machines Corporation Adaptive scalable cache coherence network for a multiprocessor data processing system
US5860114A (en) * 1995-05-10 1999-01-12 Cagent Technologies, Inc. Method and apparatus for managing snoop requests using snoop advisory cells
US5852716A (en) * 1996-07-02 1998-12-22 Sun Microsystems, Inc. Split-SMP computer system with local domains and a top repeater that distinguishes local and global transactions
US20020099901A1 (en) * 2001-01-25 2002-07-25 Hitachi, Ltd. Storage system and virtual private volume control method
US7065761B2 (en) * 2001-03-01 2006-06-20 International Business Machines Corporation Nonvolatile logical partition system data management
US20030018739A1 (en) * 2001-05-01 2003-01-23 Robert Cypher Shared memory multiprocessing system employing mixed broadcast snooping and directory based coherency protocols
US7032078B2 (en) * 2001-05-01 2006-04-18 Sun Microsystems, Inc. Shared memory multiprocessing system employing mixed broadcast snooping and directory based coherency protocols
US7003633B2 (en) * 2002-11-04 2006-02-21 Newisys, Inc. Methods and apparatus for managing probe requests
US20040268044A1 (en) * 2003-06-25 2004-12-30 International Business Machines Corporation Multiprocessor system with dynamic cache coherency regions
US7469321B2 (en) * 2003-06-25 2008-12-23 International Business Machines Corporation Software process migration between coherency regions without cache purges

Cited By (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090313436A1 (en) * 2008-06-12 2009-12-17 Microsoft Corporation Cache regions
US20090313438A1 (en) * 2008-06-12 2009-12-17 Microsoft Corporation Distributed cache arrangement
US8176256B2 (en) * 2008-06-12 2012-05-08 Microsoft Corporation Cache regions
US9952971B2 (en) 2008-06-12 2018-04-24 Microsoft Technology Licensing, Llc Distributed cache arrangement
US8943271B2 (en) 2008-06-12 2015-01-27 Microsoft Corporation Distributed cache arrangement
CN102460403A (en) * 2009-06-11 2012-05-16 飞思卡尔半导体公司 Processor and method for dynamic and selective alteration of address translation
CN105378672A (en) * 2013-07-18 2016-03-02 联想企业解决方案(新加坡)有限公司 Dynamic Formation of Symmetric Multiprocessor (SMP) Domains
US9460049B2 (en) * 2013-07-18 2016-10-04 Lenovo Enterprise Solutions (Singapore) Pte. Ltd. Dynamic formation of symmetric multi-processor (SMP) domains
US20150026432A1 (en) * 2013-07-18 2015-01-22 International Business Machines Corporation Dynamic formation of symmetric multi-processor (smp) domains
US9086974B2 (en) * 2013-09-26 2015-07-21 International Business Machines Corporation Centralized management of high-contention cache lines in multi-processor computing environments
US20150089155A1 (en) * 2013-09-26 2015-03-26 International Business Machines Corporation Centralized management of high-contention cache lines in multi-processor computing environments
US9292444B2 (en) 2013-09-26 2016-03-22 International Business Machines Corporation Multi-granular cache management in multi-processor computing environments
US9298623B2 (en) 2013-09-26 2016-03-29 Globalfoundries Inc. Identifying high-conflict cache lines in transactional memory computing environments
US9298626B2 (en) 2013-09-26 2016-03-29 Globalfoundries Inc. Managing high-conflict cache lines in transactional memory computing environments
US9329890B2 (en) 2013-09-26 2016-05-03 Globalfoundries Inc. Managing high-coherence-miss cache lines in multi-processor computing environments
US9740616B2 (en) 2013-09-26 2017-08-22 International Business Machines Corporation Multi-granular cache management in multi-processor computing environments
US10372638B2 (en) 2017-10-20 2019-08-06 Hewlett Packard Enterprise Development Lp Interconnect agent
US10970213B2 (en) * 2019-04-30 2021-04-06 Hewlett Packard Enterprise Development Lp Selective disabling of hardware-based cache coherency and enforcement of software-based cache coherency

Also Published As

Publication number Publication date
WO2005001693A2 (en) 2005-01-06
US20040268044A1 (en) 2004-12-30
US7484043B2 (en) 2009-01-27
WO2005001693A3 (en) 2005-03-31

Similar Documents

Publication Publication Date Title
US7484043B2 (en) Multiprocessor system with dynamic cache coherency regions
US7469321B2 (en) Software process migration between coherency regions without cache purges
RU2220444C2 (en) Computer system and method for data transmission in computer system
US5852716A (en) Split-SMP computer system with local domains and a top repeater that distinguishes local and global transactions
US7073044B2 (en) Method and apparatus for sharing TLB entries
US6370585B1 (en) Multiprocessing computer system employing a cluster communication launching and addressing mechanism
US7124410B2 (en) Distributed allocation of system hardware resources for multiprocessor systems
US6910108B2 (en) Hardware support for partitioning a multiprocessor system to allow distinct operating systems
US5796605A (en) Extended symmetrical multiprocessor address mapping
US5923847A (en) Split-SMP computer system configured to operate in a protected mode having repeater which inhibits transaction to local address partiton
US7051180B2 (en) Masterless building block binding to partitions using identifiers and indicators
US5960455A (en) Scalable cross bar type storage controller
US20050144399A1 (en) Multiprocessor system, and consistency control device and consistency control method in multiprocessor system
JP2004506981A (en) System and method for managing semaphore and atomic operations in a multiprocessor
JPH10240707A (en) Main storage sharing type multiprocessor
JP2004030574A (en) Processor integrated circuit for dynamically allocating cache memory
JPH1097513A (en) Node in multiprocessor computer system and multiprocessor computer system
US20090182893A1 (en) Cache coherence in a virtual machine managed system
JP2001051959A (en) Interconnected process node capable of being constituted as at least one numa(non-uniform memory access) data processing system
JPWO2010097925A1 (en) Information processing device
US6457107B1 (en) Method and apparatus for reducing false sharing in a distributed computing environment
US7159079B2 (en) Multiprocessor system
US7389398B2 (en) Methods and apparatus for data transfer between partitions in a computer system
US20040181647A1 (en) Partitioning of node into more than one partition
JPH10187631A (en) Extended symmetrical multiprocessor architecture

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- AFTER EXAMINER'S ANSWER OR BOARD OF APPEALS DECISION