The invention relates to the field of information processing and more particularly relates to improving information processing efficiency by injecting data into one or more processor caches while the data is being written into memory.
In the field of information processing, it is well known to cache data locally, since cache access can be significantly faster than access from a memory location. Information processing systems will typically cache data which is frequently accessed and/or data that is expected to be required next by a processing unit, based on related data most recently requested by the CPU. When the processing unit requires data, yet is unable to access that data from a local cache, the event is referred to as a “cache miss”. Performance analysis work indicates that cache misses in the performance critical paths hurt the overall performance of the system posing both latency and throughput issues. Mechanisms that avoid cache misses in the critical paths are therefore important.
Present-day memory subsystems consist of a hierarchy of memories of differing speeds and sizes. There are multiple levels of caches, with the caches closest to the processor being of decreasing size and increasing speed, followed by a main memory that offers significantly higher access latency and lower throughput. The processor may prefetch a memory location to its cache based on anticipated processing needs. When such a prefetch occurs, the address of the memory location can be found in the cache. Alternatively, the address of a memory location may be found in a cache based on the processor having recently accessed the memory location directly. In either instance, the presence of the address in the processor's cache indicates that the processor in “interested” in the memory location and is, accordingly, interested in any updates to that memory location. Any memory updates to the memory location are written to the address of the memory location in the main memory, but should also, preferably, be reflected at any cache location that shows the memory address.
Further, in multi-processor nodes, each processor may have one or more dedicated levels of caches, any one of which may have previously-read data from a shared memory location. If the data has been updated at the shared memory location, the cache may include stale data. Cache coherence must be maintained, ensuring that two processors that share memory get coherent data and that an update to shared memory by one processor is reflected in future accesses by other processors.
In the shared memory model, the processors may share one memory subsystem that performs data transfers and cache coherence. Alternatively, each processor in a multi-processor node may have its own associated memory subsystem. In a multi-node system or network, each node will generally have its own memory subsystem including an adapter for exchanging data with other nodes and for updating memory locations with data received from local processors or other nodes.
There are multiple memory transfer paths where current memory subsystems provide less than optimal performance and may cause significant overhead. One such path is in interprocessor communications among processors at different nodes across the network wherein a source processor on a first node sends data to a target processor on a second node. With reference to
However, due to the memory subsystem's coherency protocol, the write to the memory location in memory 130 automatically results in an invalidation of the location in the target processor's cache 123. The polling target processor 120 then needs to go to the main memory 130 again to fetch the data updated by the memory subsystem, adapter 129. The foregoing process, involving a step of a DMA to memory by the adapter, a step of the memory subsystem invalidating the cache, and a step of fetching the new data from memory by the target processor, can result in performance degradation and delays in the communication path, thereby increasing the latency of inter-node communications significantly.
It is, therefore, an object of the present invention to provide a system and mechanism for efficient data transfer between processors.
It is another object of the invention to provide efficient cache injection for user space message passing of messages of varying size and latency.
The foregoing and other objects are realized by the present system and method which provides injection of important data directly into a processor's cache location when that processor has previously indicated interest in the data. The memory subsystem at a target processor will determine if the memory address of data to be written to a memory location associated with the target processor is found in a processor cache of the target processor. If it is determined that the memory address is found in a target processor's cache, the data will be directly written to that cache at the same time that the data is being provided to a location in main memory. Injection of the data directly to the cache permits the target processor to access the data more quickly, while the simultaneous write to main memory ensures data consistency.
The invention is further adapted to utilize intelligent policies in the caching protocol and in the memory subsystem to determine when cache injection should occur and how cache injection should be controlled. The policies factor in the length and urgency of the message to be transferred in determining the appropriate cache handling.
The invention will be described in greater detail with reference to the appended drawings wherein:
The present invention introduces the concept of cache injection, whereby important data is inserted directly into one or more of a target processor's caches at the same time that the data is being written into a main memory location accessible to the target processor. Data may be injected into a processor's cache by an I/O device or any other memory moving engine.
Under the present invention a method is provided for efficiently processing memory writes in a competing node having at least a processor, a memory subsystem, at least one memory cache associated with the processor and access to a main memory with a plurality of memory locations each having a memory address. As illustrated in
The proposed mechanism provides a simple method for the processor to request updates to certain locations that it may want to access in the future. The processor can simply pre-fetch the locations into its cache using standard pre-fetch mechanisms offered by present day memory subsystems. Alternatively, the processor can access the memory location, which will result in the location address being loaded into a cache location. Only writes to memory locations that are present in one or more caches are injected, with all other writes going directly to main memory.
The data passing mechanisms of the invention implement the policy that DMA write transactions to memory are cache injected if, and only if, the referenced memory locations are already cached by a central processing unit (CPU). If more than one CPU has the same data cached, then the message passing mechanism (also referred to as the “memory subsystem”, “memory controller” and “adapter”) has multiple options, including inject in all, injected in any one, invalidate all, and inject in none. With the “already cached” policy, the inventive approach ensures that successive caching decisions have no impact on the working set of the caches. Accordingly, any performance impact will be positive. The data passing software system controls the cache injection by issuing pre-fetch instructions for the cache lines that are of interest to the CPU and is waiting for the DMA write transactions, as further detailed below.
It can be envisioned that there may be instances for which a processor does not require cache injection, despite the presence of one or more memory locations in its cache. For example, where multi-processor locations share a significant amount of memory during a computation, it may be that only a few of the processors are interested in monitoring updates to some of the locations. In those instances, the processor may generate some injection indication that injection is not required. The “hint” may take the form of a flag or other indicator associated with the cache location. Yet another implementation would allow the memory controller to control whether or not data is injected into a cache location, even when the target memory address is indicated in the cache location.
For efficient cache injection mechanisms, it is clear that always injecting into the cache is less than optimal, since the processor may not ever require the DMA data or may not need to consume the data until much later. Injecting into the cache indiscriminately may further cause cache eviction of memory locations that were part of the active working set of computations on the processor. Another consideration for efficient cache injection is a determination as to where incoming data should be injected. With large multi-processor systems, it is preferable to provide an intelligent mechanism for managing caching since, even if a fast cache-to-cache transfer mechanism exists, the issue of cache pollution and possible eviction of cache lines in the active working set are critical issues. Accordingly, memory controllers of the memory subsystems optimally need to determine the following: (a) if incoming data from DMA writes should be cache injected; (b) into which processor's cache should the data be injected; (c) where in the cache hierarchy should injection occur; and (d) how many cache lines of the incoming message should be injected. In making the determinations, the intelligent memory controller should also balance the advantage of avoiding a cache miss when the processor needs the data against the risk that the cache injection may toe rejecting cache lines in the active working set. Further considerations include the software's ability to pre-fetch subsequent cache lines of a large message consistent with the access pattern as needed by the application (since the application may not be consuming the data in order) and the time at which the processor will need the memory to be available in cache. Latency-critical messages which are needed by a processor will necessarily take priority over less critical messages. As stated above, it is preferable that the memory controller have the discretion to inject or not inject based on the foregoing considerations, even when the target memory address is found in the cache and the processor has not provided an injection indicator.
The invention is further described below with reference to example transport protocols that incur DMA transactions on clustered based supercomputers, such as those manufactured by International Business Machines Corporation (IBM). These concepts apply to any data movement mechanism, and are not limited to IO devices; however, for ease and consistency of description, the example usage models on IBM systems are used to explain the concepts for intelligent control of cache injection. With reference to usage models on IBM clustered based supercomputers, specific implementations of the invention will be detailed with reference to
Data flows along arrow a from the user buffer 310 to the Burst MMIO buffer 315. The cache line is also copied into the retransmit buffer 314 as shown by arrow b. Adapter1 injects the message into the network, across switch 318, along arrow c, to Adapter2. At Node 2 the Adapter2 performs a DMA transfer of the arriving message into the appropriate FIFO slot cache line, 325, as shown by arrow d. As noted above, the target processor, process y at 302, would have been waiting for the data and polling cache line 325 to try to access the data. Accordingly, the memory subsystem of Adapter2 at 326 injects the data into that cache location polled by process y. The protocol copies the data from the FIFO slot cache line 325 of FIFO 323 into the user's receive buffer 320 as shown along arrow e.
The latency flow for the system illustrated in
On the receiving side, the memory subsystem determines, at step 407, whether there is already a line for that FIFO slot. If no processor has this FIFO slot cached then the data should not be cache injected since no process is waiting for this message. If no FIFO slot is available and waiting for the data, the data is discarded as shown at step 410. However, when the FIFO slot, 325 as illustrated, is available, indicating that the process is waiting for the data, then the receiving side adapter 326 performs a DMA of the arriving message to write it into the FIFO cache line at step 408. The data is also copied from the FIFO into the user's receive buffer 320 or main memory location, at step 409, for the posted MPI_Recv processor operation.
The processor which had the first cache line in its cache should be the processor into whose cache the memory subsystem injects the first cache line. The subsequent cache lines probably should not be injected. Accordingly, the asynchronous data mover is used for moving the data from the receive fifo to the user buffer 520 or the early arrival buffer 524. In both cases, it would be preferable to inject only the first cache line, to prompt the protocol to pre-fetch those cache lines, which then provides a “hint” to the memory subsystem indicating that the memory subsystem should inject those lines (and into which processor's cache). In all these cases the first cache line concept could be extended to the first few cache lines, matching match up the pre-fetch and access times from main memory of the subsequent cache lines. The protocol can issue pre-fetches for subsequent cache lines as it needs it, since not all of the data may be consumed by the receiving side and may not be consumed in order.
For the transfer of large messages, the data flow across the users' address spaces is illustrated in
The selection of into which processor's cache the injection should occur is always based on the CPU which already has that (stale) cache line in its cache. In all of the above no cache injection occurs if no processor has the (stale) cache line in its case. Partial cache line DMAs should not occur for RDMA transfers. Before returning control to the user from the communication subsystem the protocol should make sure that the appropriate pre-fetch hints are issued to the memory subsystem for the next set of cache lines it will be reading in the FIFOS in the early arrival buffers and in the appropriate receive buffers.
When memory is shared among two or more tasks, it is expected that the data mover should be able to assist in the data moves in both the short memory case, where the data is staged through the shared memory, and in the large message case, where the data is moved directly from the source buffer to the target buffer in a different address space. In the short message case the data is staged through the shared memory segment. The shared memory segment is not cache injected, whereas the move from the shared memory segment into the target buffer should be cache injected. Again the number of cache lines injected should be dictated by the protocol issuing appropriate pre-fetches of the appropriate set of cache lines.
The above description is only illustrative, intended to enable those skilled in the art to implement the present invention, and not as limitations on the present invention. The various steps in the described methods according to the various embodiments of the present invention may also be performed in a different order, or some steps may be added, deleted, or replaced, without departing from the scope and spirit of the present invention. The various components in the described apparatuses and systems according to the various embodiments of the present invention can be implemented as software, firmware, hardware, or any combination thereof, and these components can be split or combined, provided the functions can be realized. In a preferred implementation, these apparatuses are a combination of general purpose computer hardware and the corresponding software functional modules. The claimed scope of invention is not defined by the above description, but uniquely defined by the following claims.
This invention was made with Government support under Agreement No. NBCH3039004 awarded by DARPA. The Government has certain rights in the invention.
Number | Name | Date | Kind |
---|---|---|---|
5428799 | Woods et al. | Jun 1995 | A |
5588131 | Borrill | Dec 1996 | A |
5784697 | Funk et al. | Jul 1998 | A |
5802576 | Tzeng et al. | Sep 1998 | A |
5850558 | Qureshi et al. | Dec 1998 | A |
6021456 | Herdeg et al. | Feb 2000 | A |
6029223 | Klein | Feb 2000 | A |
6370622 | Chiou et al. | Apr 2002 | B1 |
6604060 | Ryan et al. | Aug 2003 | B1 |
6658537 | Hughes et al. | Dec 2003 | B2 |
6711650 | Bohrer et al. | Mar 2004 | B1 |
7155572 | Hughes et al. | Dec 2006 | B2 |
7159216 | McDonald | Jan 2007 | B2 |
7454585 | Arimilli et al. | Nov 2008 | B2 |
7484062 | Arimilli et al. | Jan 2009 | B2 |
7506132 | Arimilli et al. | Mar 2009 | B2 |
20020065998 | Buckland | May 2002 | A1 |
20040128450 | Edirisooriya et al. | Jul 2004 | A1 |
20050033948 | Wei | Feb 2005 | A1 |
20060064518 | Bohrer et al. | Mar 2006 | A1 |
Number | Date | Country | |
---|---|---|---|
20080201532 A1 | Aug 2008 | US |