Administering Non-Cacheable Memory Load Instructions
Administering non-cacheable memory load instructions in a computing environment where cacheable data is produced and consumed in a coherent manner without harming performance of a producer, the environment including a hierarchy of computer memory that includes one or more caches backed by main memory, the caches controlled by a cache controller, at least one of the caches configured as a write-back cache. Embodiments of the present invention include receiving, by the cache controller, a non-cacheable memory load instruction for data stored at a memory address, the data treated by the producer as cacheable; determining by the cache controller from a cache directory whether the data is cached; if the data is cached, returning the data in the memory address from the write-back cache without affecting the write-back cache's state; and if the data is not cached, returning the data from main memory without affecting the write-back cache's state.
Latest IBM Patents:
- SENSITIVE STORED PROCEDURE IDENTIFICATION IN REAL-TIME AND WITHOUT DATA EXPOSURE
- Perform edge processing by selecting edge devices based on security levels
- Compliance mechanisms in blockchain networks
- Clustered rigid wafer test probe
- Identifying a finding in a dataset using a machine learning model ensemble
This application is a continuation application of and claims priority from U.S. patent application Ser. No. 12/121,222, filed on May 15, 2008.
BACKGROUND OF THE INVENTION1. Field of the Invention
The field of the invention is data processing, or, more specifically methods, apparatus and products for administering non-cacheable memory load instructions.
2. Description of Related Art
There are two widely used paradigms of data processing; multiple instructions, multiple data (‘MIMD’) and single instruction, multiple data (‘SIMD’). In MIMD processing, a computer program is typically characterized as one or more threads of execution operating more or less independently, each requiring fast random access to large quantities of shared memory. MIMD is a data processing paradigm optimized for the particular classes of programs that fit it, including, for example, word processors, spreadsheets, database managers, many forms of telecommunications such as browsers, for example, and so on.
SIMD is characterized by a single program running simultaneously in parallel on many processors, each instance of the program operating in the same way but on separate items of data. SIMD is a data processing paradigm that is optimized for the particular classes of applications that fit it, including, for example, many forms of digital signal processing, vector processing, and so on.
There is another class of applications, however, including many real-world simulation programs, for example, for which neither pure SIMD nor pure MIMD data processing is optimized. That class of applications includes applications that benefit from parallel processing and also require fast random access to shared memory. For that class of programs, a pure MIMD system will not provide a high degree of parallelism and a pure SIMD system will not provide fast random access to main memory stores.
SUMMARY OF THE INVENTIONMethods, apparatus, and products for administering non-cacheable memory load instructions in a computing environment where cacheable data is produced and consumed in a coherent manner without harming performance of a producer, the environment including a hierarchy of computer memory that includes one or more caches backed by main memory, the caches controlled by a cache controller, at least one of the caches configured as a write-back cache. Embodiments of the present invention include receiving, by the cache controller from a consumer, a non-cacheable memory load instruction for data stored at a memory address, the data treated by the producer as cacheable; determining by the cache controller from a cache directory whether the data is cached; if the data is cached, returning the data in the memory address from the write-back cache without affecting the write-back cache's state; and if the data is not cached, returning the data from main memory without affecting the write-back cache's state.
Embodiments of the present invention may be implemented on a network on chip (‘NOC’), the NOC including integrated processor (‘IP’) blocks, routers, memory communications controllers, and network interface controller. Each IP block in the NOC is adapted to a router through a memory communications controller and a network interface controller. Each memory communications controller controls communication between an IP block and memory. Each network interface controller controls inter-IP block communications through routers.
The foregoing and other objects, features and advantages of the invention will be apparent from the following more particular descriptions of exemplary embodiments of the invention as illustrated in the accompanying drawings wherein like reference numbers generally represent like parts of exemplary embodiments of the invention.
Exemplary apparatus and methods for administering non-cacheable memory load instructions in accordance with the present invention are described with reference to the accompanying drawings, beginning with
Stored in RAM (168) is an application program (184), a module of user-level computer program instructions for carrying out particular data processing tasks such as, for example, word processing, spreadsheets, database operations, video gaming, stock market simulations, atomic quantum process simulations, or other user-level applications. Also stored in RAM (168) is an operating system (154). Operating systems useful administering non-cacheable memory load instructions according to embodiments of the present invention include UNIX™, Linux™, Microsoft XP™, AIX™, IBM's i5/OS™, and others as will occur to those of skill in the art. The operating system (154) and the application (184) in the example of
The example computer (152) includes two example NOCs (102) according to embodiments of the present invention: a video adapter (209) and a coprocessor (157). The NOC video adapter (209) is an example of an I/O adapter specially designed for graphic output to a display device (180) such as a display screen or computer monitor. The NOC video adapter (209) is connected to processor (156) through a high speed video bus (164), bus adapter (158), and the front side bus (162), which is also a high speed bus.
The example NOC coprocessor (157) is connected to processor (156) through bus adapter (158), and front side buses (162 and 163), which is also a high speed bus. The NOC coprocessor of
The example NOC video adapter (209) and NOC coprocessor (157) of
The hierarchical arrangement of storage in computer architectures is called a memory hierarchy. The memory hierarchy is designed to take advantage of memory locality. Each level of the hierarchy has properties of higher speed, smaller size, and lower latency than lower levels. Most modern CPUs are so fast that for most program workloads, the locality of reference of memory accesses and the efficiency of the caching and memory transfer between different levels of the hierarchy are the practical limitation on processing speed. As a result, the CPU spends much of its time idling, waiting for memory I/O to complete. A typical memory hierarchy in a computer system may include:
-
- Processor registers—a hierarchal level of memory having the fastest possible access of all levels, usually 1 CPU cycle, and only hundreds of bytes in size;
- Level 1 (‘L1’) cache—a hierarchal level of memory typically accessed in just a few CPU cycles, typically tens of kilobytes in size;
- Level 2 (‘L2’) cache—a hierarchal level of memory having 2 to 10 times higher latency than L1, typically 512 kilobytes or more in size;
- Main memory, such as ‘DRAM’—a hierarchal level of memory typically accessed in hundreds of CPU cycles, typical one or more gigabytes in size.
- Flash Memory—a hierarchal level having access times faster than disk storage, typically less than 8 gigabytes in size;
- Hard disk storage—a hierarchal level of memory in which access times range in the hundreds of thousands of CPU cycles, typically ranging in size from tens of gigabytes to terabytes;
- And so on with increasing access times and size as will occur to readers of skill in the art.
In the example of
When a data is written to a cache, the data is at some point typically written to a backing store such as main memory. The timing of this write to the backing store is controlled by what is known as the write policy. In a write-through cache, every write to the cache causes a synchronous write to the backing store. Alternatively, in a write-back, or write-behind, cache, writes are not immediately mirrored to the backing store. Instead, the cache tracks locations that have been written over. Locations which have been written over are typically referred to as ‘dirty.’ The data in these locations is written to the backing store when the data is evicted from the cache.
The caches in the hierarchy of memory (304) in the example of
A producer of data is a computer process or structure capable of writing data to cache in a memory hierarchy. Examples of a producer include a software process, a software thread of execution, a hardware thread, a particular processor, a particular core, an IP block in a NOC, a stage in a software pipeline, and others as will occur to readers of skill in the art. A producer may treat data as cacheable for the purpose of efficient and expedient access to the data. Consider as an example of data for which a producer may require efficient and expedient access, video frame data for display on a display device such as a computer monitor. A producer of such data may write frame data to cache many times in a relatively short period of time.
A consumer of data is a computer process or structure of data capable of reading the data from memory. Examples of a consumer include a software process, a software thread of execution, a hardware thread, a particular processor, a particular core, an IP block in a NOC, a stage in a software pipeline, and others as will occur to readers of skill in the art. Consumers may read data from memory through use of memory load instructions. One type of a memory load instruction is a non-cacheable memory load instruction. Non-cacheable memory load instructions are known to be such because, typically, a memory management unit (MMU) in examining attributes of a memory page in a page table determines that the page is marked non-cacheable. The MMU then notifies the cache controller of that fact when a load instruction requests data in memory addresses in the page marked non-cacheable. When a cache controller typically processes a non-cacheable memory load instruction, the cache controller attempts to retrieve data only from backing store, such as main memory, not from cache.
Another type of memory load instruction is a cacheable memory load instruction. When a cache controller typically processes a cacheable memory load instruction the cache controller first attempts to retrieve the data from the cache. If the data is no longer stored in the cache but has been moved to the backing store, the cache controller retrieves the data from the backing store and copies the data retrieved into the cache under an assumption that retrieved data is the likely to be accessed again soon and, as such, efficiency of the next access of the data may be increased by storing the data in the lower latency cache.
When data is copied from a backing store into cache in typical processing of a cacheable memory load, however, the risk of evicting other data previously stored in cache is increased. Copying data from a backing store into cache may increase the risk of evicting other data previously stored in the cache because the cache is limited in size. Copying data from a backing store into cache may also increase the risk of evicting other data previously stored in the cache because caches typically replace data in the cache in accordance with a least recently used (‘TRU’) replacement policy. An LRU replacement policy generally dictates that the least recently used items in the cache are replaced first. Data copied into cache in response to a cacheable memory load instruction may be more recently used than other, previously stored data, and the risk of replacing such previously stored data increases.
These problems are amplified in cases where a producer of data needs repeated and efficient access to data in cache, while a consumer only needs access to the data once. The consumer gains no benefit of having data retrieved and stored in cache, as no further access to the data is necessary, and the producer stands a higher risk of data being evicted from the cache.
Non-cacheable memory load instructions in accordance with embodiments of the present invention are not administered in the typical fashion as described above. Instead, non-cacheable memory load instructions are administered according to embodiments of the present invention, including the example of
Cacheable data is consumed in a coherent manner when a consumer has coherent access to a valid, or non-stale, instance of the cacheable data. Coherent access to data is access to valid data across all levels of a computer memory hierarchy. Consider for example a write-back cache where cacheable valid data may be evicted at any time from the cache into a backing store. A consumer of the cacheable valid data is provided coherent access to that data if the consumer is able to retrieve that valid data wherever the valid data is stored, whether the write-back cache or the backing store.
The cache controller that controls cache in the exemplary memory hierarchies (304) of
The NOC video adapter (209) and the NOC coprocessor (157) of
The computer (152) of
The example computer (152) of
The exemplary computer (152) of
For further explanation,
The computing environment in the example of
In the NOC (102) of
One way to describe IP blocks by analogy is that IP blocks are for NOC design what a library is for computer programming or a discrete integrated circuit component is for printed circuit board design. In NOCs according to embodiments of the present invention, IP blocks may be implemented as generic gate netlists, as complete special purpose or general purpose microprocessors, or in other ways as may occur to those of skill in the art. A netlist is a Boolean-algebra representation (gates, standard cells) of an IP block's logical-function, analogous to an assembly-code listing for a high-level program application. NOCs also may be implemented, for example, in synthesizable form, described in a hardware description language such as Verilog or VHDL. In addition to netlist and synthesizable implementation, NOCs also may be delivered in lower-level, physical descriptions. Analog IP block elements such as SERDES, PLL, DAC, ADC, and so on, may be distributed in a transistor-layout format such as GDSII. Digital elements of IP blocks are sometimes offered in layout format as well.
Each IP block (104) in the example of
Each IP block (104) in the example of
Each IP block (104) in the example of
Each memory communications controller (106) in the example of
The example NOC includes two memory management units (‘MMUs’) (107, 109), illustrating two alternative memory architectures for NOCs according to embodiments of the present invention. MMU (107) is implemented with an IP block, allowing a processor within the IP block to operate in virtual memory while allowing the entire remaining architecture of the NOC to operate in a physical memory address space. The MMU (109) is implemented off-chip, connected to the NOC through a data communications port (116). The port (116) includes the pins and other interconnections required to conduct signals between the NOC and the MMU, as well as sufficient intelligence to convert message packets from the NOC packet format to the bus format required by the external MMU (109). The external location of the MMU means that all processors in all IP blocks of the NOC can operate in virtual memory address space, with all conversions to physical addresses of the off-chip memory handled by the off-chip MMU (109).
In addition to the two memory architectures illustrated by use of the MMUs (107, 109), data communications port (118) illustrates a third memory architecture useful in NOCs according to embodiments of the present invention. Port (118) provides a direct connection between an IP block (104) of the NOC (102) and off-chip memory (112). With no MMU in the processing path, this architecture provides utilization of a physical address space by all the IP blocks of the NOC. In sharing the address space bi-directionally, all the IP blocks of the NOC can access memory in the address space by memory-addressed messages, including loads and stores, directed through the IP block connected directly to the port (118). The port (118) includes the pins and other interconnections required to conduct signals between the NOC and the off-chip memory (112), as well as sufficient intelligence to convert message packets from the NOC packet format to the bus format required by the off-chip memory (112).
In the example of
The NOC (102) in the example of
The NOC (102) in the example of
For further explanation,
The example NOC of
In the example of
In the NOC (102) of
Each memory communications execution engine (140) is enabled to execute a complete memory communications instruction separately and in parallel with other memory communications execution engines. The memory communications execution engines implement a scalable memory transaction processor optimized for concurrent throughput of memory communications instructions. The memory communications controller (106) supports multiple memory communications execution engines (140) all of which run concurrently for simultaneous execution of multiple memory communications instructions. A new memory communications instruction is allocated by the memory communications controller (106) to a memory communications engine (140) and the memory communications execution engines (140) can accept multiple response events simultaneously. In this example, all of the memory communications execution engines (140) are identical. Scaling the number of memory communications instructions that can be handled simultaneously by a memory communications controller (106), therefore, is implemented by scaling the number of memory communications execution engines (140).
In the NOC (102) of
In the NOC (102) of
Many memory-address-based communications are executed with message traffic, because any memory to be accessed may be located anywhere in the physical memory address space, on-chip or off-chip, directly attached to any memory communications controller in the NOC, or ultimately accessed through any IP block of the NOC—regardless of which IP block originated any particular memory-address-based communication. All memory-address-based communication that are executed with message traffic are passed from the memory communications controller to an associated network interface controller for conversion (136) from command format to packet format and transmission through the network in a message. In converting to packet format, the network interface controller also identifies a network address for the packet in dependence upon the memory address or addresses to be accessed by a memory-address-based communication. Memory address based messages are addressed with memory addresses. Each memory address is mapped by the network interface controllers to a network address, typically the network location of a memory communications controller responsible for some range of physical memory addresses. The network location of a memory communication controller (106) is naturally also the network location of that memory communication controller's associated router (110), network interface controller (108), and IP block (104). The instruction conversion logic (136) within each network interface controller is capable of converting memory addresses to network addresses for purposes of transmitting memory-address-based communications through routers of a NOC.
Upon receiving message traffic from routers (110) of the network, each network interface controller (108) inspects each packet for memory instructions. Each packet containing a memory instruction is handed to the memory communications controller (106) associated with the receiving network interface controller, which executes the memory instruction before sending the remaining payload of the packet to the IP block for further processing. In this way, memory contents are always prepared to support data processing by an IP block before the IP block begins execution of instructions from a message that depend upon particular memory content.
In the NOC (102) of
Each network interface controller (108) in the example of
Each router (110) in the example of
In describing memory-address-based communications above, each memory address was described as mapped by network interface controllers to a network address, a network location of a memory communications controller. The network location of a memory communication controller (106) is naturally also the network location of that memory communication controller's associated router (110), network interface controller (108), and IP block (104). In inter-IP block, or network-address-based communications, therefore, it is also typical for application-level data processing to view network addresses as location of IP block within the network formed by the routers, links, and bus wires of the NOC.
In the NOC (102) of
Each virtual channel buffer (134) has finite storage space. When many packets are received in a short period of time, a virtual channel buffer can fill up—so that no more packets can be put in the buffer. In other protocols, packets arriving on a virtual channel whose buffer is full would be dropped. Each virtual channel buffer (134) in this example, however, is enabled with control signals of the bus wires to advise surrounding routers through the virtual channel control logic to suspend transmission in a virtual channel, that is, suspend transmission of packets of a particular communications type. When one virtual channel is so suspended, all other virtual channels are unaffected—and can continue to operate at full capacity. The control signals are wired all the way back through each router to each router's associated network interface controller (108). Each network interface controller is configured to, upon receipt of such a signal, refuse to accept, from its associated memory communications controller (106) or from its associated IP block (104), communications instructions for the suspended virtual channel. In this way, suspension of a virtual channel affects all the hardware that implements the virtual channel, all the way back up to the originating IP blocks.
One effect of suspending packet transmissions in a virtual channel is that no packets are ever dropped in the architecture of
Each router in this example includes five ports, four ports (121A, 121B, 121C, 121D) connected through bus wires (120A, 120B, 120C, 120D) to other routers and a fifth port (123) connecting each router to its associated IP block (104) through a network interface controller (108) and a memory communications controller (106). As can be seen from the illustrations in
The example NOC (102) of
The exemplary cache controller (111) in the example of
In administering non-cacheable memory load instructions according to embodiments of the present invention, the cache controller (111) of
The IP block (104) of the expanded set (122) in the example of
The method of
The method of
The method of
Although administering non-cacheable memory load instructions in accordance with embodiments of the present invention has been largely described in this specification with respect to a NOC, readers of skill in the art will recognize that such administration of non-cacheable memory load instructions in accordance with embodiments of the present invention may be implemented with other hardware, software, firmware, memory hierarchies, cache controllers, and so on, and each such implementation is well within the scope of the present invention.
For further explanation,
The method of
The method of
If the data (526) is cached, the method of
If the data (526) is not cached, the method of
The method of
For further explanation,
The method of
The method of
In the method of
For further explanation,
The method of
The method of
The method of
Readers will recognize in view of the explanations provided above that administering non-cacheable load instructions according to embodiments of the present invention provides the following benefits:
-
- Providing to a consumer coherent access to data across multiple levels of memory in a memory hierarchy, where such a memory hierarchy includes a write-back cache.
- Providing to a consumer access to data without affecting a write-back cache's state, regardless of whether the data is stored in the write-back cache or main memory.
- Providing to a producer an environment in which the performance of the producer is not harmed by a consumer's access to data produced by the producer, especially in cases where the consumer's access is infrequent.
Exemplary embodiments of the present invention are described largely in the context of a fully functional computer system for administering non-cacheable memory load instructions. Readers of skill in the art will recognize, however, that the present invention also may be embodied in a computer program product disposed on signal bearing media for use with any suitable data processing system. Such signal bearing media may be transmission media or recordable media for machine-readable information, including magnetic media, optical media, or other suitable media. Examples of recordable media include magnetic disks in hard drives or diskettes, compact disks for optical drives, magnetic tape, and others as will occur to those of skill in the art. Examples of transmission media include telephone networks for voice communications and digital data communications networks such as, for example, Ethernets™ and networks that communicate with the Internet Protocol and the World Wide Web as well as wireless transmission media such as, for example, networks implemented according to the IEEE 802.11 family of specifications. Persons skilled in the art will immediately recognize that any computer system having suitable programming means will be capable of executing the steps of the method of the invention as embodied in a program product. Persons skilled in the art will recognize immediately that, although some of the exemplary embodiments described in this specification are oriented to software installed and executing on computer hardware, nevertheless, alternative embodiments implemented as firmware or as hardware are well within the scope of the present invention.
It will be understood from the foregoing description that modifications and changes may be made in various embodiments of the present invention without departing from its true spirit. The descriptions in this specification are for purposes of illustration only and are not to be construed in a limiting sense. The scope of the present invention is limited only by the language of the following claims.
Claims
1. A method of administering non-cacheable memory load instructions in a computing environment where cacheable data is produced and consumed in a coherent manner without harming performance of a producer, the environment comprising a hierarchy of computer memory that includes one or more caches backed by main memory, the caches controlled by a cache controller, at least one of the caches configured as a write-back cache, the method comprising:
- receiving, by the cache controller from a consumer, a non-cacheable memory load instruction for data stored at a memory address, the data treated by the producer as cacheable;
- determining by the cache controller from a cache directory that the data is cached;
- in response to the determination that the data is cached, returning, by the cache controller, the data in the memory address from the write-back cache without affecting the write-back cache's state.
2. The method of claim 1 wherein the method is applied by the cache controller, to all non-cacheable memory load instructions.
3. The method of claim 1 further comprising marking, by a memory management unit, memory pages with attributes indicating whether to apply the method to non-cacheable memory load instructions for data stored in each page, wherein the method is applied only to non-cacheable memory load instructions for data stored in memory pages marked with the attributes.
4. The method of claim 1 wherein the method is applied to only non-cacheable memory load instructions from particular consumers for which the method is to be applied and the method further comprises:
- determining by the cache controller that the consumer is a particular consumer for which the method is to be applied.
5. The method of claim 1 wherein the method is implemented on a network on chip (‘NOC’), the NOC comprising integrated processor (‘IP’) blocks, routers, memory communications controllers, and network interface controller, each IP block adapted to a router through a memory communications controller and a network interface controller, each memory communications controller controlling communication between an IP block and memory, and each network interface controller controlling inter-IP block communications through routers; and
- at least one IP block further comprises the hierarchy of memory.
6. The method of claim 5 wherein each IP block comprises a reusable unit of synchronous or asynchronous logic design used as a building block for data processing within the NOC.
7. Apparatus for administering non-cacheable memory load instructions in a computing environment where cacheable data is produced and consumed in a coherent manner without harming performance of a producer, the environment comprising a hierarchy of computer memory that includes one or more caches backed by main memory, the caches controlled by a cache controller, at least one of the caches configured as a write-back cache, the apparatus comprising a computer processor, a computer memory operatively coupled to the computer processor, the computer memory having disposed within it computer program instructions that when executed by the computer processor cause the apparatus to carry out the steps of:
- receiving, by the cache controller from a consumer, a non-cacheable memory load instruction for data stored at a memory address, the data treated by the producer as cacheable;
- determining by the cache controller from a cache directory that the data is cached;
- in response to the determination that the data is cached, returning, by the cache controller, the data in the memory address from the write-back cache without affecting the write-back cache's state.
8. The apparatus of claim 7 wherein the wherein the apparatus is configured to operate in a mode in which the cache controller processes all non-cacheable memory load instructions in a coherent manner without harming performance of a producer.
9. The apparatus of claim 7 further comprising computer program instructions capable of marking, by a memory management unit, memory pages with attributes indicating whether to apply the method to non-cacheable memory load instructions for data stored in each page, wherein the apparatus is configured to operate in a mode in which only non-cacheable memory load instructions for data stored in memory pages marked with the attributes are processed in a coherent manner without affecting the write-back cache's state.
10. The apparatus of claim 7 wherein the apparatus is configured to operate in a mode in which only non-cacheable memory load instructions from particular consumers are processed in a coherent manner without affecting the write-back cache's state; and
- the apparatus further comprises computer program instructions capable of determining, by the cache controller, that the consumer is a particular consumer.
11. The apparatus of claim 7 further comprising a network on chip (‘NOC’), the NOC comprising integrated processor (‘IP’) blocks, routers, memory communications controllers, and network interface controller, each IP block adapted to a router through a memory communications controller and a network interface controller, each memory communications controller controlling communication between an IP block and memory, and each network interface controller controlling inter-IP block communications through routers, wherein at least one IP block further comprises the hierarchy of memory.
12. The apparatus of claim 11 wherein each IP block comprises a reusable unit of synchronous or asynchronous logic design used as a building block for data processing within the NOC.
13. A computer program product for administering non-cacheable memory load instructions in a computing environment where cacheable data is produced and consumed in a coherent manner without harming performance of a producer, the environment comprising a hierarchy of computer memory that includes one or more caches backed by main memory, the caches controlled by a cache controller, at least one of the caches configured as a write-back cache, the computer program product disposed in a computer-readable recordable signal bearing medium, the computer program product comprising computer program instructions capable of:
- receiving, by the cache controller from a consumer, a non-cacheable memory load instruction for data stored at a memory address, the data treated by the producer as cacheable;
- determining by the cache controller from a cache directory that the data is cached;
- in response to the determination that the data is cached, returning, by the cache controller, the data in the memory address from the write-back cache without affecting the write-back cache's state.
14. The computer program product of claim 13 wherein the wherein the computer program product is configured to operate in a mode in which the cache controller processes all non-cacheable memory load instructions in a coherent manner without harming performance of a producer.
15. The computer program product of claim 13 further comprising computer program instructions capable of marking, by a memory management unit, memory pages with attributes indicating whether to apply the method to non-cacheable memory load instructions for data stored in each page, wherein the computer program product is configured to operate in a mode in which only non-cacheable memory load instructions for data stored in memory pages marked with the attributes are processed in a coherent manner without affecting the write-back cache's state.
16. The computer program product of claim 13 wherein the computer program product is configured to operate in a mode in which only non-cacheable memory load instructions from particular consumers are processed in a coherent manner without affecting the write-back cache's state; and
- the computer program product further comprises computer program instructions capable of determining, by the cache controller, that the consumer is a particular consumer.
17. The computer program product of claim 13 wherein the computer program instructions are capable of execution upon a network on chip (‘NOC’), the NOC comprising integrated processor (‘IP’) blocks, routers, memory communications controllers, and network interface controller, each IP block adapted to a router through a memory communications controller and a network interface controller, each memory communications controller controlling communication between an IP block and memory, and each network interface controller controlling inter-IP block communications through routers, wherein at least one IP block further comprises the hierarchy of memory.
18. The computer program product of claim 17 wherein each IP block comprises a reusable unit of synchronous or asynchronous logic design used as a building block for data processing within the NOC.
19. (canceled)
20. (canceled)
Type: Application
Filed: May 2, 2012
Publication Date: Aug 23, 2012
Applicant: International Business Machines Corporation (Armonk, NY)
Inventors: Jon K. Kriegel (Rochester, MN), Jamie R. Kuesel (Rochester, MN)
Application Number: 13/461,913
International Classification: G06F 12/08 (20060101);