Recently, there has been a resurgence of interest in artificial neural networks (ANN), and such research has commonly been termed deep learning, computer learning and similar terms. The increase in general-purpose processor computation power has given rise to the renewed interest that waned a couple of decades ago. Recent applications of ANNs have included speech and image recognition, along with others. There appears to be an increasing demand for improved performance and efficiency of computations associated with ANNs.
Processor with Architectural Neural Network Unit
Referring now to
The processor 100 is an electronic device that functions as a central processing unit (CPU) on an integrated circuit. The processor 100 receives digital data as input, processes the data according to instructions fetched from a memory, and generates results of operations prescribed by the instructions as output. The processor 100 may be employed in a desktop, mobile, or tablet computer, and is employed for uses such as computation, text editing, multimedia display, and Internet browsing. The processor 100 may also be disposed in an embedded system to control a wide variety of devices including appliances, mobile telephones, smart phones, automobiles and industrial control devices. A CPU is the electronic circuits (i.e., “hardware”) that execute the instructions of a computer program (also known as a “computer application” or “application”) by performing operations on data that include arithmetic operations, logical operations, and input/output operations. An integrated circuit (IC) is a set of electronic circuits fabricated on a small piece of semiconductor material, typically silicon. An IC is also referred to as a chip, a microchip, or a die.
The instruction fetch unit 101 controls the fetching of architectural instructions 103 from system memory (not shown) into the instruction cache 102. The instruction fetch unit 101 provides a fetch address to the instruction cache 102 that specifies a memory address at which the processor 100 fetches a cache line of architectural instruction bytes into the instruction cache 102. The fetch address is based on the current value of the instruction pointer (not shown), or program counter, of the processor 100. Normally, the program counter is incremented sequentially by the size of an instruction unless a control instruction is encountered in the instruction stream, such as a branch, call or return instruction, or an exception condition occurs, such as an interrupt, trap, exception or fault, in which case the program counter is updated with a non-sequential address, such as a branch target address, return address or exception vector. Generally speaking, the program counter is updated in response to the execution of instructions by the execution units 112/121. The program counter may also be updated in response to detection of an exception condition such as the instruction translator 104 encountering an instruction 103 that is not defined by the instruction set architecture of the processor 100.
The instruction cache 102 caches the architectural instructions 103 fetched from a system memory that is coupled to the processor 100. The architectural instructions 103 include a move to neural network (MTNN) instruction and a move from neural network (MFNN) instruction, which are described in more detail below. In one embodiment, the architectural instructions 103 are instructions of the x86 instruction set architecture (ISA), with the addition of the MTNN and MFNN instructions. In the context of the present disclosure, an x86 ISA processor as a processor that generates the same results at the instruction set architecture level that an Intel® 80386® processor generates when it executes the same machine language instructions. However, other embodiments contemplate other instruction set architectures, such as Advanced RISC Machines (ARM)®, Sun SPARC®, or PowerPC®. The instruction cache 102 provides the architectural instructions 103 to the instruction translator 104, which translates the architectural instructions 103 into microinstructions 105.
The microinstructions 105 are provided to the rename unit 106 and eventually executed by the execution units 112/121. The microinstructions 105 implement the architectural instructions. Preferably, the instruction translator 104 includes a first portion that translates frequently executed and/or relatively less complex architectural instructions 103 into microinstructions 105. The instruction translator 104 also includes a second portion that includes a microcode unit (not shown). The microcode unit includes a microcode memory that holds microcode instructions that implement complex and/or infrequently used instructions of the architectural instruction set. The microcode unit also includes a microsequencer that provides a non-architectural micro-program counter (micro-PC) to the microcode memory. Preferably, the microcode instructions are translated by a microtranslator (not shown) into the microinstructions 105. A selector selects the microinstructions 105 from either the first portion or the second portion for provision to the rename unit 106, depending upon whether or not the microcode unit currently has control.
The rename unit 106 renames architectural registers specified in the architectural instructions 103 to physical registers of the processor 100. Preferably, the processor 100 includes a reorder buffer (not shown). The rename unit 106 allocates, in program order, an entry in the reorder buffer for each microinstruction 105. This enables the processor 100 to retire the microinstructions 105, and their corresponding architectural instructions 103, in program order. In one embodiment, the media registers 118 are 256 bits wide and the GPR 116 are 64 bits wide. In one embodiment, the media registers 118 are x86 media registers, such as Advanced Vector Extensions (AVX) registers.
In one embodiment, each entry in the reorder buffer includes storage for the result of the microinstruction 105; additionally, the processor 100 includes an architectural register file that includes a physical register for each of the architectural registers, e.g., the media registers 118 and the GPR 116 and other architectural registers. (Preferably, there are separate register files for the media registers 118 and GPR 116, for example, since they are different sizes.) For each source operand of a microinstruction 105 that specifies an architectural register, the rename unit populates the source operand field in the microinstruction 105 with the reorder buffer index of the newest older microinstruction 105 that writes to the architectural register. When the execution unit 112/121 completes execution of the microinstruction 105, it writes the result to the microinstruction's 105 reorder buffer entry. When the microinstruction 105 retires, a retire unit (not shown) writes the result from the microinstruction's reorder buffer entry to the register of the physical register file associated with the architectural destination register specified by the retiring microinstruction 105.
In another embodiment, the processor 100 includes a physical register file that includes more physical registers than the number of architectural registers, but does not include an architectural register file, and the reorder buffer entries do not include result storage. (Preferably, there are separate physical register files for the media registers 118 and GPR 116, for example, since they are different sizes.) The processor 100 also includes a pointer table with an associated pointer for each architectural register. For the operand of a microinstruction 105 that specifies an architectural register, the rename unit populates the destination operand field in the microinstruction 105 with a pointer to a free register in the physical register file. If no registers are free in the physical register file, the rename unit 106 stalls the pipeline. For each source operand of a microinstruction 105 that specifies an architectural register, the rename unit populates the source operand field in the microinstruction 105 with a pointer to the register in the physical register file assigned to the newest older microinstruction 105 that writes to the architectural register. When the execution unit 112/121 completes execution of the microinstruction 105, it writes the result to a register of the physical register file pointed to by the microinstruction's 105 destination operand field. When the microinstruction 105 retires, the retire unit copies the microinstruction's 105 destination operand field value to the pointer in the pointer table associated with the architectural destination register specified by the retiring microinstruction 105.
The reservation stations 108 hold microinstructions 105 until they are ready to be issued to an execution unit 112/121 for execution. A microinstruction 105 is ready to be issued when all of its source operands are available and an execution unit 112/121 is available to execute it. The execution units 112/121 receive register source operands from the reorder buffer or the architectural register file in the first embodiment or from the physical register file in the second embodiment described above. Additionally, the execution units 112/121 may receive register source operands directly from the execution units 112/121 via result forwarding buses (not shown). Additionally, the execution units 112/121 may receive from the reservation stations 108 immediate operands specified by the microinstructions 105. As discussed in more detail below, the MTNN and MFNN architectural instructions 103 include an immediate operand that specifies a function to be performed by the NNU 121 that is provided in one of the one or more microinstructions 105 into which the MTNN and MFNN architectural instructions 103 are translated.
The execution units 112 include one or more load/store units (not shown) that load data from the memory subsystem 114 and store data to the memory subsystem 114. Preferably, the memory subsystem 114 includes a memory management unit (not shown), which may include, e.g., translation lookaside buffers and a tablewalk unit, a level-1 data cache (and the instruction cache 102), a level-2 unified cache, and a bus interface unit that interfaces the processor 100 to system memory. In one embodiment, the processor 100 of
The NNU 121 includes a weight random access memory (RAM) 124, a data RAM 122, N neural processing units (NPUs) 126, a program memory 129, a sequencer 128 and control and status registers 127. The NPUs 126 function conceptually as neurons in a neural network. The weight RAM 124, data RAM 122 and program memory 129 are all writable and readable via the MTNN and MFNN architectural instructions 103, respectively. The weight RAM 124 is arranged as W rows of N weight words, and the data RAM 122 is arranged as D rows of N data words. Each data word and each weight word is a plurality of bits, preferably 8 bits, 9 bits, 12 bits or 16 bits. Each data word functions as the output value (also sometimes referred to as an activation) of a neuron of the previous layer in the network, and each weight word functions as a weight associated with a connection coming into a neuron of the instant layer of the network. Although in many uses of the NNU 121 the words, or operands, held in the weight RAM 124 are in fact weights associated with a connection coming into a neuron, it should be understood that in other uses of the NNU 121 the words held in the weight RAM 124 are not weights, but are nevertheless referred to as “weight words” because they are stored in the weight RAM 124. For example, in some uses of the NNU 121, e.g., the convolution example of
In one embodiment, the NPUs 126 and sequencer 128 comprise combinatorial logic, sequential logic, state machines, or a combination thereof. An architectural instruction (e.g., MFNN instruction 1500) loads the contents of the status register 127 into one of the GPR 116 to determine the status of the NNU 121, e.g., that the NNU 121 has completed a command or completed a program the NNU 121 was running from the program memory 129, or that the NNU 121 is free to receive a new command or start a new NNU program.
Advantageously, the number of NPUs 126 may be increased as needed, and the size of the weight RAM 124 and data RAM 122 may be extended in both width and depth accordingly. Preferably, the weight RAM 124 is larger since in a classic neural network layer there are many connections, and therefore weights, associated with each neuron. Various embodiments are described herein regarding the size of the data and weight words and the sizes of the weight RAM 124 and data RAM 122 and the number of NPUs 126. In one embodiment, a NNU 121 with a 64 KB (8192 bits×64 rows) data RAM 122, a 2 MB (8192 bits×2048 rows) weight RAM 124, and 512 NPUs 126 is implemented in a Taiwan Semiconductor Manufacturing Company, Limited (TSMC) 16 nm process and occupies approximately a 3.3 mm2 area.
The sequencer 128 fetches instructions from the program memory 129 and executes them, which includes, among other things, generating address and control signals for provision to the data RAM 122, weight RAM 124 and NPUs 126. The sequencer 128 generates a memory address 123 and a read command for provision to the data RAM 122 to select one of the D rows of N data words for provision to the N NPUs 126. The sequencer 128 also generates a memory address 125 and a read command for provision to the weight RAM 124 to select one of the W rows of N weight words for provision to the N NPUs 126. The sequence of the addresses 123 and 125 generated by the sequencer 128 for provision to the NPUs 126 determines the “connections” between neurons. The sequencer 128 also generates a memory address 123 and a write command for provision to the data RAM 122 to select one of the D rows of N data words for writing from the N NPUs 126. The sequencer 128 also generates a memory address 125 and a write command for provision to the weight RAM 124 to select one of the W rows of N weight words for writing from the N NPUs 126. The sequencer 128 also generates a memory address 131 to the program memory 129 to select a NNU instruction that is provided to the sequencer 128, such as described below. The memory address 131 corresponds to a program counter (not shown) that the sequencer 128 generally increments through sequential locations of the program memory 129 unless the sequencer 128 encounters a control instruction, such as a loop instruction (see, for example,
The N NPUs 126 generate N result words 133 that may be written back to a row of the weight RAM 124 or to the data RAM 122. Preferably, the weight RAM 124 and the data RAM 122 are directly coupled to the N NPUs 126. More specifically, the weight RAM 124 and data RAM 122 are dedicated to the NPUs 126 and are not shared by the other execution units 112 of the processor 100, and the NPUs 126 are capable of consuming a row from one or both of the weight RAM 124 and data RAM 122 each clock cycle in a sustained manner, preferably in a pipelined fashion. In one embodiment, each of the data RAM 122 and the weight RAM 124 is capable of providing 8192 bits to the NPUs 126 each clock cycle. The 8192 bits may be consumed as 512 16-bit words or as 1024 8-bit words, as described in more detail below.
Advantageously, the size of the data set that may be processed by the NNU 121 is not limited to the size of the weight RAM 124 and data RAM 122, but is rather only limited by the size of system memory since data and weights may be moved between system memory and the weight RAM 124 and data RAM 122 using the MTNN and MFNN instructions (e.g., through the media registers 118). In one embodiment, the data RAM 122 is dual-ported to enable data words to be written to the data RAM 122 while data words are concurrently read from or written to the data RAM 122. Furthermore, the large memory hierarchy of the memory subsystem 114, including the cache memories, provides very high data bandwidth for the transfers between the system memory and the NNU 121. Still further, preferably, the memory subsystem 114 includes hardware data prefetchers that track memory access patterns, such as loads of neural data and weights from system memory, and perform data prefetches into the cache hierarchy to facilitate high bandwidth and low latency transfers to the weight RAM 124 and data RAM 122.
Although embodiments are described in which one of the operands provided to each NPU 126 is provided from a weight memory and is denoted a weight, which are commonly used in neural networks, it should be understood that the operands may be other types of data associated with calculations whose speed may be improved by the apparatuses described.
Referring now to
The NPU 126 includes a register 205, a 2-input multiplexed register (mux-reg) 208, an arithmetic logic unit (ALU) 204, an accumulator 202, and an activation function unit (AFU) 212. The register 205 receives a weight word 206 from the weight RAM 124 and provides its output 203 on a subsequent clock cycle. The mux-reg 208 selects one of its inputs 207 or 211 to store in its register and then to provide on its output 209 on a subsequent clock cycle. One input 207 receives a data word from the data RAM 122. The other input 211 receives the output 209 of the adjacent NPU 126. The NPU 126 shown in
The ALU 204 has three inputs. One input receives the weight word 203 from the register 205. Another input receives the output 209 of the mux-reg 208. The other input receives the output 217 of the accumulator 202. The ALU 204 performs arithmetic and/or logical operations on its inputs to generate a result provided on its output. Preferably, the arithmetic and/or logical operations to be performed by the ALU 204 are specified by instructions stored in the program memory 129. For example, the multiply-accumulate instruction of
The ALU 204 provides its output 215 to the accumulator 202 for storage therein. The ALU 204 includes a multiplier 242 that multiplies the weight word 203 and the data word of the mux-reg 208 output 209 to generate a product 246. In one embodiment, the multiplier 242 multiplies two 16-bit operands to generate a 32-bit result. The ALU 204 also includes an adder 244 that adds the product 246 to the accumulator 202 output 217 to generate a sum, which is the result 215 accumulated in the accumulator 202 for storage in the accumulator 202. In one embodiment, the adder 244 adds the 32-bit result of the multiplier 242 to a 41-bit value 217 of the accumulator 202 to generate a 41-bit result. In this manner, using the rotater aspect of the mux-reg 208 over the course of multiple clock cycles, the NPU 126 accomplishes a sum of products for a neuron as required by neural networks. The ALU 204 may also include other circuit elements to perform other arithmetic/logical operations such as those above. In one embodiment, a second adder subtracts the weight word 203 from the data word of the mux-reg 208 output 209 to generate a difference, which the adder 244 then adds to the accumulator 202 output 217 to generate a sum 215, which is the result accumulated in the accumulator 202. In this manner, over the course of multiple clock cycles, the NPU 126 may accomplish a sum of differences. Preferably, although the weight word 203 and the data word 209 are the same size (in bits), they may have different binary point locations, as described in more detail below. Preferably, the multiplier 242 and adder 244 are integer multipliers and adders, as described in more detail below, to advantageously accomplish less complex, smaller, faster and lower power consuming ALUs 204 than floating-point counterparts. However, it should be understood that in other embodiments the ALU 204 performs floating-point operations.
Although
The AFU 212 receives the output 217 of the accumulator 202. The AFU 212 performs an activation function on the accumulator 202 output 217 to generate a result 133 of
Preferably, the width (in bits) of the accumulator 202 is greater than the width of the AFU 212 output 133. For example, in one embodiment, the accumulator is 41 bits wide, to avoid loss of precision in the accumulation of up to 512 32-bit products (as described in more detail below, e.g., with respect to
In one embodiment, the NPU 126 is pipelined. For example, the NPU 126 may include registers of the ALU 204, such as a register between the multiplier and the adder and/or other circuits of the ALU 204, and a register that holds the output of the AFU 212. Other embodiments of the NPU 126 are described below.
Referring now to
Although
Referring now to
For each instruction of the program, all of the NPUs 126 perform the instruction in parallel. That is, all N NPUs 126 performs the instruction in the first row in the same clock cycle(s), all N NPUs 126 performs the instruction in the second row in the same clock cycle(s), and so forth. However, other embodiments are described below in which some of the instructions are performed in a partially parallel and partially sequential fashion, e.g., the activation function and output instructions at addresses 3 and 4 in an embodiment in which NPUs 126 share an activation function unit, e.g., with respect to the embodiment of
The first row, at address 0 (although other addresses may be specified), specifies an initialize NPU instruction. The initialize instruction clears the accumulator 202 value to zero. In one embodiment, the initialize instruction can also specify to load the accumulator 202 with the corresponding word of a row of the data RAM 122 or weight RAM 124 whose address is specified by the instruction. The initialize instruction also loads configuration values into the control register 127, as described in more detail below with respect to
The second row, at address 1, specifies a multiply-accumulate instruction that instructs the 512 NPUs 126 to load a respective data word from a row of the data RAM 122 and to load a respective weight word from a row of the weight RAM 124, and to perform a first multiply-accumulate operation on the data word input 207 and weight word input 206, which is accumulated with the initialized accumulator 202 zero value. More specifically, the instruction instructs the sequencer 128 to generate a value on the control input 213 to select the data word input 207. In the example of
The third row, at address 2, specifies a multiply-accumulate rotate instruction with a count of 511, which instructs each of the 512 NPUs 126 to perform 511 multiply-accumulate operations. The instruction instructs the 512 NPUs 126 that the data word 209 input to the ALU 204 for each of the 511 multiply-accumulate operations is to be the rotated value 211 from the adjacent NPU 126. That is, the instruction instructs the sequencer 128 to generate a value on the control input 213 to select the rotated value 211. Additionally, the instruction instructs the 512 NPUs 126 to load a respective weight word for each of the 511 multiply-accumulate operations from the “next” row of the weight RAM 124. That is, the instruction instructs the sequencer 128 to increment the weight RAM address 125 by one relative to its value in the previous clock cycle, which in the example would be row 1 on the first clock cycle of the instruction, row 2 on the next clock cycle, row 3 on the next clock cycle, and so forth to row 511 on the 511th clock cycle. For each of the 511 multiply-accumulate operations, the product of the rotated input 211 and weight word input 206 is accumulated with the previous value in the accumulator 202. The 512 NPUs 126 perform the 511 multiply-accumulate operations in 511 clock cycles, in which each NPU 126 performs a multiply-accumulate operation on a different data word from row 17 of the data RAM 122—namely, the data word operated on by the adjacent NPU 126 in the previous cycle—and a different weight word associated with the data word, which is conceptually a different connection input to the neuron. In the example, it is assumed that the number of connection inputs to each NPU 126 (neuron) is 512, thus involving 512 data words and 512 weight words. Once the last iteration of the multiply-accumulate rotate instruction of row 2 is performed, the accumulator 202 contains the sum of products for all 512 of the connection inputs. In one embodiment, rather than having a separate instruction for each type of ALU operation (e.g., multiply-accumulate, maximum of accumulator and weight word, etc. as described above), the NPU 126 instruction set includes an “execute” instruction that instructs the ALU 204 to perform an ALU operation specified by the initialize NPU instruction, such as specified in the ALU function 2926 of
The fourth row, at address 3, specifies an activation function instruction. The activation function instruction instructs the AFU 212 to perform the specified activation function on the accumulator 202 value 217 to generate the result 133. The activation functions according to one embodiment are described in more detail below.
The fifth row, at address 4, specifies a write AFU output instruction that instructs the 512 NPUs 126 to write back their AFU 212 output as results 133 to a row of the data RAM 122, which is row 16 in the example. That is, the instruction instructs the sequencer 128 to output a data RAM address 123 value of 16 and a write command (in contrast to a read command in the case of the multiply-accumulate instruction at address 1). Preferably the execution of the write AFU output instruction may be overlapped with the execution of other instructions in a pipelined nature such that the write AFU output instruction effectively executes in a single clock cycle.
Preferably, each NPU 126 is configured as a pipeline that includes the various functional elements, e.g., the mux-reg 208 (and mux-reg 705 of
Referring now to
At clock 0, each of the 512 NPUs 126 performs the initialization instruction of
At clock 1, each of the 512 NPUs 126 performs the multiply-accumulate instruction at address 1 of
At clock 2, each of the 512 NPUs 126 performs a first iteration of the multiply-accumulate rotate instruction at address 2 of
At clock 3, each of the 512 NPUs 126 performs a second iteration of the multiply-accumulate rotate instruction at address 2 of
At clock 512, each of the 512 NPUs 126 performs a 511th iteration of the multiply-accumulate rotate instruction at address 2 of
At clock 513, the AFU 212 of each of the 512 NPUs 126 performs the activation function instruction at address 3 of
Referring now to
As may be observed, the number clocks required to generate the result words (neuron outputs) produced and written back to the data RAM 122 or weight RAM 124 is approximately the square root of the number of data inputs (connections) received by the current layer of the neural network. For example, if the currently layer has 512 neurons that each has 512 connections from the previous layer, the total number of connections is 256K and the number of clocks required to generate the results for the current layer is slightly over 512. Thus, the NNU 121 provides extremely high performance for neural network computations.
Referring now to
At block 602, the processor 100, i.e., the architectural program running on the processor 100, writes the input values to the current hidden layer of neurons to the data RAM 122, e.g., into row 17 of the data RAM 122, as shown and described with respect to
At block 604, the processor 100 writes the weight words for layer 1 to the weight RAM 124, e.g., to rows 0 through 511, as shown in
At block 606, the processor 100 writes a multiply-accumulate-activation function program (e.g., of
At decision block 608, the architectural program determines whether the value of variable N is less than NUM_LAYERS. If so, flow proceeds to block 612; otherwise, flow proceeds to block 614.
At block 612, the processor 100 writes the weight words for layer N+1 to the weight RAM 124, e.g., to rows 512 through 1023. Thus, advantageously, the architectural program writes the weight words for the next layer to the weight RAM 124 while the NNU 121 is performing the hidden layer computations for the current layer so that the NNU 121 can immediately start performing the hidden layer computations for the next layer once the computations for the current layer are complete, i.e., written to the data RAM 122. Flow proceeds to block 614.
At block 614, the processor 100 determines that the currently running NNU program (started at block 606 in the case of layer 1, and started at block 618 in the case of layers 2 through 4) has completed. Preferably, the processor 100 determines this by executing a MFNN 1500 instruction to read the NNU 121 status register 127. In an alternate embodiment, the NNU 121 generates an interrupt to indicate it has completed the multiply-accumulate-activation function layer program. Flow proceeds to decision block 616.
At decision block 616, the architectural program determines whether the value of variable N is less than NUM_LAYERS. If so, flow proceeds to block 618; otherwise, flow proceeds to block 622.
At block 618, the processor 100 updates the multiply-accumulate-activation function program so that it can perform the hidden layer computations for layer N+1. More specifically, the processor 100 updates the data RAM 122 row value of the multiply-accumulate instruction at address 1 of
At block 622, the processor 100 reads the results of the NNU program from the data RAM 122 for layer N. However, if the results are simply to be used by the next layer, then the architectural program may not need to read the results from the data RAM 122, but instead leave them in the data RAM 122 for the next hidden layer computations. Flow proceeds to decision block 624.
At decision block 624, the architectural program determines whether the value of variable N is less than NUM_LAYERS. If so, flow proceeds to block 626; otherwise, flow ends.
At block 626, the architectural program increments N by one. Flow returns to decision block 608.
As may be determined from the example of
Referring now to
Including the mux-regs 208 and/or mux-regs 705 (as well as the mux-regs of other embodiments, such as of
In some applications, it is useful for the processor 100 to receive back (e.g., to the media registers 118 via the MFNN instruction of
Referring now to
The sequencer 128 generates a value on the control input 803 to control the mux 802 to select one of the words (e.g., 16 bits) of the accumulator 202 in response to a write ACC instruction such as the write ACC instructions at addresses 3 through 5 of
Referring now to
Referring now to
Referring now to
The NNU 121 also includes a row buffer 1104 and a plurality of shared AFUs 1112 coupled between the NPUs 126 and the row buffer 1104. The row buffer 1104 is the same width (in bits) as a row of the data RAM 122 or weight RAM 124, e.g., 512 words. There is one AFU 1112 per NPU 126 group, i.e., each AFU 1112 has a corresponding NPU 126 group; thus, in the embodiment of
A motivation for sharing AFUs 1112 is to reduce the size of the NNU 121. The size reduction is obtained at the cost of a performance reduction. That is, it may take several clocks longer, depending upon the sharing ratio, to generate the results 133 for the entire array of NPUs 126, as demonstrated in
In one embodiment, each of the NPUs 126 includes an AFU 212 that performs relatively simple activation functions, thus enabling the simple AFUs 212 to be relatively small and therefore included in each NPU 126; whereas, the shared, or complex, AFUs 1112 perform relatively complex activation functions and are thus relatively significantly larger than the simple AFUs 212. In such an embodiment, the additional clock cycles are only required when a complex activation function is specified that requires sharing of a complex AFU 1112, but not when an activation function is specified that the simple AFU 212 is configured to perform.
Referring now to
Each row of the timing diagram of
As shown in both
At clock 514, AFU 0 (the AFU 1112 associated with group 0) begins to perform the specified activation function on the accumulator 202 value 217 of NPU 1, which is the second NPU 126 in group 0, and the output of AFU 0 will be stored to row buffer 1104 word 1, as shown. Also at clock 514, each of the AFUs 1112 begins to perform the specified activation function on the accumulator 202 of the second NPU 126 in its corresponding group of NPUs 126. Thus, in clock 514, as shown in
At clock 521, once all 512 results associated with the 512 NPUs 126 have been generated and written to the row buffer 1104, the row buffer 1104 begins to write its contents to the data RAM 122 or weight RAM 124. In this fashion, the AFU 1112 of each of the 64 groups of NPUs 126 performs a portion of the activation function instruction at address 3 of
Embodiments such as that of
Referring now to
The immediate field 1412 provides a value that specifies a function 1432 to control logic 1434 of the NNU 121. Preferably, the function 1432 is provided as an immediate operand of a microinstruction 105 of
The gpr field 1408 specifies one of the GPR in the general purpose register file 116. In one embodiment, each GPR is 64 bits. The general purpose register file 116 provides the value from the selected GPR to the NNU 121, as shown, which uses the value as an address 1422. The address 1422 selects a row of the memory specified in the function 1432. In the case of the data RAM 122 or weight RAM 124, the address 1422 additionally selects a chunk that is twice the size of a media register (e.g., 512 bits) location within the selected row. Preferably, the location is on a 512-bit boundary. In one embodiment, a multiplexer selects either the address 1422 (or address 1422 in the case of a MFNN instruction 1400 described below) or the address 123/125/131 from the sequencer 128 for provision to the data RAM 122/weight RAM 124/program memory 129. In one embodiment, as described in more detail below, the data RAM 122 is dual-ported to allow the NPUs 126 to read/write the data RAM 122 concurrently with the media registers 118 reading/writing the data RAM 122. In one embodiment, the weight RAM 124 is also dual-ported for a similar purpose.
The src1 field 1404 and src2 field 1406 each specify a media register in the media register file 118. In one embodiment, each media register 118 is 256 bits. The media register file 118 provides the concatenated data (e.g., 512 bits) from the selected media registers to the data RAM 122 (or weight RAM 124 or program memory 129) for writing into the selected row 1428 specified by the address 1422 and into the location specified by the address 1422 within the selected row 1428, as shown. Advantageously, by executing a series of MTNN instructions 1400 (and MFNN instructions 1400 described below), an architectural program executing on the processor 100 can populate rows of the data RAM 122 and rows of the weight RAM 124 and write a program to the program memory 129, such as the programs described herein (e.g., of
In one embodiment, rather than specifying two source registers (e.g., 1404 and 1406), the MTNN instruction 1400 specifies a start source register and a number of source registers, Q. This form of the MTNN instruction 1400 instructs the processor 100 to write the media register 118 specified as the start source register as well as the next Q−1 sequential media registers 118 to the NNU 121, i.e., to the data RAM 122 or weight RAM 124 specified. Preferably, the instruction translator 104 translates the MTNN instruction 1400 into as many microinstructions as needed to write all the Q specified media registers 118. For example, in one embodiment, when the MTNN instruction 1400 specifies a start source register as MR4 and Q is 8, then the instruction translator 104 translates the MTNN instruction 1400 into four microinstructions, the first of which writes MR4 and MR5, the second of which writes MR6 and MR7, the third of which writes MR8 and MR9, and the fourth of which writes MR 10 and MR11. In an alternate embodiment in which the data path from the media registers 118 to the NNU 121 is 1024 bits rather than 512, the instruction translator 104 translates the MTNN instruction 1400 into two microinstructions, the first of which writes MR4 through MR7, and the second of which writes MR8 through MR11. A similar embodiment is contemplated in which the MFNN instruction 1500 specifies a start destination register and a number of destination registers, to enable reading larger chunks of a row of the data RAM 122 or weight RAM 124 per MFNN instruction 1500 than a single media register 118.
Referring now to
The immediate field 1512 provides a value that specifies a function 1532 to the control logic 1434 of the NNU 121. Preferably, the function 1532 is provided as an immediate operand of a microinstruction 105 of
The gpr field 1508 specifies one of the GPR in the general purpose register file 116. The general purpose register file 116 provides the value from the selected GPR to the NNU 121, as shown, which uses the value as an address 1522 that operates in a manner similar to the address 1422 of
The dst field 1504 specifies a media register in the media register file 118. The media register file 118 receives the data (e.g., 256 bits) into the selected media register from the data RAM 122 (or weight RAM 124 or program memory 129) read from the selected row 1528 specified by the address 1522 and from the location specified by the address 1522 within the selected row 1528, as shown.
Referring now to
The read port 1602 is coupled, preferably in a multiplexed fashion, to the NPUs 126 and to the media registers 118. (More precisely, the media registers 118 may be coupled to the read port 1602 via result busses that may also provide data to a reorder buffer and/or result forwarding busses to the other execution units 112). The NPUs 126 and media registers 118 share the read port 1602 to read the data RAM 122. The write port 1604 is also coupled, preferably in a multiplexed fashion, to the NPUs 126 and to the media registers 118. The NPUs 126 and media registers 118 shared the write port 1604 to write the data RAM 122. Thus, advantageously, the media registers 118 can concurrently write to the data RAM 122 while the NPUs 126 are also reading from the data RAM 122, or the NPUs 126 can concurrently write to the data RAM 122 while the media registers 118 are reading from the data RAM 122. This may advantageously provide improved performance. For example, the NPUs 126 can read the data RAM 122 (e.g., to continue to perform calculations) while the media registers 118 write more data words to the data RAM 122. For another example, the NPUs 126 can write calculation results to the data RAM 122 while the media registers 118 read calculation results from the data RAM 122. In one embodiment, the NPUs 126 can write a row of calculation results to the data RAM 122 while the NPUs 126 also read a row of data words from the data RAM 122. In one embodiment, the memory array 1606 is configured in banks. When the NPUs 126 access the data RAM 122, all of the banks are activated to access an entire row of the memory array 1606; whereas, when the media registers 118 access the data RAM 122, only the specified banks are activated. In one embodiment, each bank is 128 bits wide and the media registers 118 are 256 bits wide, hence two banks are activated per media register 118 access, for example. In one embodiment, one of the ports 1602/1604 is a read/write port. In one embodiment, both the ports 1602 and 1604 are read/write ports.
An advantage of the rotater capability of the NPUs 126 as described herein is that it facilitates the ability for the memory array 1606 of the data RAM 122 to have significantly fewer rows, and therefore be relatively much smaller, than might otherwise be needed in order to insure that the NPUs 126 are highly utilized, which requires the architectural program (via the media registers 118) to be able to continue to provide data to the data RAM 122 and to retrieve results from it while the NPUs 126 are performing computations.
Referring now to
The port 1702 is coupled, preferably in a multiplexed fashion, to the NPUs 126 and to the buffer 1704. The NPUs 126 and buffer 1704 read and write the weight RAM 124 via the port 1702. The buffer 1704 is also coupled to the media registers 118 of
In one embodiment that includes the buffer 1704, writing to the weight RAM 124 by an architectural program requires multiple MTNN instructions 1400. One or more MTNN instructions 1400 specify a function 1432 to write to specified chunks of the buffer 1704 followed by an MTNN instruction 1400 that specifies a function 1432 that instructs the NNU 121 to write the contents of the buffer 1704 to a specified row of the weight RAM 124, where the size of a chunk is twice the number of bits of a media register 118 and chunks are naturally aligned within the buffer 1704. In one embodiment, in each of the MTNN instructions 1400 that specify a function 1432 to write to specified chunks of the buffer 1704, a bitmask is included that has a bit corresponding to each chunk of the buffer 1704. The data from the two specified source registers 118 is written to each chunk of the buffer 1704 whose corresponding bit in the bitmask is set. This may be useful for repeated data values within a row of the weight RAM 124. For example, in order to zero out the buffer 1704 (and subsequently a row of the weight RAM 124), the programmer may load the source registers with zero and set all bits of the bitmask. Additionally, the bitmask enables the programmer to only write to selected chunks of the buffer 1704 and thereby retain the previous data in the other chunks.
In one embodiment that includes the buffer 1704, reading from the weight RAM 124 by an architectural program requires multiple MFNN instructions 1500. An initial MFNN instruction 1500 specifies a function 1532 to load the buffer 1704 from a specified row of the weight RAM 124 followed by one or more MFNN instructions 1500 that specify a function 1532 to read a specified chunk of the buffer 1704 into the destination register, where the size of a chunk is the number of bits of a media register 118 and chunks are naturally aligned within the buffer 1704. Other embodiments are contemplated in which the weight RAM 124 includes multiple buffers 1704 to further reduce contention between the NPUs 126 and the architectural program for access to the weight RAM 124 by increasing the number of accesses that can be made by the architectural program while the NPUs 126 are executing, which may increase the likelihood that the accesses by the buffers 1704 can be performed during clock cycles in which the NPUs 126 do not need to access the weight RAM 124.
Although
Referring now to
The NPU 126 of
Each of the mux-regs 208A/208B is separately half the width (e.g., 8 bits) of register 208 of
The input 211A receives the output 209A of mux-reg 208A of the adjacent NPU 126, and the input 211B receives the output 209B of mux-reg 208B of the adjacent NPU 126. The input 1811A receives the output 209B of mux-reg 208B of the adjacent NPU 126, and the input 1811B receives the output 209A of mux-reg 208A of the instant NPU 126, as shown. The NPU 126 shown in
The control input 213 controls which of the three inputs each of the mux-regs 208A/208B selects to store in its respective register and that is subsequently provided on the respective outputs 209A/209B. When the NPU 126 is instructed to load a row from the data RAM 122 (e.g., as by the multiply-accumulate instruction at address 1 of
When the NPU 126 is instructed to rotate the previously received data row values (e.g., as by the multiply-accumulate rotate instruction at address 2 of
When the NPU 126 is instructed to rotate the previously received data row values, if the NPU 126 is in a wide configuration, the control input 213 controls each of the mux-regs 208A/208B to select the respective input 211A/211B. In this case, the mux-regs 208A/208B function together effectively as if the NPU 126 is a single wide NPU 126. In this manner, the mux-regs 208A and 208B of the N NPUs 126 collectively operate as an N-wide-word rotater, similar to the manner described with respect to
The ALU 204 includes the operand selection logic 1898, a wide multiplier 242A, a narrow multiplier 242B, a wide two-input mux 1896A, a narrow two-input mux 1896B, a wide adder 244A and a narrow adder 244B. Effectively, the ALU 204 comprises the operand selection logic 1898, a wide ALU 204A (comprising the wide multiplier 242A, the wide mux 1896A and the wide adder 244A) and a narrow ALU 204B (comprising the narrow multiplier 242B, the narrow mux 1896B and the narrow adder 244B). Preferably, the wide multiplier 242A multiplies two wide words and is similar to the multiplier 242 of
The operand selection logic 1898 selects operands from 209A, 209B, 203A and 203B to provide to the other elements of the ALU 204, as described in more detail below. Preferably, the operand selection logic 1898 also performs other functions, such as performing sign extension of signed-valued data words and weight words. For example, if the NPU 126 is in a narrow configuration, the operand selection logic 1898 sign extends the narrow data word and weight word to the width of a wide word before providing them to the wide multiplier 242A. Similarly, if the ALU 204 is instructed to pass through a narrow data/weight word (bypass the wide multiplier 242A via wide mux 1896A), the operand selection logic 1898 sign extends the narrow data/weight word to the width of a wide word before providing it to the wide adder 244A. Preferably, logic is also present in the ALU 204 of the NPU 126 of
The wide mux 1896A receives the output of the wide multiplier 242A and an operand from the operand selection logic 1898 and selects one of the inputs for provision to the wide adder 244A, and the narrow mux 1896B receives the output of the narrow multiplier 242B and an operand from the operand selection logic 1898 and selects one of the inputs for provision to the narrow adder 244B.
The operands provided by the operand selection logic 1898 depend upon the configuration of the NPU 126 and upon the arithmetic and/or logical operations to be performed by the ALU 204 based on the function specified by the instruction being executed by the NPU 126. For example, if the instruction instructs the ALU 204 to perform a multiply-accumulate and the NPU 126 is in a wide configuration, the operand selection logic 1898 provides to the wide multiplier 242A on one input a wide word that is the concatenation of outputs 209A and 209B and on the other input a wide word that is the concatenation of outputs 203A and 203B, and the narrow multiplier 242B is inactive, so that the NPU 126 functions as a single wide NPU 126 similar to the NPU 126 of
For another example, if the NPU 126 is in a wide configuration and the instruction instructs the ALU 204 to perform an accumulate of the weight word, the wide multiplier 242A is bypassed and the operand selection logic 1898 provides the concatenation of outputs 203A and 203B to the wide mux 1896A for provision to the wide adder 244A. Whereas, if the NPU 126 is in a narrow configuration and the instruction instructs the ALU 204 to perform an accumulate of the weight word, the wide multiplier 242A is bypassed and the operand selection logic 1898 provides an extended version of the output 203A to the wide mux 1896A for provision to the wide adder 244A; and the narrow multiplier 242B is bypassed and the operand selection logic 1898 provides an extended version of the output 203B to the narrow mux 1896B for provision to the narrow adder 244B.
For another example, if the NPU 126 is in a wide configuration and the instruction instructs the ALU 204 to perform an accumulate of the data word, the wide multiplier 242A is bypassed and the operand selection logic 1898 provides the concatenation of outputs 209A and 209B to the wide mux 1896A for provision to the wide adder 244A. Whereas, if the NPU 126 is in a narrow configuration and the instruction instructs the ALU 204 to perform an accumulate of the data word, the wide multiplier 242A is bypassed and the operand selection logic 1898 provides an extended version of the output 209A to the wide mux 1896A for provision to the wide adder 244A; and the narrow multiplier 242B is bypassed and the operand selection logic 1898 provides an extended version of the output 209B to the narrow mux 1896B for provision to the narrow adder 244B. The accumulation of weight/data words may be useful for performing averaging operations that are used in pooling layers of some artificial neural network applications, such as image processing.
Preferably, the NPU 126 also includes a second wide mux (not shown) for bypassing the wide adder 244A to facilitate loading the wide accumulator 202A with a wide data/weight word in wide configuration or an extended narrow data/weight word in narrow configuration, and a second narrow mux (not shown) for bypassing the narrow adder 244B to facilitate loading the narrow accumulator 202B with a narrow data/weight word in narrow configuration. Preferably, the ALU 204 also includes wide and narrow comparator/mux combinations (not shown) that receive the respective accumulator value 217A/217B and respective mux 1896A/1896B output to select the maximum value between the accumulator value 217A/217B and a data/weight word 209A/B/203A/B, an operation that is used in pooling layers of some artificial neural network applications, as described in more detail below, e.g., with respect to
The narrow AFU 212B receives the output 217B of the narrow accumulator 202B and performs an activation function on it to generate a narrow result 133B, and the wide AFU 212A receives the output 217A of the wide accumulator 202A and performs an activation function on it to generate a wide result 133A. When the NPU 126 is in a narrow configuration, the wide AFU 212A considers the output 217A of the wide accumulator 202A accordingly and performs an activation function on it to generate a narrow result, e.g., 8 bits, as described in more detail below with respect to
As may observed from the above description, advantageously the single NPU 126 operates effectively as two narrow NPUs when in a narrow configuration, thus providing, for smaller words, approximately up to twice the throughput as when in the wide configuration. For example, assume a neural network layer having 1024 neurons each receiving 1024 narrow inputs from the previous layer (and having narrow weight words), resulting in 1 Mega-connections. An NNU 121 having 512 NPUs 126 in a narrow configuration (1024 narrow NPU) compared to an NNU 121 having 512 NPUs 126 in a wide configuration is capable of processing four times the number of connections (1 Mega-connections vs. 256K connections) in approximately half the time (approx. 1026 clocks vs. 514 clocks), albeit for narrow words rather than wide words.
In one embodiment, the dynamically configurable NPU 126 of
Referring now to
Each mux-reg 208A receives its corresponding narrow data word 207A of one row of the D rows of the data RAM 122, and each mux-reg 208B receives its corresponding narrow data word 207B of one row of the D rows of the data RAM 122. That is, mux-reg 0A receives narrow data word 0 of the data RAM 122 row, mux-reg 0B receives narrow data word 1 of the data RAM 122 row, mux-reg 1A receives narrow data word 2 of the data RAM 122 row, mux-reg 1B receives narrow data word 3 of the data RAM 122 row, and so forth to mux-reg 511A receives narrow data word 1022 of the data RAM 122 row, and mux-reg 511B receives narrow data word 1023 of the data RAM 122 row. Additionally, mux-reg 1A receives on its input 211A the output 209A of mux-reg 0A, mux-reg 1B receives on its input 211B the output 209B of mux-reg 1B, and so forth to mux-reg 511A that receives on its input 211A the output 209A of mux-reg 510A and mux-reg 511B that receives on its input 211B the output 209B of mux-reg 510 B, and mux-reg 0A receives on its input 211A the output 209A of mux-reg 511A and mux-reg 0B receives on its input 211B the output 209B of mux-reg 511B. Each of the mux-regs 208A/208B receives the control input 213 that controls whether to select the data word 207A/207B or the rotated input 211A/211B or the rotated input 1811A/1811B. Finally, mux-reg 1A receives on its input 1811A the output 209B of mux-reg 0B, mux-reg 1B receives on its input 1811B the output 209A of mux-reg 1A, and so forth to mux-reg 511A that receives on its input 1811A the output 209B of mux-reg 510 B and mux-reg 511B that receives on its input 1811B the output 209A of mux-reg 511A, and mux-reg 0A receives on its input 1811A the output 209B of mux-reg 511B and mux-reg 0B receives on its input 1811B the output 209A of mux-reg 0A. Each of the mux-regs 208A/208B receives the control input 213 that controls whether to select the data word 207A/207B or the rotated input 211A/211B or the rotated input 1811A/1811B. As described in more detail below, in one mode of operation, on a first clock cycle, the control input 213 controls each of the mux-regs 208A/208B to select the data word 207A/207B for storage in the register and for subsequent provision to the ALU 204; and during subsequent clock cycles (e.g., M−1 clock cycles as described above), the control input 213 controls each of the mux-regs 208A/208B to select the rotated input 1811A/1811B for storage in the register and for subsequent provision to the ALU 204.
Referring now to
Referring now to
In the timing diagram of
At clock 0, each of the 1024 NPUs performs the initialization instruction of
At clock 1, each of the 1024 narrow NPUs performs the multiply-accumulate instruction at address 1 of
At clock 2, each of the 1024 narrow NPUs performs a first iteration of the multiply-accumulate rotate instruction at address 2 of
At clock 3, each of the 1024 narrow NPUs performs a second iteration of the multiply-accumulate rotate instruction at address 2 of
At clock 1024, each of the 1024 narrow NPUs performs a 1023rd iteration of the multiply-accumulate rotate instruction at address 2 of
At clock 1025, the AFU 212A/212B of each of the 1024 narrow NPUs performs the activation function instruction at address 3 of
Referring now to
As may be observed, the embodiment of
Referring now to
When in the funnel configuration, the NPU 126 operates similarly to when in the narrow configuration when executing a multiply-accumulate instruction such as at address 1 of
As may be observed with respect to the embodiment of
An advantage of the NNU 121 according to embodiments described herein is that the NNU 121 is capable of concurrently operating in a fashion that resembles a coprocessor in that it executes its own internal program and operating in a fashion that resembles an execution unit of a processor in that it executes architectural instructions (or microinstructions translated therefrom) issued to it. The architectural instructions are of an architectural program being performed by the processor that includes the NNU 121. In this manner, the NNU 121 operates in a hybrid fashion, which is advantageous because it provides the ability to sustain high utilization of the NNU 121. For example, the
Referring now to
The data array 2404 is a two-dimensional array of data values, and each data value (e.g., an image pixel value) is the size of a word of the data RAM 122 or weight RAM 124 (e.g., 16 bits or 8 bits). In the example, the data values are 16-bit words and the NNU 121 is configured as 512 wide configuration NPUs 126. Additionally, in the embodiment, the NPUs 126 include mux-regs for receiving the weight words 206 from the weight RAM 124, such as mux-reg 705 of
The convolution kernel 2042, in the example, is a 3×3 matrix of coefficients, or weights, or parameters, or elements. The first row of coefficients are denoted C0,0; C0,1; and C0,2; the second row of coefficients are denoted C1,0; C1,1; and C1,2; and the third row of coefficients are denoted C2,0; C2,1; and C2,2. For example, a convolution kernel that may be used for performing edge detection has the following coefficients: 0, 1, 0, 1, −4, 1, 0, 1, 0. For another example, a convolution kernel that may be used to Gaussian blur an image has the following coefficients: 1, 2, 1, 2, 4, 2, 1, 2, 1. In this case, a divide is typically performed on the final accumulated value, where the divisor is the sum of the absolute values of the elements of the convolution kernel 2042, which is 16 in this example. For another example, the divisor is the number of elements of the convolution kernel 2042. For another example, the divisor is a value that compresses the convolutions back within a desired range of values, and the divisor is determined from the values of the elements of the convolution kernel 2042 and the desired range and the range of the input values of the matrix being convolved.
As shown in
As shown in
Referring now to
At block 2502, the processor 100, i.e., the architectural program running on the processor 100, writes the convolution kernel 2042 of
At block 2504, the processor 100 writes the data matrix 2406 for chunk 1 to the weight RAM 124, as shown in
At block 2506, the processor 100 writes a convolution program to the NNU 121 program memory 129, using MTNN 1400 instructions that specify a function 1432 to write the program memory 129. The processor 100 then starts the NNU convolution program using a MTNN 1400 instruction that specifies a function 1432 to start execution of the program. An example of the NNU convolution program is described in more detail with respect to
At decision block 2508, the architectural program determines whether the value of variable N is less than NUM CHUNKS. If so, flow proceeds to block 2512; otherwise, flow proceeds to block 2514.
At block 2512, the processor 100 writes the data matrix 2406 for chunk N+1 to the weight RAM 124, as shown in
At block 2514, the processor 100 determines that the currently running NNU program (started at block 2506 in the case of chunk 1, and started at block 2518 in the case of chunks 2-20) has completed. Preferably, the processor 100 determines this by executing a MFNN 1500 instruction to read the NNU 121 status register 127. In an alternate embodiment, the NNU 121 generates an interrupt to indicate it has completed the convolution program. Flow proceeds to decision block 2516.
At decision block 2516, the architectural program determines whether the value of variable N is less than NUM_CHUNKS. If so, flow proceeds to block 2518; otherwise, flow proceeds to block 2522.
At block 2518, the processor 100 updates the convolution program so that it can convolve chunk N+1. More specifically, the processor 100 updates the weight RAM 124 row value of the initialize NPU instruction at address 0 to the first row of the data matrix 2406 (e.g., to row 0 for data matrix 2406A or to row 500 for data matrix 2406B) and updates the output row (e.g., to 900 or 1300). The processor 100 then starts the updated NNU convolution program. Flow proceeds to block 2522.
At block 2522, the processor 100 reads the results of the NNU convolution program from the weight RAM 124 for chunk N. Flow proceeds to decision block 2524.
At decision block 2524, the architectural program determines whether the value of variable N is less than NUM_CHUNKS. If so, flow proceeds to block 2526; otherwise, flow ends.
At block 2526, the architectural program increments N by one. Flow returns to decision block 2508.
Referring now to
For each execution of the loop body of the program, the 512 NPUs 126 concurrently perform 512 convolutions of the 3×3 convolution kernel 2402 and 512 respective 3×3 sub-matrices of a data matrix 2406. The convolution is the sum of the nine products of an element of the convolution kernel 2042 and its corresponding element of the respective sub-matrix. In the embodiment of
At address 1 is a multiply-accumulate instruction that specifies row 0 of the data RAM 122 and implicitly uses the current weight RAM 124 row, which is preferably held in the sequencer 128 (and which is initialized to zero by the instruction at address 0 for the first pass through the loop body). That is, the instruction at address 1 causes each of the NPUs 126 to read its corresponding word from row 0 of the data RAM 122 and read its corresponding word from the current weight RAM 124 row and perform a multiply-accumulate operation on the two words. Thus, for example, NPU 5 multiplies C0,0 and Dx, 5 (where “x” is the current weight RAM 124 row), adds the result to the accumulator 202 value 217 and writes the sum back to the accumulator 202.
At address 2 is a multiply-accumulate instruction that specifies to increment the data RAM 122 row (i.e., to row 1) and then read the row from the data RAM 122 at the incremented address. The instruction also specifies to rotate the values in the mux-reg 705 of each NPU 126 to the adjacent NPU 126, which in this case is the row of data matrix 2406 values just read from the weight RAM 124 in response to the instruction at address 1. In the embodiment of
The instructions at addresses 3 and 4 perform a similar operation as the instructions at addresses 1 and 2, however for the next row of the weight RAM 124, by virtue of the weight RAM 124 row increment indicator, and for the next three rows of the data RAM 122, i.e., rows 3 through 5. That is, with respect to NPU 5, for example, after the completion of the instructions at addresses 1 through 4, the product of C0,0 and D27,5, the product of C0,1 and D27,6, the product of C0,2 and D27,7, the product of C1,0 and D28,5, the product of C1,1 and D28,6, and the product of C1,2 and D28,7 will have been accumulated into the accumulator 202, along with all the other accumulated values from previous passes through the loop body.
The instructions at addresses 5 and 6 perform a similar operation as the instructions at addresses 3 and 4, however for the next row of the weight RAM 124, and for the next three rows of the data RAM 122, i.e., rows 6 through 8. That is, with respect to NPU 5, for example, after the completion of the instructions at addresses 1 through 6, the product of C0,0 and D27,5, the product of C0,1 and D27,6, the product of C0,2 and D27,7, the product of C1,0 and D28,5, the product of C1,1 and D28,6, the product of C1,2 and D28,7, the product of C2,0 and D29,5, the product of C2,1 and D29,6, and the product of C2,2 and D29,7 will have been accumulated into the accumulator 202, along with all the other accumulated values from previous passes through the loop body. That is, after the completion of the instructions at addresses 1 through 6, and assuming the weight RAM 124 row at the beginning of the loop body was 27, NPU 5, for example, will have used the convolution kernel 2042 to convolve the following 3×3 sub-matrix:
More generally, after the completion of the instructions at addresses 1 through 6, each of the 512 NPUs 126 will have used the convolution kernel 2042 to convolve the following 3×3 sub-matrix:
where r is the weight RAM 124 row address value at the beginning of the loop body, and n is the NPU 126 number.
The instruction at address 7 passes through the accumulator 202 value 217 through the AFU 212. The pass through function passes through a word that is the size (in bits) of the words read from the data RAM 122 and weight RAM 124 (i.e., in the example, 16 bits). Preferably, the user may specify the format of the output, e.g., how many of the output bits are fractional bits, as described in more detail below. Alternatively, rather than specifying a pass through activation function, a divide activation function is specified that divides the accumulator 202 value 217 by a divisor, such as described herein, e.g., with respect to
The instruction at address 8 writes the output of the AFU 212 to the row of the weight RAM 124 specified by the current value of the output row register, which was initialized by the instruction at address 0 and which is incremented each pass through the loop by virtue of the increment indicator in the instruction.
As may be determined from the example of
Alternatively, rather than writing back the results of the convolutions to different rows of the weight RAM 124 (e.g., 900-1299 and 1300-1699), the architectural program configures the NNU program to overwrite rows of the input data matrix 2406 after the rows are no longer needed. For example, in the case of a 3×3 convolution kernel, rather than writing the data matrix 2406 into rows 0-399 of the weight RAM 124, the architectural program writes the data matrix 2406 into rows 2-401, and the NNU program is configured to write the convolution results to the weight RAM 124 beginning at row 0 and incrementing each pass through the loop body. In this fashion, the NNU program is overwriting only rows that are no longer needed. For example, after the first pass through the loop body (or more specifically after the execution of the instruction at address 1 which loads in row 0 of the weight RAM 124), the data in row 0 can now be overwritten, although the data in rows 1-3 will be needed in the second pass through the loop body and are therefore not overwritten by the first pass through the loop body; similarly, after the second pass through the loop body, the data in row 1 can now be overwritten, although the data in rows 2-4 will be needed in the second pass through the loop body and are therefore not overwritten by the second pass through the loop body; and so forth. In such an embodiment, the height of each data matrix 2406 (chunk) may be larger (e.g., 800 rows), resulting in fewer chunks.
Alternatively, rather than writing back the results of the convolutions to the weight RAM 124, the architectural program configures the NNU program to write back the results of the convolutions to rows of the data RAM 122 above the convolution kernel 2402 (e.g., above row 8), and the architectural program reads the results from the data RAM 122 as the NNU 121 writes them (e.g., using the address of the most recently written data RAM 122 row 2606 of
As may be observed from the operation of the NNU 121 according to the embodiment of
Referring now to
Advantageously, in one embodiment, the AFU 212 includes the ability to efficiently perform an effective division of the accumulator 202 value 217, as described in more detail below, particularly with respect to
Although the convolution kernel 2402 used in the example of
Referring now to
Referring now to
For each iteration of the loop body of the program, the 128 used NPUs 126 concurrently perform 128 pooling operations of the 128 respective 4×4 sub-matrices of the current 4-row group of the input data matrix. More specifically, the pooling operation determines the maximum-valued element of the sixteen elements of the 4×4 sub-matrix. In the embodiment of
At address 1 is a maxwacc instruction that implicitly uses the current weight RAM 124 row, which is preferably held in the sequencer 128 (and which is initialized to zero by the instruction at address 0 for the first pass through the loop body). The instruction at address 1 causes each of the NPUs 126 to read its corresponding word from the current row of the weight RAM 124, compare the word to the accumulator 202 value 217, and store in the accumulator 202 the maximum of the two values. Thus, for example, NPU 8 determines the maximum value of the accumulator 202 value 217 and data word Dx,8 (where “x” is the current weight RAM 124 row) and writes the maximum value back to the accumulator 202.
At address 2 is a maxwacc instruction that specifies to rotate the values in the mux-reg 705 of each NPU 126 to the adjacent NPU 126, which in this case is the row of input data matrix values just read from the weight RAM 124 in response to the instruction at address 1. In the embodiment of
The maxwacc instructions at addresses 3 and 4 perform a similar operation as the instructions at addresses 1 and 2, however for the next row of the weight RAM 124, by virtue of the weight RAM 124 row increment indicator. That is, assuming the current weight RAM 124 row at the beginning of the loop body is 36, after the completion of the instructions at addresses 1 through 4, NPU 8, for example, will have stored in its accumulator 202 the maximum value of the accumulator 202 at the beginning of the loop body and the eight weight RAM 124 words D36,8 and D36,9 and D36,10 and D36,11 and D37,8 and D37,9 and D37,10 and D37,11.
The maxwacc instructions at addresses 5 through 8 perform a similar operation as the instructions at addresses 3 and 4, however for the next two rows of the weight RAM 124. That is, assuming the current weight RAM 124 row at the beginning of the loop body is 36, after the completion of the instructions at addresses 1 through 8, NPU 8, for example, will have stored in its accumulator 202 the maximum value of the accumulator 202 at the beginning of the loop body and the sixteen weight RAM 124 words D36,8 and D36,9 and D36,10 and D36,11 and D37,8 and D37,9 and D37,10 and D37,11 and D38,8 and D38,9 and D38,10 and D38,11 and D39,8 and D39,9 and D39,10 and D39,11. That is, after the completion of the instructions at addresses 1 through 8, and assuming the weight RAM 124 row at the beginning of the loop body was 36, NPU 8, for example, will have determined the maximum value of the following 4×4 sub-matrix:
More generally, after the completion of the instructions at addresses 1 through 8, each of the used 128 NPUs 126 will have determined the maximum value of the following 4×4 sub-matrix:
where r is the weight RAM 124 row address value at the beginning of the loop body, and n is the NPU 126 number.
The instruction at address 9 passes through the accumulator 202 value 217 through the AFU 212. The pass through function passes through a word that is the size (in bits) of the words read from the weight RAM 124 (i.e., in the example, 16 bits). Preferably, the user may specify the format of the output, e.g., how many of the output bits are fractional bits, as described in more detail below.
The instruction at address 10 writes the accumulator 202 value 217 to the row of the weight RAM 124 specified by the current value of the output row register, which was initialized by the instruction at address 0 and which is incremented each pass through the loop by virtue of the increment indicator in the instruction. More specifically, the instruction at address 10 writes a wide word (e.g., 16 bits) of the accumulator 202 to the weight RAM 124. Preferably, the instruction writes the 16 bits as specified by the output binary point 2916, as describe in more detail below with respect to
As may be observed, each row written to the weight RAM 124 by an iteration of the loop body includes holes that have invalid data. That is, the resulting 133 wide words 1 through 3, 5 through 7, 9 through 11 and so forth to wide words 509 through 511 are invalid, or unused. In one embodiment, the AFU 212 includes a mux that enables packing of the results into adjacent words of a row buffer, such as the row buffer 1104 of
As may also be observed, the number of result rows written to the weight RAM 124 is one-fourth the number of rows of the input data matrix. Finally, in the example, the data RAM 122 is not used. However, alternatively, the data RAM 122 may be used rather than the weight RAM 124 to perform a pooling operation.
In the example of
As may be observed from the operation of the NNU 121 according to the embodiment of
Alternatively, rather than writing back the results of the pooling operation to the weight RAM 124, the architectural program configures the NNU program to write back the results to rows of the data RAM 122, and the architectural program reads the results from the data RAM 122 as the NNU 121 writes them (e.g., using the address of the most recently written data RAM 122 row 2606 of
Fixed-Point Arithmetic with User-Supplied Binary Points, Full Precision Fixed-Point Accumulation, User-Specified Reciprocal Value, Stochastic Rounding of Accumulator Value, and Selectable Activation/Output Functions
Generally speaking, hardware units that perform arithmetic in digital computing devices may be divided into what are commonly termed “integer” units and “floating-point” units, because they perform arithmetic operations on integer and floating-point numbers, respectively. A floating-point number has a magnitude (or mantissa) and an exponent, and typically a sign. The exponent is an indication of the location of the radix point (typically binary point) with respect to the magnitude. In contrast, an integer number has no exponent, but only a magnitude, and frequently a sign. An advantage of a floating-point unit is that it enables a programmer to work with numbers that can take on different values within on an enormously large range, and the hardware takes care of adjusting the exponent values of the numbers as needed without the programmer having to do so. For example, assume the two floating-point numbers 0.111×1029 and 0.81×1031 are multiplied. (A decimal, or base 10, example is used here, although floating-point units most commonly work with base 2 floating-point numbers.) The floating-point unit automatically takes care of multiplying the mantissa, adding the exponents, and then normalizing the result back to a value of 0.8991×1059. For another example, assume the same two floating-point numbers are added. The floating-point unit automatically takes care of aligning the binary points of the mantissas before adding them to generate a resulting sum with a value of 0.81111×1031.
However, the complexity and consequent increase in size, power consumption and clocks per instruction and/or lengthened cycle times associated with floating-point units is well known. Indeed, for this reason many devices (e.g., embedded processors, microcontrollers and relatively low cost and/or low power microprocessors) do not include a floating-point unit. As may be observed from the example above, some of the complexities of floating-point units include logic that performs exponent calculations associated with floating-point addition and multiplication/division (adders to add/subtract exponents of operands to produce resulting exponent value for floating-point multiplication/division, subtracters to determine subtract exponents of operands to determine binary point alignment shift amounts for floating-point addition), shifters that accomplish binary point alignment of the mantissas for floating-point addition, shifters that normalize floating-point results. Additionally, flow proceeds to block units typically require logic to perform rounding of floating-point results, logic to convert between integer and floating-point formats or between different floating-point precision formats (e.g., extended precision, double precision, single precision, half precision), leading zero and leading one detectors, and logic to deal with special floating-point numbers, such as denormal numbers, NANs and infinity.
Furthermore, there is the disadvantage of the significant complexity in verification of the correctness of a floating-point unit largely due to the increased number space over which the design must be verified, which may lengthen the product development cycle and time to market. Still further, as described above, floating-point arithmetic implies the storage and use of separate mantissa and exponent fields for each floating-point number involved in the computation, which may increase the amount of storage required and/or reduce precision given an equal amount of storage to store integer numbers. Many of these disadvantages are avoided by the use of integer units that perform arithmetic operations on integer numbers.
Frequently, programmers write programs that process fractional numbers, i.e., numbers that are not whole numbers. The programs may run on processors that do not have a floating-point unit or, if they do, the integer instructions executed by the integer units of the processor may be faster. To take advantage of potential performance advantages associated with integer units, the programmer employs what is commonly known as fixed-point arithmetic on fixed-point numbers. Such programs include instructions that execute on integer units to process integer numbers, or integer data. The software is aware that the data is fractional and includes instructions that perform operations on the integer data to deal with the fact that the data is actually fractional, e.g., alignment shifts. Essentially, the fixed-point software manually performs some or all of the functionality that a floating-point unit performs.
As used in the present disclosure, a “fixed-point” number (or value or operand or input or output) is a number whose bits of storage are understood to include bits that represent a fractional portion of the fixed-point number, referred to herein as “fractional bits.” The bits of storage of the fixed-point number are comprised in a memory or register, e.g., an 8-bit or 16-bit word in a memory or register. Furthermore, the bits of storage of the fixed-point number are all used to represent a magnitude, and in some cases a bit is used to represent a sign, but none of the storage bits of the fixed-point number are used to represent an exponent of the number. Furthermore, the number of fractional bits, or binary point location, of the fixed-point number is specified in storage that is distinct from the storage bits of the fixed-point number and that in a shared, or global, fashion indicates the number of fractional bits, or binary point location, for a set of fixed-point numbers to which the fixed-point number belongs, such as the set of input operands, accumulated values or output results of an array of processing units, for example.
Advantageously, embodiments are described herein in which the ALUs are integer units, but the activation function units include fixed-point arithmetic hardware assist, or acceleration. This enables the ALU portions to be smaller and faster, which facilitates having more ALUs within a given space on the die. This implies more neurons per die space, which is particularly advantageous in a neural network unit.
Furthermore advantageously, in contrast to floating-point numbers that require exponent storage bits for each floating-point number, embodiments are described in which fixed-point numbers are represented with an indication of the number of bits of storage that are fractional bits for an entire set of numbers, however, the indication is located in a single, shared storage that globally indicates the number of fractional bits for all the numbers of the entire set, e.g., a set of inputs to a series of operations, a set of accumulated values of the series, a set of outputs. Preferably, the user of the NNU is enabled to specify the number of fractional storage bits for the set of numbers. Thus, it should be understood that although in many contexts (e.g., common mathematics) the term “integer” refers to a signed whole number, i.e., a number not having a fractional portion, the term “integer” in the present context may refer to numbers having a fractional portion. Furthermore, the term “integer” in the present context is intended to distinguish from floating-point numbers for whom a portion of the bits of their individual storage are used to represent an exponent of the floating-point number. Similarly, an integer arithmetic operation, such as an integer multiply or add or compare performed by an integer unit, assumes the operands do not have an exponent and therefore the integer elements of the integer unit, e.g., integer multiplier, integer adder, integer comparator, do not include logic to deal with exponents, e.g., do not shift mantissas to align binary points for addition or compare operations, do not add exponents for multiply operations.
Additionally, embodiments are described herein that include a large hardware integer accumulator to accumulate a large series of integer operations (e.g., on the order of 1000 multiply-accumulates) without loss of precision. This enables the NNU to avoid dealing with floating-point numbers while at the same time retaining full precision in the accumulated values without having to saturate them or incur inaccurate results due to overflows. Once the series of integer operations has accumulated a result into the full precision accumulator, the fixed-point hardware assist performs the necessary scaling and saturating to convert the full-precision accumulated value to an output value using the user-specified indications of the number of fractional bits of the accumulated value and the desired number of fractional bits in the output value, as described in more detail below.
As described in more detail below, preferably the activation function units may selectively perform stochastic rounding on the accumulator value when compressing it from its full precision form for use as an input to an activation function or for being passed through. Finally, the NPUs may be selectively instructed to apply different activation functions and/or output a variety of different forms of the accumulator value as dictated by the different needs of a given layer of a neural network.
Referring now to
The configuration 2902 value specifies whether the NNU 121 is in a narrow configuration, a wide configuration or a funnel configuration, as described above. The configuration 2902 implies the size of the input words received from the data RAM 122 and the weight RAM 124. In the narrow and funnel configurations, the size of the input words is narrow (e.g., 8 bits or 9 bits), whereas in the wide configuration, the size of the input words is wide (e.g., 12 bits or 16 bits). Furthermore, the configuration 2902 implies the size of the output result 133, which is the same as the input word size.
The signed data value 2912, if true, indicates the data words received from the data RAM 122 are signed values, and if false, indicates they are unsigned values. The signed weight value 2914, if true, indicates the weight words received from the weight RAM 124 are signed values, and if false, indicates they are unsigned values.
The data binary point 2922 value indicates the location of the binary point for the data words received from the data RAM 122. Preferably, the data binary point 2922 value indicates the number of bit positions from the right for the location of the binary point. Stated alternatively, the data binary point 2922 indicates how many of the least significant bits of the data word are fractional bits, i.e., to the right of the binary point. Similarly, the weight binary point 2924 value indicates the location of the binary point for the weight words received from the weight RAM 124. Preferably, when the ALU function 2926 is a multiply and accumulate or output accumulator, then the NPU 126 determines the number of bits to the right of the binary point for the value held in the accumulator 202 as the sum of the data binary point 2922 and the weight binary point 2924. Thus, for example, if the value of the data binary point 2922 is 5 and the value of the weight binary point 2924 is 3, then the value in the accumulator 202 has 8 bits to the right of the binary point. When the ALU function 2926 is a sum/maximum accumulator and data/weight word or pass through data/weight word, the NPU 126 determines the number of bits to the right of the binary point for the value held in the accumulator 202 as the data/weight binary point 2922/2924, respectively. In an alternate embodiment, described below with respect to
The ALU function 2926 specifies the function performed by the ALU 204 of the NPU 126. As described above, the ALU functions 2926 may include, but are not limited to: multiply data word 209 and weight word 203 and accumulate product with accumulator 202; sum accumulator 202 and weight word 203; sum accumulator 202 and the data word 209; maximum of accumulator 202 and data word 209; maximum of accumulator 202 and weight word 203; output accumulator 202; pass through data word 209; pass through weight word 203; output zero. In one embodiment, the ALU function 2926 is specified by an NNU initiate instruction and used by the ALU 204 in response to an execute instruction (not shown). In one embodiment, the ALU function 2926 is specified by individual NNU instructions, such as the multiply-accumulate and maxwacc instructions described above.
The round control 2932 specifies which form of rounding is to be used by the rounder 3004 (of
The activation function 2934 specifies the function applied to the accumulator 202 value 217 to generate the output 133 of the NPU 126. As described above and below in more detail, the activation functions 2934 include, but are not limited to: sigmoid; hyperbolic tangent; softplus; rectify; divide by specified power of two; multiply by a user-specified reciprocal value to accomplish an effective division; pass-through full accumulator; and pass-through the accumulator as a canonical size, which is described in more detail below. In one embodiment, the activation function is specified by an NNU activation function instruction. Alternatively, the activation function is specified by the initiate instruction and applied in response to an output instruction, e.g., write AFU output instruction at address 4 of
The reciprocal 2942 value specifies a value that is multiplied by the accumulator 202 value 217 to accomplish a divide of the accumulator 202 value 217. That is, the user specifies the reciprocal 2942 value as the reciprocal of the actual desired divisor. This is useful, for example, in conjunction with convolution and pooling operations, as described herein. Preferably, the user specifies the reciprocal 2942 value in two parts, as described in more detail with respect to FIG. 29C below. In one embodiment, the control register 127 includes a field (not shown) that enables the user to specify division by one of a plurality of built-in divisor values that are the size of commonly used convolution kernels, e.g., 9, 25, 36 or 49. In such an embodiment, the AFU 212 may store reciprocals of the built-in divisors for multiplication by the accumulator 202 value 217.
The shift amount 2944 specifies a number of bits that a shifter of the AFU 212 shifts the accumulator 202 value 217 right to accomplish a divide by a power of two. This may also be useful in conjunction with convolution kernels whose size is a power of two.
The output RAM 2952 value specifies which of the data RAM 122 and the weight RAM 124 is to receive the output result 133.
The output binary point 2954 value indicates the location of the binary point for the output result 133. Preferably, the output binary point 2954 indicates the number of bit positions from the right for the location of the binary point for the output result 133. Stated alternatively, the output binary point 2954 indicates how many of the least significant bits of the output result 133 are fractional bits, i.e., to the right of the binary point. The AFU 212 performs rounding, compression, saturation and size conversion based on the value of the output binary point 2954 (as well as, in most cases, based on the value of the data binary point 2922, the weight binary point 2924, the activation function 2934, and/or the configuration 2902).
The output command 2956 controls various aspects of the output result 133. In one embodiment, the AFU 212 employs the notion of a canonical size, which is twice the size (in bits) of the width specified by the configuration 2902. Thus, for example, if the configuration 2902 implies the size of the input words received from the data RAM 122 and the weight RAM 124 are 8 bits, then the canonical size is 16 bits; for another example, if the configuration 2902 implies the size of the input words received from the data RAM 122 and the weight RAM 124 are 16 bits, then the canonical size is 32 bits. As described herein, the size of the accumulator 202 is large (e.g., the narrow accumulator 202B is 28 bits and the wide accumulator 202A is 41 bits) in order to preserve full precision of the intermediate computations, e.g., 1024 and 512 NNU multiply-accumulate instructions, respectively. Consequently, the accumulator 202 value 217 is larger (in bits) than the canonical size, and the AFU 212 (e.g., CCS 3008 described below with respect to
Although the fields of
As described above, an NNU instruction is capable of specifying to perform ALU operations on memory operands (e.g., word from data RAM 122 and/or weight RAM 124) or a rotated operand (e.g., from the mux-regs 208/705). In one embodiment, an NNU instruction may also specify an operand as a registered output of an activation function (e.g., the output of register 3038 of
Referring now to
Referring now to
To illustrate by example, assume the user desires the accumulator 202 value 217 to be multiplied by the reciprocal of 49. The binary representation of the reciprocal of 49 represented with 13 fractional bits is 0.0000010100111, which has five leading zeroes. In this case, the user populates the number of suppressed leading zeroes 2962 with a value of five, and populates the leading zero-suppressed reciprocal 2964 with a value of 10100111. After the reciprocal multiplier “divider A” 3014 (of
Referring now to
The PFC and OBPA 3002 receive the accumulator 202 value 217. Preferably, the accumulator 202 value 217 is a full precision value, as described above. That is, the accumulator 202 has a sufficient number of bits of storage to hold an accumulated value that is the sum, generated by the integer adder 244, of a series of products generated by the integer multiplier 242 without discarding any of the bits of the individual products of the multiplier 242 or sums of the adder 244 so that there is no loss of precision. Preferably, the accumulator 202 has at least a sufficient number of bits to hold the maximum number of accumulations of the products that an NNU 121 is programmable to perform. For example, referring to the program of
Advantageously, by including an accumulator 202 that has a large enough bit width to accumulate a full precision value for the maximum number of allowable accumulations, this simplifies the design of the ALU 204 portion of the NPU 126. In particular, it alleviates the need for logic to saturate sums generated by the integer adder 244 that would overflow a smaller accumulator and that would need to keep track of the binary point location of the accumulator to determine whether an overflow has occurred to know whether a saturation was needed. To illustrate by example a problem with a design that included a non-full precision accumulator and instead includes saturating logic to handle overflows of the non-full precision accumulator, assume the following.
The PFC 3002 converts the accumulator 202 value 217 to a positive form, if the value is negative, and generates an additional bit that indicates whether the original value was positive or negative, which is passed down the AFU 212 pipeline along with the value. Converting to a positive form simplifies subsequent operations by the AFU 212. For example, it enables only positive values to be inputted to the tanh 3022 and sigmoid 3024 modules, thus simplifying them. Additionally, it simplifies the rounder 3004 and the saturator 3008.
The OBPA 3002 shifts, or scales, the positive-form value right to align it with the output binary point 2954 specified in the control register 127. Preferably, the OBPA 3002 calculates the shift amount as a difference that is the number of fractional bits of the output (e.g., specified by the output binary point 2954) subtracted from the number of fractional bits of the accumulator 202 value 217 (e.g., specified by the accumulator binary point 2923 or the sum of the data binary point 2922 and the weight binary point 2924). Thus, for example, if the accumulator 202 binary point 2923 is 8 (as in the example above) and the output binary point 2954 is 3, then the OBPA 3002 shifts the positive-form value right 5 bits to generate a result provided to the mux 3006 and to the rounder 3004.
The rounder 3004 rounds the accumulator 202 value 217. Preferably, the rounder 3004 generates a rounded version of the positive-form value generated by the PFC and OBPA 3002 and provides the rounded version to the mux 3006. The rounder 3004 rounds according to the round control 2932 described above, which may include stochastic rounding using the random bit 3005, as described above and below. The mux 3006 selects one of its inputs, i.e., either the positive-form value from the PFC and OBPA 3002 or the rounded version thereof from the rounder 3004, based on the round control 2932 (which may include stochastic rounding, as described herein) and provides the selected value to the CCS and saturator 3008. Preferably, if the round control 2932 specifies no rounding, then the mux 3006 selects the output of the PFC and OBPA 3002, and otherwise selects the output of the rounder 3004. Other embodiments are contemplated in which the AFU 212 performs additional rounding. For example, in one embodiment, the bit selector 3012 rounds based on lost low-order bits when it compresses the bits of the CCS and saturator 3008 output (described below). For another example, in one embodiment, the product of the reciprocal multiplier 3014 (described below) is rounded. For yet another example, in one embodiment, the size converter 3036 rounds when it converts to the proper output size (described below), which may involve losing low-order bits used in the rounding determination.
The CCS 3008 compresses the mux 3006 output value to the canonical size. Thus, for example, if the NPU 126 is in a narrow or funnel configuration 2902, then the CCS 3008 compresses the 28-bit mux 3006 output value to 16 bits; and if the NPU 126 is in a wide configuration 2902, then the CCS 3008 compresses the 41-bit mux 3006 output value to 32 bits. However, before compressing to the canonical size, if the pre-compressed value is greater than the maximum value expressible in the canonical form, the saturator 3008 saturates the pre-compressed value to the maximum value expressible in the canonical form. For example, if any of the bits of the pre-compressed value left of the most-significant canonical form bit has a 1 value, then the saturator 3008 saturates to the maximum value (e.g., to all 1's).
Preferably, the tanh 3022, sigmoid 3024 and softplus 3026 modules comprise lookup tables, e.g., programmable logic arrays (PLA), read-only memories (ROM), combinational logic gates, and so forth. In one embodiment, in order to simplify and reduce the size of the modules 3022/3024/3026, they are provided an input value that has 3.4 form, i.e., three whole bits and four fractional bits, i.e., the input value has four bits to the right of the binary point and three bits to the left of the binary point. These values are chosen because at the extremes of the input value range (−8, +8) of the 3.4 form, the output values asymptotically approach their minimum/maximum values. However, other embodiments are contemplated that place the binary point at a different location, e.g., in a 4.3 form or a 2.5 form. The bit selector 3012 selects the bits of the CCS and saturator 3008 output that satisfy the 3.4 form criteria, which involves compression, i.e., some bits are lost, since the canonical form has a larger number of bits. However, prior to selecting/compressing the CCS and saturator 3008 output value, if the pre-compressed value is greater than the maximum value expressible in the 3.4 form, the saturator 3012 saturates the pre-compressed value to the maximum value expressible in the 3.4 form. For example, if any of the bits of the pre-compressed value left of the most-significant 3.4 form bit has a 1 value, then the saturator 3012 saturates to the maximum value (e.g., to all 1's).
The tanh 3022, sigmoid 3024 and softplus 3026 modules perform their respective activation functions (described above) on the 3.4 form value output by the CCS and saturator 3008 to generate a result. Preferably, the result of the tanh 3022 and sigmoid 3024 modules is a 7-bit result in a 0.7 form, i.e., zero whole bits and seven fractional bits, i.e., the input value has seven bits to the right of the binary point. Preferably, the result of the softplus module 3026 is a 7-bit result in a 3.4 form, e.g., in the same form as the input to the module 3026. Preferably, the outputs of the tanh 3022, sigmoid 3024 and softplus 3026 modules are extended to canonical form (e.g., leading zeroes added as necessary) and aligned to have the binary point specified by the output binary point 2954 value.
The rectifier 3018 generates a rectified version of the output value of the CCS and saturator 3008. That is, if the output value of the CCS and saturator 3008 (its sign is piped down as describe above) is negative, the rectifier 3018 outputs a value of zero; otherwise, the rectifier 3018 outputs its input value. Preferably, the output of the rectifier 3018 is in canonical form and has the binary point specified by the output binary point 2954 value.
The reciprocal multiplier 3014 multiplies the output of the CCS and saturator 3008 by the user-specified reciprocal value specified in the reciprocal value 2942 to generate its canonical size product, which is effectively the quotient of the output of the CCS and saturator 3008 and the divisor that is the reciprocal of the reciprocal 2942 value. Preferably, the output of the reciprocal multiplier 3014 is in canonical form and has the binary point specified by the output binary point 2954 value.
The right shifter 3016 shifts the output of the CCS and saturator 3008 by the user-specified number of bits specified in the shift amount value 2944 to generate its canonical size quotient. Preferably, the output of the right shifter 3016 is in canonical form and has the binary point specified by the output binary point 2954 value.
The mux 3032 selects the appropriate input specified by the activation function 2934 value and provides the selection to the sign restorer 3034, which converts the positive form output of the mux 3032 to a negative form if the original accumulator 202 value 217 was a negative value, e.g., to two's-complement form.
The size converter 3036 converts the output of the sign restorer 3034 to the proper size based on the value of the output command 2956, which values are described above with respect to
The mux 3037 selects either the size converter and saturator 3036 output or the accumulator 202 output 217, based on the output command 2956, for provision to the output register 3038. More specifically, for the first and second predetermined values of the output command 2956, the mux 3037 selects the lower word (whose size is specified by the configuration 2902) of the output of the size converter and saturator 3036. For the third predetermined value, the mux 3037 selects the upper word of the output of the size converter and saturator 3036. For the fourth predetermined value, the mux 3037 selects the lower word of the raw accumulator 202 value 217; for the fifth predetermined value, the mux 3037 selects the middle word of the raw accumulator 202 value 217; and for the sixth predetermined value, the mux 3037 selects the upper word of the raw accumulator 202 value 217. As describe above, preferably the AFU 212 pads the upper bits of the upper word of the raw accumulator 202 value 217 to zero.
Referring now to
The 16-bit product (which is accumulated with the initial zero value of the accumulator 202) of the first data and weight words is shown as 000000.1100001100. Because the data binary point 2912 is 7 and the weight binary point 2914 is 3, the implied accumulator 202 binary point is located such that there are 10 bits to the right of the binary point. In the case of a narrow configuration, the accumulator 202 is 28 bits wide, in the example embodiment. In the example, a value 217 of 000000000000000001.1101010100 of the accumulator 202 after all the ALU operations (e.g., all 1024 multiply-accumulates of
The output binary point 2954 value indicates the binary point for the output is located such that there are 7 bits to the right of the binary point. Therefore, after passing through the OBPA 3002 and CCS 3008, the accumulator 202 value 217 is scaled, rounded and compressed to the canonical form value of 000000001.1101011. In the example, the output binary point location indicates 7 fractional bits, and the accumulator 202 binary point location indicates 10 fractional bits. Therefore, the OBPA 3002 calculates a difference of 3 and scales the accumulator 202 value 217 by shifting it right 3 bits. This is indicated in
The activation function 2934 indicates to use a sigmoid function, in the example. Consequently, the bit selector 3012 selects the bits of the canonical form value such that the input to the sigmoid module 3024 has three whole bits and four fractional bits, as described above, i.e., a value of 001.1101, as shown. The sigmoid module 3024 outputs a value that is put in canonical form as shown of 000000000.1101110.
The output command 2956 in the example specifies the first predetermined value, i.e., to output the word size indicated by the configuration 2902, which in this case is a narrow word (8 bits). Consequently, the size converter 3036 converts the canonical sigmoid output value to an 8 bit quantity having an implied binary point located such that 7 bits are to the right of the binary point, yielding an output value of 01101110, as shown.
Referring now to
In the example, the accumulator 202 is 28 bits wide, and the accumulator 202 binary point is located such that there are 10 bits to the right of the binary point (either because the sum of the data binary point 2912 and the weight binary point 2914 is 10 according to one embodiment, or the accumulator binary point 2923 is explicitly specified as having a value of 10 according to an alternate embodiment, as described above). In the example,
In the example, the output binary point 2954 value indicates the binary point for the output is located such that there are 4 bits to the right of the binary point. Therefore, after passing through the OBPA 3002 and CCS 3008, the accumulator 202 value 217 is saturated and compressed to the canonical form value of 111111111111.1111, as shown, that is received by the mux 3032 as the canonical size pass-through value 3028.
In the example, two output commands 2956 are shown. The first output command 2956 specifies the second predetermined value, i.e., to output the lower word of the canonical form size. Since the size indicated by the configuration 2902 is a narrow word (8 bits), which implies a canonical size of 16 bits, the size converter 3036 selects the lower 8 bits of the canonical size pass-through value 3028 to yield an 8 bit value of 11111111, as shown. The second output command 2956 specifies the third predetermined value, i.e., to output the upper word of the canonical form size. Consequently, the size converter 3036 selects the upper 8 bits of the canonical size pass-through value 3028 to yield an 8 bit value of 11111111, as shown.
Referring now to
In the example, the accumulator 202 is 41 bits wide, and the accumulator 202 binary point is located such that there are 8 bits to the right of the binary point (either because the sum of the data binary point 2912 and the weight binary point 2914 is 8 according to one embodiment, or the accumulator binary point 2923 is explicitly specified as having a value of 8 according to an alternate embodiment, as described above). In the example,
In the example, three output commands 2956 are shown. The first output command 2956 specifies the fourth predetermined value, i.e., to output the lower word of the raw accumulator 202 value; the second output command 2956 specifies the fifth predetermined value, i.e., to output the middle word of the raw accumulator 202 value; and the third output command 2956 specifies the sixth predetermined value, i.e., to output the upper word of the raw accumulator 202 value. Since the size indicated by the configuration 2902 is a wide word ( 16 bits),
As discussed above, advantageously the NNU 121 operates on integer data rather than floating-point data. This has the advantage of simplifying each NPU 126, or at least the ALU 204 portion. For example, the ALU 204 need not include adders that would be needed in a floating-point implementation to add the exponents of the multiplicands for the multiplier 242. Similarly, the ALU 204 need not include shifters that would be needed in a floating-point implementation to align binary points of the addends for the adder 234. As one skilled in the art will appreciate, floating point units are generally very complex; thus, these are only examples of simplifications to the ALU 204, and other simplifications are enjoyed by the instant integer embodiments with hardware fixed-point assist that enable the user to specify the relevant binary points. The fact that the ALUs 204 are integer units may advantageously result in a smaller (and faster) NPU 126 than a floating-point embodiment, which further advantageously facilitates the incorporation of a large array of NPUs 126 into the NNU 121. The AFU 212 portion deals with scaling and saturating the accumulator 202 value 217 based on the, preferably user-specified, number of fractional bits desired in the accumulated value and number of fractional bits desired in the output value. Advantageously, any additional complexity and accompanying increase in size, power consumption and/or time in the fixed-point hardware assist of the AFUs 212 may be amortized by sharing the AFUs 212 among the ALU 204 portions, as described with respect to the embodiment of
Advantageously, embodiments described herein enjoy many of the benefits associated with reduced complexity of hardware integer arithmetic units over floating-point arithmetic units, while still providing arithmetic operations on fractional numbers, i.e., numbers with a binary point. An advantage of floating-point arithmetic is that it accommodates arithmetic operations on data whose individual values may be anywhere within a very wide range of values (which is effectively limited only by the size of the exponent range, which may be very large). That is, each floating-point number has its own potentially unique exponent value. However, embodiments are described here that recognize and take advantage of the fact that there are certain applications in which the input data is highly parallelized and whose values are within a relatively narrow range such that the “exponent” for all the parallelized values can be the same. Therefore, the embodiments enable the user to specify the binary point location once for all the input values and/or accumulated values. Similarly, the embodiments enable the user to specify the binary point location once for all the output values, recognizing and taking advantage of similar range characteristics of the parallelized outputs. An artificial neural network is an example of such an application, although the embodiments may be employed to perform computations for other applications. By specifying the binary point location for the inputs once, rather than for each individual input number, the embodiments provide more efficient use of memory space (e.g., require less memory) over a floating-point implementation and/or provide an increase in precision for a similar amount of memory since the bits that would be used for an exponent in a floating-point implementation can be used to specify more precision in the magnitude.
Further advantageously, the embodiments recognize the potential loss of precision that could be experienced during the accumulation of a large series of integer operations (e.g., overflow or loss of fractional bits of lesser significance) and provide a solution, primarily in the form of a sufficiently large accumulator to avoid loss of precision.
Referring now to
One micro-operation source to the mux 3402 is the sequencer 128 of
A second micro-operation source to the mux 3402 is a decoder 3404 that receives microinstructions 105 from a reservation station 108 of
A third micro-operation source to the mux 3402 is the media registers 118 themselves. Preferably, as described above with respect to
Preferably, the decoder 3404 generates a mode indicator 3422 that controls the mux 3402 selection. When an MTNN instruction 1400 specifies a function to start running a program from the program memory 129, the decoder 3404 generates a mode indicator 3422 value that causes the mux 3402 to select the micro-operation 3416 from the sequencer 128 until either an error occurs or until the decoder 3404 encounters an MTNN instruction 1400 that specifies a function to stop running a program from the program memory 129. When an MTNN instruction 1400 specifies a function that instructs the NNU 121 to directly execute a micro-operation 3414 provided from a media register 118, the decoder 3404 generates a mode indicator 3422 value that causes the mux 3402 to select the micro-operation 3414 from the specified media register 118. Otherwise, the decoder 3404 generates a mode indicator 3422 value that causes the mux 3402 to select the micro-operation 3412 from the decoder 3404.
There may be situations in which the NNU 121 runs a program and then sits idle waiting for the processor 100 to do something it needs before it can run its next program. For example, assume a situation similar to that described with respect to
Referring now to
The clock generation logic 3502 also includes a clock distribution network, or clock tree. The clock tree distributes the primary clock signal to the functional units of the processor 100, which are indicated in
The NNU 121 includes clock reduction logic 3504 that receives a relax indicator 3512 and that receives the primary clock signal 3506-7 and, in response, generates a secondary clock signal. The secondary clock signal has a clock rate that is either the same clock rate as the primary clock rate or, when in relaxed mode, that is reduced relative to the primary clock rate by an amount programmed into the relax indicator 3512, which potentially provides thermal benefits. The clock reduction logic 3504 is similar in many respects to the clock generation logic 3502 in that it includes a clock distribution network, or clock tree, that distributes the secondary clock signal to various blocks of the NNU 121, which are indicated as clock signal 3508-1 to the array of NPUs 126, clock signal 3508-2 to the sequencer 128 and clock signal 3508-3 to the interface logic 3514, and which are referred to collectively or individually as secondary clock signal 3508. Preferably, the NPUs 126 include a plurality of pipeline stages 3401, as described with respect to
The NNU 121 also includes interface logic 3514 that receives the primary clock signal 3506-7 and secondary clock signal 3508-3. The interface logic 3514 is coupled between the lower portions of the front end of the processor 100 (e.g., the reservation stations 108, media registers 118, and general purpose registers 116) and the various blocks of the NNU 121, namely the clock reduction logic 3504, the data RAM 122, the weight RAM 124, the program memory 129 and the sequencer 128. The interface logic 3514 includes a data RAM buffer 3522, a weight RAM buffer 3524, the decoder 3404 of
In one embodiment, the clock reduction logic 3504 comprises a clock divider circuit to divide the primary clock signal 3506-7 by the relax indicator 3512 value. In one embodiment, the clock reduction logic 3504 comprises clock gates (e.g., AND gates) that gate the primary clock signal 3506-7 with an enable signal that is true once only every N cycles of the primary clock signal 3506-7. For example, a circuit that includes a counter that counts up to N may be used to generate the enable signal. When accompanying logic detects the output of the counter matches N, the logic generates a true pulse on the secondary clock signal 3508 and resets the counter. Preferably the relax indicator 3512 value is programmable by an architectural instruction, such as an MTNN 1400 instruction of
The weight RAM buffer 3524 is coupled between the weight RAM 124 and media registers 118 for buffering transfers of data between them. Preferably, the weight RAM buffer 3524 is similar to one or more of the embodiments of the buffer 1704 of
Similarly, the data RAM buffer 3522 is coupled between the data RAM 122 and media registers 118 for buffering transfers of data between them. Preferably, the data RAM buffer 3522 is similar to one or more of the embodiments of the buffer 1704 of
Preferably, the interface logic 3514 includes the data RAM buffer 3522 and weight RAM buffer 3524, regardless of whether the data RAM 122 and/or weight RAM 124 are single-ported or dual-ported, in order to provide synchronization between the primary clock domain and the secondary clock domain. Preferably, each of the data RAM 122, weight RAM 124 and program memory 129 comprises a static RAM (SRAM) that includes a respective read enable, write enable and memory select signal.
As described above, the NNU 121 is an execution unit of the processor 100. An execution unit is a functional unit of a processor that executes microinstructions into which architectural instructions are translated, such as the microinstructions 105 into which the architectural instructions 103 of
Referring now to
Initially, the architectural program executes an architectural instruction (e.g., MTNN instruction 1400) that the front end 100 issues to the NNU 121 that instructs the NNU 121 to start running an NNU program in its program memory 129. Prior, the architectural program executed an architectural instruction to write the relax indicator 3512 with a value that specifies the primary clock rate, i.e., to put the NNU 121 in normal mode. More specifically, the value programmed into the relax indicator 3512 causes the clock reduction logic 3504 to generate the secondary clock signal 3508 at the primary clock rate of the primary clock signal 3506. Preferably, in this case clock buffers of the clock reduction logic 3504 simply boost the primary clock signal 3506. Additionally prior, the architectural program executed architectural instructions to write to the data RAM 122 and the weight RAM 124 and to write the NNU program into the program memory 129. In response to the start NNU program MTNN instruction 1400, the NNU 121 starts running the NNU program at the primary clock rate, since the relax indicator 3512 was programmed with the primary rate value. After starting the NNU 121 running, the architectural program continues executing architectural instructions at the primary clock rate, including and predominately MTNN instructions 1400 to write and/or read the data RAM 122 and weight RAM 124 in preparation for the next instance, or invocation or run, of an NNU program.
As shown in the example in
Referring now to
Referring now to
At block 3702, the processor 100 executes MTNN instructions 1400 to write the weight RAM 124 with weights and to write the data RAM 122 with data. Flow proceeds to block 3704.
At block 3704, the processor 100 executes an MTNN instruction 1400 to program the relax indicator 3512 with a value that specifies a lower rate than the primary clock rate, i.e., to place the NNU 121 into relaxed mode. Flow proceeds to block 3706.
At block 3706, the processor 100 executes an MTNN instruction 1400 to instruct the NNU 121 to start running an NNU program, similar to the manner visualized in
At block 3708, the NNU 121 begins to run the NNU program. In parallel, the processor 100 executes MTNN instructions 1400 to write the weight RAM 124 with new weights (and potentially the data RAM 122 with new data) and/or executes MFNN instructions 1500 to read results from the data RAM 122 (and potentially from the weight RAM 124). Flow proceeds to block 3712.
At block 3712, the processor 100 executes a MFNN instruction 1500 (e.g., read the status register 127) to detect that the NNU 121 is finished running its program. Assuming the architectural program selected a good value of the relax indicator 3512, it should take the NNU 121 about the same amount of time to run the NNU program as it takes the processor 100 to execute the portion of the architectural program that accesses the weight RAM 124 and/or data RAM 122, as visualized in
At block 3714, the processor 100 executes an MTNN instruction 1400 to program the relax indicator 3512 with a value that specifies the primary clock rate, i.e., to place the NNU 121 into normal mode. Flow proceeds to block 3716.
At block 3716, the processor 100 executes an MTNN instruction 1400 to instruct the NNU 121 to start running an NNU program, similar to the manner visualized in
At block 3718, the NNU 121 begins to run the NNU program in normal mode. Flow ends at block 3718.
As described above, running the NNU program in relaxed made spreads out the time over which the NNU runs the program relative to the time over which the NNU runs the program in normal mode (i.e., at the primary clock rate of the processor), which may provide thermal benefits. More specifically, the devices (e.g., transistors, capacitors, wires) will likely operate at lower temperatures while the NNU runs the program in relaxed mode because the NNU generates at a slower rate the heat that is dissipated by the NNU (e.g., the semiconductor devices, metal layers, underlying substrate) and surrounding package and cooling solution (e.g., heat sink, fan). This may also lower the temperature of the devices in other portions of the processor die in general. The lower operating temperature of the devices, in particular their junction temperatures, may have the benefit of less leakage current. Furthermore, since the amount of current drawn per unit time is less, the inductive noise and IR drop noise may be reduced. Still further, the lower temperature may have a positive effect on the negative-bias temperature instability (NBTI) and positive-bias temperature instability (PBTI) of MOSFETs of the processor, thereby increasing the reliability and/or lifetime of the devices and consequently the processor part. The lower temperature may also reduce Joule heating and electromigration in metal layers of the processor.
As described above, for example with respect to
Embodiments are described in which the NNU programs are also referred to as non-architectural programs, the NNU instructions are also referred to as non-architectural instructions, and the NNU instruction set (also referred to above as the NPU instruction set) is also referred to as the non-architectural instruction set. The non-architectural instruction set is distinct from the architectural instruction set. In embodiments in which the processor 100 includes an instruction translator 104 that translates architectural instructions into microinstructions, the non-architectural instruction set is also distinct from the microinstruction set.
Referring now to
The sequencer 128 also includes a loop counter 3804 that is used in conjunction with a non-architectural loop instruction, such as the loop to 1 instruction at address 10 of
The sequencer 128 also includes an iteration counter 3806. The iteration counter 3806 is used in conjunction with non-architectural instructions such as the multiply-accumulate instruction at address 2 of
Referring now to
As may be observed from the forgoing, the values of the fields of the status register 127 of
For example, as described above with respect to
For another example, as described above with respect to
For another example, assume the architectural program is having the NNU 121 perform a series of classic neural network multiply-accumulate-activation function operations in which the weights are stored in the weight RAM 124 and the results are written back to the data RAM 122. In this case, once the non-architectural program has read a row of the weight RAM 124 it will not be reading it again. So, the architectural program may be configured to begin overwriting the weights in the weight RAM 124 with new weights for a next execution instance of a non-architectural program (e.g., for a next neural network layer) once the current weights have been read/used by the non-architectural program. In this case, the architectural program reads the status register 127 to obtain the address of the most recently read weight ram row 2604 to decide where it may write the new set of weights into the weight RAM 124.
For another example, assume the architectural program knows that the non-architectural program includes an execute instruction with a large iteration count, such as the non-architectural multiply-accumulate instruction at address 2 of
For another example, assume the architectural program is having the NNU 121 perform a pooling operation similar to that described with respect to
Referring now to
The uncore 4016 includes a bus controller 4014 that controls access by the processor 4000 to a system bus 4022 to which peripheral devices may be coupled, for example, such as video controllers, disk controllers, peripheral bus controllers (e.g., PCI-E), etc. In one embodiment, the system bus 4022 is the well-known V4 bus. The uncore 4016 may also include other functional units, such as a power management unit and private RAM (e.g., non-architectural memory used by microcode of the cores 4002).
The DRAM controller controls DRAM (e.g., asynchronous DRAM or synchronous DRAM (SDRAM) such as double data rate synchronous DRAM, direct Rambus DRAM or reduced latency DRAM) that is the system memory. The core complexes 4012, uncore 4016 and NNU 121 access the system memory via the ring bus 4024. More specifically, the NNU 121 reads neural network weights and data from the system memory into the memory array 4152 and writes neural network results from the memory array 4152 to the system memory via the ring bus 4024.
Additionally, when operating as a victim cache (see 4006-4 of
The four core complexes 4012 include respective LLC slices 4012-0, 4012-1, 4012-2 and 4012-3, each of which is coupled to the ring stop 4004, and which are referred to individually generically as LLC slice 4006 and collectively as LLC slices 4006. Each core 4002 includes a cache memory, such as a level-2 (L2) cache 4008 coupled to the ring stop 4004. Each core 4002 may also include a level-1 cache (not shown). In one embodiment, the cores 4002 are x86 instruction set architecture (ISA) cores, although other embodiments are contemplated in which the cores 4002 are of another ISA, e.g., ARM, SPARC, MIPS.
The LLC slices 4006-0, 4006-1, 4006-2 and 4006-3 collectively form a LLC 4005 of the processor 4000 shared by the core complexes 4012, as shown in
The ring bus 4024, or ring 4024, is a scalable bidirectional interconnect that facilitates communication between coherent components including the DRAM controller 4018, the uncore 4016, and the LLC slices 4006. The ring 4024 comprises two unidirectional rings, each of which further comprises five sub-rings: Request, for transporting most types of request packets including loads; Snoop, for transporting snoop request packets; Acknowledge, for transporting response packets; Data, for transporting data packets and certain request items including writes; and Credit, for emitting and obtaining credits in remote queues. Each node attached to the ring 4024 is connected via a ring stop 4004, which contains queues for sending and receiving packets on the ring 4024. Queues are either egress queues that initiate requests on the ring 4024 on behalf of an attached component to be received in a remote queue, or ingress queues that receive requests from the ring 4024 to be forwarded to an attached component. Before an egress queue initiates a request on the ring, it first obtains a credit on the Credit ring from the remote destination ingress queue. This ensures that the remote ingress queue has resources available to process the request upon its arrival. When an egress queue wishes to send a transaction packet on the ring 4024, it can only do so if it would not preempt an incoming packet ultimately destined to a remote node. When an incoming packet arrives in a ring stop 4004 from either direction, the packet's destination ID is interrogated to determine if this ring stop 4004 is the packet's ultimate destination. If the destination ID is not equal to the ring stop's 4004 node ID, the packet continues to the next ring stop 4004 in the subsequent clock. Otherwise, the packet leaves the ring 4024 in the same clock to be consumed by whichever ingress queue is implicated by the packet's transaction type.
Generally, the LLC 4005 comprises N LLC slices 4006, where each of the N slices 4006 is responsible for caching a distinct approximately 1/Nth of the processor's 4000 physical address space determined by a hashing algorithm, or hash algorithm, or simply hash. The hash is a function that takes as input a physical address and selects the appropriate LLC slice responsible for caching the physical address. When a request must be made to the LLC 4005, either from a core 4002 or snooping agent, the request must be sent to the appropriate LLC slice 4006 that it responsible for caching the physical address of the request. The appropriate LLC slice 4006 is determined by applying the hash to the physical address of the request.
A hash algorithm is a surjective function whose domain is the set of physical addresses, or a subset thereof, and whose range is the number of currently included LLC slices 4006. More specifically, the range is the set of indexes of the LLC slices 4006, e.g., 0 through 7 in the case of eight LLC slices 4006. The function may be computed by examining an appropriate subset of the physical address bits. For example, in a system with eight LLC slices 4006, the output of the hashing algorithm may be simply PA[10:8], which is three of the physical address bits, namely bits 8 through 10. In another embodiment in which the number of LLC slices 4006 is eight, the output of the hash is a logical function of other address bits, e.g., three bits generated as {PA[17], PA[14], PA[12]̂PA[10]̂PA[9]}.
All requestors of the LLC 4005 must have the same hash algorithm before any LLC 4005 caching is done. Because the hash dictates where addresses are cached and where snoops will be sent during operation, the hash is only changed through coordination between all cores 4002, LLC slices 4006, and snooping agents. As described in more detail below with respect to
The hash algorithms described above are useful when the number of LLC slices 4006, N, is 8, which is a power of 2, and those algorithms may be modified to easily accommodate other powers of 2, e.g., PA[9:8] for 4 slices or PA[11:8] for 16 slices. However, depending upon whether the NNU LLC slice 4006-4 is included in the LLC 4005 (and the number of core complexes 4012), N may or may not be a power of 2. Therefore, at least two different hashes are used, as described with respect to
One hash algorithm outputs PA[45:6] mod N. This hash has the advantage of distributing the physical addresses in an essentially balanced fashion across the N LLC slices 4006 (assuming a relatively even distribution of physical addresses) even when the value of N is not a power of 2. When N is a power of 2, the mod operation may be performed by simply outputting the lower N−1 bits of PA[45:6]. However, when N is not a power of 2, the mod operation may disadvantageously require an integer divide.
Another hash that approximates the PA mod N hash but for a smaller subset of the physical address, and which may be more efficiently implemented in hardware when N is not a power of 2, in this case when N=9, is defined as:
With calc_hash( ) PA[11:8] are used for the hash, but if PA[11:8] >8 then PA[10:8] is used, which is guaranteed to be in the range [0,7]. As may be observed, calc_hash( ) may distribute the physical addresses among the LLC slices 4006 in a relatively less balanced fashion (again assuming a relatively even distribution of physical addresses) than PA[45:6] mod N, namely slices 0 through 6 have about a one-eighth probability, whereas slices 7 and 8 have about a one-sixteenth probability. However, it should be noted that even the PA[45:6] mod N hash algorithm does not generate a distribution that is perfectly evenly balanced, since PA[45:6] represents a domain having a number of elements that is a power of 2, but N is not a power of 2.
Generally, when N is not a power of 2, the hash algorithm first hashes the physical address to a range of 2̂P possible results, where P=ceiling (log 2 (N)), and then maps results of the first hash that are greater than or equal to N (i.e., results that do not correspond to existing slices 4006) to outputs less than to N (i.e., to existing slices 4006).
Another hash algorithm relatively efficiently implemented in hardware is defined as:
Calc_hash_2 ( ) may distribute the physical addresses among the LLC slices 4006 in a relatively more balanced fashion than calc_hash( ) (again assuming a relatively even distribution of physical addresses), namely slices 0 through 7 have about a 7/64 probability, whereas slice 8 has about a 8/64, or 1/8, probability. In other embodiments, the calc_hash( ) and calc_hash_2 ( ) algorithms may be modified to distribute the physical addresses in an even relatively more balanced fashion by using an even larger number of physical address bits.
As described here, advantageously the embodiments employ two different hash algorithms: one that excludes the memory array 4152 as a LLC slice 4006 and one that includes the memory array 4152 as a LLC slice 4006. For example, in a processor 4000 in which the number of core complexes 4012 and their corresponding LLC slices 4006 is eight, the hash that excludes the memory array 4152 may be PA[10:8]; and the hash that includes the memory array 4152 may be calc_hash_2 (PA) described above, which maps to nine different slices. In one embodiment, the two hash algorithms may advantageously be designed to support a write-back-invalidate that is selective as an optimization, i.e., that evicts (i.e., write-back-invalidates) only cache lines that the inclusive and exclusive hash algorithms will hash to different slices. In some embodiments, on a transition from the inclusive hash to the exclusive hash this requires only the NNU LLC slice 4006-4 to be write-back-invalidated (i.e., the non-NNU LLC slices 4006 need not be write-back-invalidated); and, on a transition from the exclusive hash to the inclusive hash, only the cache lines of the non-NNU LLC slices 4006 whose addresses the inclusive and exclusive hash algorithms will hash to different slices need be evicted, as described in more detail below with respect to blocks
Referring now to
The memory array 4152 is coupled to the NPU array pipeline 126. Selection logic 4158 provides inputs to the memory array 4152. The selection logic 4158 is controlled by a mode input 4199 that specifies a mode. Preferably, the mode 4199 input is the output of a bit in the control/status register 127 that is written to change the mode 4199 from cache memory mode to NNU mode. The mode indicates that the memory array 4152 is operating in an NNU mode or a cache memory mode. When operating in the NNU mode, the memory array 4152 operates as the weight RAM 124 of the NNU 121. (Although reference is made throughout that the memory array 4152 functions as the weight RAM 124, alternatively the memory array 4152 may operate as the data RAM 122.) However, when operating in the cache memory mode, the memory array 4152 operates as a cache memory. Two embodiments of the cache memory mode are described: a first in which the memory array 4152 operates as a slice 4006 of the LLC 4005 shared by the core complexes 4012, and a second in which the memory array 4152 operates as a victim cache shared by the core complexes 4012. When the mode control 4199 indicates NNU mode, the selection logic 4158 selects data provided by the NPU array pipeline 126 and the memory array 4152 writes data to the NPU array pipeline 126, such that the memory array 4152 functions as the weight RAM 124 of the NNU 121. In contrast, when the mode control 4199 indicates cache memory mode, the selection logic 4158 selects data provided by a data pipeline 4146 of the cache control logic 4108, and the memory array 4152 writes data to the data pipeline 4146 of the cache control logic 4108. In this manner, the memory array 4152 functions as a cache memory shared by the cores 4002, e.g., as a victim cache or a LLC slice 4006-4. Preferably, the memory array of the larger of the two RAMs 122/124 is used in cache memory mode. Furthermore, embodiments are contemplated in which the memory arrays of both the weight RAM 124 and data RAM 122 are employed as cache memories shared by the cores 4002.
Preferably, the data bus providing data from the data pipeline 4146 to the memory array 4152 is 64 bytes wide (e.g., the size of a cache line), and the data bus providing data from the memory array 4152 to the NPU array pipeline 126 is the number of words equal to the number of NPUs 126 of the array, e.g., 1024 words. Conversely, the data bus providing data from the NPU array pipeline 126 to the memory array 4152 is the number of words equal to the number of NPUs 126 of the array. Preferably, the bus between the selection logic 4158 and the memory array 4152 includes an address bus, a write data bus, RD/WR controls and cache line enables (CLEs) that indicate which cache line of the 16 cache lines (assuming 1024 byte-wide memory array and 64-byte cache lines, for example) is being accessed. In the case of a write to the memory array 4152 from the NPU array pipeline 126, typically all the CLEs will be true because typically all the NPUs 126 write to a row of the weight RAM 124. Selection logic (not shown) uses the CLEs when data is being written to the memory array 4152 to select the correct bank or banks of the memory array 4152 to enable for reading or writing.
In the embodiment of
The cache control logic 4108 is coupled to the ring stop 4004-M and to the selection logic 4158 and memory array 4152. The cache control logic 4108 includes a tag pipeline 4144 coupled to the ring stop 4004-M, a data pipeline 4146 coupled to the ring stop 4004-M, and tag/MESI/LRU arrays 4142 coupled to the tag pipeline 4144. The cache control logic 4108 also includes an external interface 4147 that includes a fill queue 4122, snoop queue 4124 and arbiter 4136 that arbitrates between the fill queue 4122 and snoop queue 4124 for access to the tag pipeline 4144 and data pipeline 4146. The cache control logic 4108 also includes a core interface 4148 that includes a load queue 4112, evict queue 4114, query queue 4116 and arbiter 4138 that arbitrates between the load queue 4112, evict queue 4114 and query queue 4116 for access to the tag pipeline 4144 and data pipeline 4146. An arbiter 4132 arbitrates between the external interface 4147 and the core interface 4148 for access to the tag pipeline 4144, and an arbiter 4134 arbitrates between the external interface 4147 and the core interface 4148 for access to the data pipeline 4146. In one embodiment, the cache control logic 4108 also includes a state machine that performs a write-back-invalidate operation of the memory array 4152 in response to a request to do so, e.g., in response to a write-back-invalidate request from a core 4002. Additionally, the state machine performs an invalidate operation of the memory array 4152 in response to a request to do so, e.g., in response to an invalidate request from a core 4002. To perform the invalidate operation, the state machine updates the state within the tag/MESI array 4142 of each cache line in the memory array 4152 to an invalid status and resets the replacement information within the LRU array 4142 for each set of the memory array 4152.
The tag pipeline 4144 receives requests and tag updates from the arbiter 4132 and provides cache line status and responses to the ring stop 4004-M and external interface 4147 and core interface 4148. The data pipeline 4146 receives requests and data from the arbiter 4134 and provides data to the selection logic 4158 and to the ring stop 4004-M. When in cache memory mode, the tag/MESI array 4142 stores tags and status for the cache lines stored in the memory array 4152. Preferably, the memory array 4152 operates as a set associative memory when in cache memory mode, and the LRU array 4142 stores cache line replacement information for determining which way of the selected set to replace.
The fill queue 4122 handles new allocations into the memory array 4152 (reload requests) and evictions (victim requests) from the memory array 4152. In the case of a victim request, the fill queue 4122 requests access to the tag pipeline 4144 to determine which cache line, if any, needs to be evicted and requests access to the data pipeline 4146 to read modified data out of the memory array 4152 to write out to system memory. In the case of a reload request, the fill queue 4122 requests access to the tag pipeline 4144 to write the address of the newly allocated cache line into the tag array 4142 and to set the initial MESI state in the MESI array 4142 and requests access to the data pipeline 4146 to write the new data into the memory array 4152. The snoop queue 4124 handles snoops originating from the system bus 4022. The snoop queue 4124 requests access to the tag pipeline 4144 to determine the status of the cache line specified in the snoop request and requests access to the data pipeline 4146 to read modified data out of the memory array 4152, if present, to respond to the snoop request. The load queue 4112 handles loads from a core's 4002 L2 cache 4008 (and from other caches, e.g., L1 data and L1 instruction, in embodiments in which the L2 cache 4008 is not inclusive of them) when a load misses in all the lower level caches (including the L3 cache 4005 when the memory array 4152 and cache control logic 4108 are operating as a victim cache 4006-4, as described in more detail below). The load queue 4112 requests access to the tag pipeline 4144 to determine whether the specified cache line is present in the memory array 4152 and requests access to the data pipeline 4146 to read the specified data out of the memory array 4152 to write to the requesting core 4002 via the ring bus 4024. The evict queue 4114 handles evictions from a core's L2 cache 4008. When operating as a victim cache 5806-4, the evict queue 4114 requests access to the tag pipeline 4144 to write the address of the cache line evicted from the lower level cache memory into the tag array 4142 and to set the initial MESI state in the MESI array 4142. When operating as a slice of the LLC 5805, the evict queue 4114 requests access to the tag pipeline 4144 to update the MESI state in the MESI array 4142 if the evicted cache line is modified. The evict queue 4114 also requests access to the data pipeline 4146 to write the evicted cache line into the memory array 4152. The query queue 4116 handles snoops to a core's L2 cache 4008. The query queue 4116 requests access to the tag pipeline 4144 to update the MESI state to Modified after a core 4002 responded Modified to a snoop and requests access to the data pipeline 4146 to write modified cache lines from a snoop response into the memory array 4152. In one embodiment, the cache control logic 4108 includes a core interface 4148 for each core 4002. In one embodiment, each core interface 4148 includes separate data/instruction load queues 4112, evict queues 4114 and query queues 4116 for handling loads, evictions and snoops, respectively, with the core's 4002 separate data/instruction caches.
Referring now to
At block 4202, a request is made to transition from using the memory array 4152 as a slice 4006 of the LLC 4005 to using the memory array 4152 as the weight RAM 124 of the NNU 121. Preferably, the transition is controlled by the operating system running on the processor 4000. For example, an application program running on the processor 4000 requests the operating system to use the NNU 121, and the operating system detects that the memory array 4152 is currently being used as an LLC slice 4006 thus requiring a transition from cache memory mode to NNU mode. Flow proceeds to block 4204.
At block 4204, in response to the transition request at block 4202, the operating system causes all the cores 4002 to synchronize themselves. That is, the operating system causes the cores 4002 to stop fetching architectural instructions and to stop accessing memory. More specifically, this pauses accesses to the LLC 4005, which presently includes the memory array 4152. In one embodiment, the operating system executes an architectural instruction (e.g., x86 WRMSR) on each core 4002 that instructs the core 4002 to synchronize. In an alternate embodiment, the operating system executes an instruction on one of the cores 4002 and, in response, the one core 4002, e.g., via microcode, signals each of the other cores 4002 to synchronize. Flow proceeds to block 4206.
At block 4206, a write-back-invalidate is performed on the LLC 4005. In one embodiment, core 4002 microcode requests the write-back-invalidate, preferably in response to execution of an architectural instruction of the operating system. The write-back-invalidate writes back modified cache lines (if any) and invalidates all cache lines of all LLC slices 4006, including the NNU LLC slice 4006-4. In an alternate embodiment, the write-back-invalidate is selective. Generally, the selective write-back-invalidate means operating according to the following pseudocode:
Of course, when the slice is the NNU slice (e.g., slice=8 in the case of eight non-NNU slices 4006 plus one NNU LLC slice 4006-4), the exclusive_hash (cacheline_address) will not equal the slice since the exclusive hash never returns the index of the NNU LLC slice 4006-4, so all cache lines in the NNU LLC slice 4006-4 will be evicted, i.e., written back, if modified, and invalidated. Depending upon the inclusive and exclusive hashes employed, the number of cache lines that require eviction from the non-NNU LLC slices 4006 varies. For example, assume the exclusive and inclusive hashes are both PA[45:6]% N, but where N is different for each, i.e., N is one less for the exclusive hash than for the inclusive hash, and assume N is 9 for the inclusive hash and 8 for the exclusive hash. In this case, a significantly large fraction of the cache lines in the non-NNU LLC slices 4006 require eviction, e.g., approximately 88%. In this case, it may be as or more efficient to simply write-back-invalidate all cache lines of all LLC slices 4006. In contrast, for another example, assume the exclusive hash is PA[10:8] and the inclusive hash is calc_hash_2 described above. In this case, none of the cache lines in the non-NNU LLC slices 4006 require eviction on the transition from inclusive to exclusive hash, which is the transition performed in
At block 4208, the hashing algorithm used to hash the physical addresses of cache lines to the LLC slices 4006 is updated to exclude the memory array 4152 as a slice 4006 of the LLC 4005, as described above. Preferably, a hash update message is broadcast to each core 4002 and snoop source to change their hash algorithm to the exclusive hash, i.e., the hash that excludes the NNU LLC slice 4006-4. Flow proceeds to block 4212.
At block 4212, the mode 4199 is updated to indicate the NNU mode to cause the selection logic 4158 to make the memory array 4152 available for use as the weight RAM 124 to be accessed by the NPU 126 pipeline 124 and architectural programs executing on the cores 4002. In one embodiment, the operating system (e.g., a device driver) executes an architectural instruction on one of the cores 4002 that writes to the NNU 121 control/status register 127 to update the bit that controls the mode 4199 to change the mode 4199 from cache memory mode to NNU mode. The architectural instruction may be a write to I/O space or a memory store instruction that performs a memory-mapped I/O write to the control/status register 127. Flow proceeds to block 4214.
At block 4214, the cores 4002 resume operation, i.e., they are no longer synchronized and instead begin fetching and executing architectural instructions, which may include accessing memory. In one embodiment, the operating system executes an architectural instruction on each core 4002 that instructs the core 4002 to resume operation. In an alternate embodiment, the operating system executes an instruction on one of the cores 4002 and, in response, the one core 4002, e.g., via microcode, signals each of the other cores 4002 to resume operation. Flow ends at block 4214.
Referring now to
At block 4302, a request is made to transition from using the memory array 4152 as the weight RAM 124 of the NNU 121 to using the memory array 4152 as a slice 4006 of the LLC 4005. Preferably, the transition is controlled by the operating system running on the processor 4000. For example, an application program running on the processor 4000 informs the operating system that it is no longer using the NNU 121 and no other application programs are requesting to use the NNU 121, and the operating system detects that the memory array 4152 is currently being used as the weight RAM 124 thus requiring a transition from NNU mode to cache memory mode. Flow proceeds to block 4304.
At block 4304, in response to the transition request at block 4302, the operating system causes all the cores 4002 to synchronize themselves, like the manner described with respect to block 4204. More specifically, this pauses accesses to the LLC 4005, which presently excludes the memory array 4152. Flow proceeds to block 4306.
At block 4306, a write-back-invalidate is performed on the LLC 4005. The write-back-invalidate writes back modified cache lines (if any) and invalidates all cache lines of all LLC slices 4006 (excluding the NNU LLC slice 4006-4 because it is not currently included in the LLC 4005). In an alternate embodiment, the write-back-invalidate is selective. Generally, the selective write-back-invalidate means operating according to the following pseudocode:
In the transition from exclusive hash to inclusive hash of
At block 4308, the hashing algorithm used to hash the physical addresses of cache lines to the LLC slices 4006 is updated to include the memory array 4152 as a slice 4006 of the LLC 4005, as described above. That is, a hash update message is broadcast to each core 4002 and snoop source to change their hash algorithm to the inclusive hash, i.e., the hash that includes the NNU LLC slice 4006-4. Flow proceeds to block 4311.
At block 4311, the cache control logic 4108 performs an invalidate operation on the memory array 4152 by updating the status in the MESI array 4142 to Invalid for all the cache lines, as described above. Preferably, the cache control logic 4108 also resets the replacement information in the LRU array 4142. In one embodiment, core 4002 microcode requests the NNU LLC slice 4006-4 to perform the invalidate request, which the cache control logic 4108 responsively performs. Flow proceeds to block 4312.
At block 4312, the mode 4199 is updated to indicate the cache memory mode to cause the selection logic 4158 to make the memory array 4152 available for use as a LLC slice 4006. Flow proceeds to block 4314.
At block 4314, the cores 4002 resume operation, i.e., they are no longer synchronized and instead begin fetching and executing architectural instructions, which may include accessing memory, like the manner described with respect to block 4214. Flow ends at block 4314.
Referring now to
At block 4402, a request is made to transition from using the memory array 4152 as the weight RAM 124 of the NNU 121 to using the memory array 4152 as a victim cache 4006-4 shared by the core complexes 4012. Preferably, the transition is controlled by the operating system running on the processor 4000, similar to the manner described above with respect to block 4302. Flow proceeds to block 4404.
At block 4404, the mode 4199 is updated to indicate the cache memory mode to cause the selection logic 4158 to make the memory array 4152 available for use as a victim cache 4006-4. Flow proceeds to block 4406.
At block 4406, the bus controller 4014 is told to start directing snoops to the victim cache 4006-4 and the lower level caches are told to start directing load requests and eviction requests to the victim cache 4006-4. Flow proceeds to block 4408.
At block 4408, the victim cache 4006-4 begins caching victim data. In the embodiment of
At block 4412, the victim cache 4006-4 receives requests to access data and responds with the data if the address of the request hits in the victim cache 4006-4. In the embodiment of
Referring now to
At block 4502, a request is made to transition from using the memory array 4152 as a victim cache 4006-4 to using the memory array 4152 as the weight RAM 124 of the NNU 121. Preferably, the transition is controlled by the operating system running on the processor 4000. For example, an application program running on the processor 4000 requests the operating system to use the NNU 121, and the operating system detects that the memory array 4152 is currently being used as a victim cache 4006-4 thus requiring a transition from cache memory mode to NNU mode. Flow proceeds to block 4504.
At block 4504, the bus controller 4014 is told to stop directing snoops to the victim cache 4006-4. Flow proceeds to decision block 4506.
At decision block 4506, if the victim cache 4006-4 is operating as a write-through type cache, flow proceeds to block 4512; otherwise, flow proceeds to block 4508.
At block 4508, the cache control logic 4108 performs a write-back-invalidate on the victim cache 4006-4. That is, victim cache 4006-4 writes back to system memory all its modified cache lines and then invalidates all its cache lines (by updating the status in the MESI array 4142 to Invalid for all the cache lines; preferably, the cache control logic 4108 also resets the replacement information in the LRU array 4142.). Preferably, the cache control logic 4108 continues to respond to load requests and snoop requests while it performs the write-back-invalidate. Flow proceeds to block 4514.
At block 4512, the cache control logic 4108 performs an invalidate operation on the memory array 4152. That is, the cache control logic 4108 invalidates all the cache lines of the memory array 4152. As may be observed, if the victim cache 4006-4 is operating as a write-through type cache, the transition to using the memory array 4152 as a weight RAM 124 may be advantageously faster than when the victim cache 4006-4 was operating as a write-back type cache because the write-back of Modified cache lines at block 4508 need not be performed (i.e., only the invalidate here at block 4512 need be performed), which may be a substantial savings when the victim cache 4006-4 is relatively large. Flow proceeds to block 4514.
At block 4514, the lower level caches are told to stop directing load requests to the victim cache 4006-4, and the bus controller 4014 is told to stop directing snoops to the victim cache 4006-4. Flow proceeds to block 4516.
At block 4516, the mode 4199 is updated to indicate the NNU mode to cause the selection logic 4158 to make the memory array 4152 available for use as the weight RAM 124 to be accessed by the NPU 126 pipeline 124 and architectural programs executing on the cores 4002, like the manner described with respect to block 4212. Flow proceeds to block 4518.
At block 4518, the cache control logic 4108 stops caching victim data (which it began to do at block 4408). Furthermore, the cache control logic 4108 forwards to the bus controller 4014 any subsequent load, eviction or snoop requests it receives. Finally, architectural programs executing on the cores 4002 can use as the weight RAM 124 to be accessed by the NPU 126 pipeline 124. Flow ends at block 4518.
While various embodiments of the present invention have been described herein, they have been presented by way of example, and not limitation. It will be apparent to persons skilled in the relevant computer arts that various changes in form and detail can be made therein without departing from the scope of the invention. For example, software can enable, for example, the function, fabrication, modeling, simulation, description and/or testing of the apparatus and methods described herein. This can be accomplished using general programming languages (e.g., C, C++), hardware description languages (HDL) including Verilog HDL, VHDL, and so on, or other available programs. Such software can be disposed in any known computer usable medium such as magnetic tape, semiconductor, magnetic disk, or optical disc (e.g., CD-ROM, DVD-ROM, etc.), a network, wire line or another communications medium. Embodiments of the apparatus and method described herein may be included in a semiconductor intellectual property core, such as a processor core (e.g., embodied, or specified, in a HDL) and transformed to hardware in the production of integrated circuits. Additionally, the apparatus and methods described herein may be embodied as a combination of hardware and software. Thus, the present invention should not be limited by any of the exemplary embodiments described herein, but should be defined only in accordance with the following claims and their equivalents. Specifically, the present invention may be implemented within a processor device that may be used in a general-purpose computer. Finally, those skilled in the art should appreciate that they can readily use the disclosed conception and specific embodiments as a basis for designing or modifying other structures for carrying out the same purposes of the present invention without departing from the scope of the invention as defined by the appended claims.
This application is related to the following U.S. Non-Provisional Applications, each of which is hereby incorporated by reference in its entirety. Serial No.Filing DateTitle15/090,665Apr. 5, 2016NEURAL NETWORK UNIT WITH NEURAL MEMORYAND ARRAY OF NEURAL PROCESSING UNITS THATCOLLECTIVELY SHIFT ROW OF DATA RECEIVEDFROM NEURAL MEMORY15/090,666Apr. 5, 2016TRI-CONFIGURATION NEURAL NETWORK UNIT15/090,669Apr. 5, 2016PROCESSOR WITH ARCHITECTURAL NEURALNETWORK EXECUTION UNIT15/090,672Apr. 5, 2016NEURAL NETWORK UNIT WITH NEURALPROCESSING UNITS DYNAMICALLY CONFIGURABLETO PROCESS MULTIPLE DATA SIZES15/090,678Apr. 5, 2016NEURAL PROCESSING UNIT THAT SELECTIVELYWRITES BACK TO NEURAL MEMORY EITHERACTIVATION FUNCTION OUTPUT ORACCUMULATOR VALUE15/090,691Apr. 5, 2016NEURAL NETWORK UNIT WITH SHAREDACTIVATION FUNCTION UNITS15/090,696Apr. 5, 2016NEURAL NETWORK UNIT EMPLOYING USER-SUPPLIED RECIPROCAL FOR NORMALIZING ANACCUMULATED VALUE15/090,701Apr. 5, 2016PROCESSOR WITH VARIABLE RATE EXECUTIONUNIT15/090,705Apr. 5, 2016MECHANISM FOR COMMUNICATION BETWEENARCHITECTURAL PROGRAM RUNNING ONPROCESSOR AND NON-ARCHITECTURAL PROGRAMRUNNING ON EXECUTION UNIT OF THE PROCESSORREGARDING SHARED RESOURCE15/090,708Apr. 5, 2016DIRECT EXECUTION BY AN EXECUTION UNIT OF AMICRO-OPERATION LOADED INTO ANARCHITECTURAL REGISTER FILE BY ANARCHITECTURAL INSTRUCTION OF A PROCESSOR15/090,712Apr. 5, 2016MULTI-OPERATION NEURAL NETWORK UNIT15/090,722Apr. 5, 2016NEURAL NETWORK UNIT THAT PERFORMSCONVOLUTIONS USING COLLECTIVE SHIFTREGISTER AMONG ARRAY OF NEURAL PROCESSINGUNITS15/090,727Apr. 5, 2016NEURAL NETWORK UNIT WITH PLURALITY OFSELECTABLE OUTPUT FUNCTIONS15/090,794Apr. 5, 2016NEURAL NETWORK UNIT THAT PERFORMSSTOCHASTIC ROUNDING15/090,796Apr. 5, 2016APPARATUS EMPLOYING USER-SPECIFIED BINARYPOINT FIXED POINT ARITHMETIC15/090,798Apr. 5, 2016PROCESSOR WITH HYBRIDCOPROCESSOR/EXECUTION UNIT NEURALNETWORK UNIT15/090,801Apr. 5, 2016NEURAL NETWORK UNIT WITH OUTPUT BUFFERFEEDBACK AND MASKING CAPABILITY15/090,807Apr. 5, 2016NEURAL NETWORK UNIT THAT PERFORMSCONCURRENT LSTM CELL CALCULATIONS15/090,814Apr. 5, 2016NEURAL NETWORK UNIT WITH OUTPUT BUFFERFEEDBACK FOR PERFORMING RECURRENT NEURALNETWORK COMPUTATIONS15/090,823Apr. 5, 2016NEURAL NETWORK UNIT WITH NEURAL MEMORYAND ARRAY OF NEURAL PROCESSING UNITS ANDSEQUENCER THAT COLLECTIVELY SHIFT ROW OFDATA RECEIVED FROM NEURAL MEMORY15/090,829Apr. 5, 2016NEURAL NETWORK UNIT WITH OUTPUT BUFFERFEEDBACK AND MASKING CAPABILITY WITHPROCESSING UNIT GROUPS THAT OPERATE ASRECURRENT NEURAL NETWORK LSTM CELLS Each of the above Non-Provisional applications claims priority based on the following U.S. Provisional Applications, each of which is hereby incorporated by reference in its entirety. Serial No.Filing DateTitle62/239,254Oct. 8, 2015PROCESSOR WITH NEURAL NETWORK UNIT62/262,104Dec. 2, 2015PROCESSOR WITH VARIABLE RATE EXECUTION UNIT62/299,191Feb. 4, 2016MECHANISM FOR COMMUNICATION BETWEENARCHITECTURAL PROGRAM RUNNING ON PROCESSOR ANDNON-ARCHITECTURAL PROGRAM RUNNING ON EXECUTIONUNIT OF THE PROCESSOR REGARDING SHARED RESOURCE;NEURAL NETWORK UNIT WITH OUTPUT BUFFER FEEDBACKAND MASKING CAPABILITY, AND THAT PERFORMSCONCURRENT LSTM CELL CALCULATIONS, AND WITHOUTPUT BUFFER FEEDBACK FOR PERFORMING RECURRENTNEURAL NETWORK COMPUTATIONS This application is also related to the following concurrently filed U.S. Non-Provisional Applications, each of which is hereby incorporated by reference in its entirety. Serial No.TitleVAS.3085PROCESSOR WITH MEMORY ARRAY OPERABLE AS EITHER CACHEMEMORY OR NEURAL NETWORK UNIT MEMORYVAS.3095PROCESSOR WITH MEMORY ARRAY OPERABLE AS EITHER LASTLEVEL CACHE SLICE OR NEURAL NETWORK UNIT MEMORYVAS.3099PROCESSOR WITH MEMORY ARRAY OPERABLE AS EITHER VICTIMCACHE OR NEURAL NETWORK UNIT MEMORYVAS.3087NEURAL NETWORK UNIT THAT PERFORMS EFFICIENT 3-DIMENSIONAL CONVOLUTIONSVAS.3094NEURAL NETWORK UNIT WITH MEMORY LAYOUT TO PERFORMEFFICIENT 3-DIMENSIONAL CONVOLUTIONSVAS.3071NEURAL NETWORK UNIT WITH NEURAL MEMORY AND ARRAY OFNEURAL PROCESSING UNITS THAT COLLECTIVELY PERFORMMULTI-WORD DISTANCE ROTATES OF ROW OF DATA RECEIVEDFROM NEURAL MEMORY