USING A LOW-BIT-WIDTH DOT PRODUCT ENGINE TO SUM HIGH-BIT-WIDTH NUMBERS
A system includes a vector multiplier configured to multiply a first vector of integer elements with a second vector of integer elements to determine a resulting vector of integer elements, wherein integer elements of the first and second vectors of integer elements are represented using a first number of bits and an integer element of the first vector of integer elements represents a portion of a value of a group of values. The system further includes a vector adder configured to add together the integer elements of the resulting vector of integer elements to determine a summed result, a bit shifter configured to shift bits of the summed result leftward, and an accumulator configured to determine an accumulated output sum that includes the leftward-shifted summed result.
This application is a continuation of U.S. Pat. Application No. 16/869,281 entitled USING A LOW-BIT-WIDTH DOT PRODUCT ENGINE TO SUM HIGH-BIT-WIDTH NUMBERS filed May 7, 2020, which is incorporated herein by reference for all purposes.
BACKGROUND OF THE INVENTIONA whole class of complex artificial intelligence problems can be solved using neural networks. Common operations required by many neural networks include summations, multiplications, and dot products, for example, when performing matrix operations. Since artificial intelligence problems are often computationally and data intensive, hardware solutions are often beneficial for improving performance. It is a technical challenge to create a hardware platform that is flexible and computationally efficient. Therefore, there exists a need for techniques directed toward efficient, high throughput hardware schemes that do not introduce significant hardware complexity and expense.
Various embodiments of the invention are disclosed in the following detailed description and the accompanying drawings.
The invention can be implemented in numerous ways, including as a process; an apparatus; a system; a composition of matter; a computer program product embodied on a computer readable storage medium; and/or a processor, such as a processor configured to execute instructions stored on and/or provided by a memory coupled to the processor. In this specification, these implementations, or any other form that the invention may take, may be referred to as techniques. In general, the order of the steps of disclosed processes may be altered within the scope of the invention. Unless stated otherwise, a component such as a processor or a memory described as being configured to perform a task may be implemented as a general component that is temporarily configured to perform the task at a given time or a specific component that is manufactured to perform the task. As used herein, the term ‘processor’ refers to one or more devices, circuits, and/or processing cores configured to process data, such as computer program instructions.
A detailed description of one or more embodiments of the invention is provided below along with accompanying figures that illustrate the principles of the invention. The invention is described in connection with such embodiments, but the invention is not limited to any embodiment. The scope of the invention is limited only by the claims and the invention encompasses numerous alternatives, modifications and equivalents. Numerous specific details are set forth in the following description in order to provide a thorough understanding of the invention. These details are provided for the purpose of example and the invention may be practiced according to the claims without some or all of these specific details. For the purpose of clarity, technical material that is known in the technical fields related to the invention has not been described in detail so that the invention is not unnecessarily obscured.
A device for improving the efficiency of numerical processing in hardware is disclosed. The disclosed device includes: a dot product processing component configured to calculate a dot product of a first group of elements stored in a first storage unit with a second group of elements, wherein: each element of the first group of elements is represented using a first number of bits, each value of a group of values stored in the first storage unit is represented using a second number of bits greater than the first number of bits, and each value of the group of values is stored as split segments across more than one element of the elements of the first group of elements; a data alignment component configured to: receive results of the dot product processing component and modify one or more of the results of the dot product processing component; and an accumulator configured to sum outputs of the data alignment component to at least in part determine a sum of the group of values. Practical and technological benefits of the disclosed device include increased flexibility with respect to numerical processing, e.g., the ability to sum higher-bit-width numbers using a lower-bit-width dot product engine.
In some embodiments, a dot product engine (also referred to herein as a dot product processing component) that is able to natively multiply and sum vectors of 8-bit integers and/or 16-bit floating point numbers is used to calculate sums of vectors of 32-bit integers and/or 32-bit floating-point numbers, respectively, by incorporating additional specified hardware. The summing of a vector refers to the summing of the values of all the elements in the vector into a single output value. The summing of the vector is also referred to herein as reducing / reduction of the vector. With respect to vectors of numbers whose bit widths are natively supported by the dot product engine, the dot product engine can reduce a first vector of integer elements or floating-point elements by calculating a dot product of the first vector with a second vector whose elements all have the value 1 in integer or floating-point format, respectively. Using techniques disclosed herein, the dot product engine can also reduce vectors of numbers whose bit widths are higher than those natively supported by the dot product engine. The techniques disclosed herein are applicable to sparse neural networks, convolutions, and other applications.
In some embodiments, a dot product processing component that is able to natively reduce vectors of 8-bit integers (e.g., int8) is used to reduce vectors of 32-bit integers (e.g., int32). In some embodiments, the dot product processing component reads data from memory in 32-byte (256-bit) chunks. It is possible to read an input vector of eight 32-bit integers and perform processing on those 256 bits as if they were thirty-two 8-bit integers. In various embodiments, a vector of 32-bit integers is loaded and each 32-bit integer is stored as four 8-bit chunks xi3, Xi2, xi1, and Xi0, with xi3 being the most significant 8 bits and xi0 being the least significant 8 bits of a 32-bit integer Xi. A first dot product of the input vector of the above groups of 8-bit chunks with a vector of values 0, 0, 0, 1, 0, 0, 0, 1, ... (also in 8-bit format) can then be calculated using the dot product processing component. This results in a sum of the least significant 8 bits from each 32-bit integer. Stated alternatively, the result is a computation of x00 + x10 + ... + x70 for each group of eight 32-bit integers (when 32-bit integers are loaded in groups of eight). In various embodiments, this intermediate result is stored in an accumulator (e.g., a register). Next, a second dot product of the input vector with a vector 0, 0, 1, 0, 0, 0, 1, 0, ... can be calculated using the dot product processing component. This results in a sum of the second least significant 8 bits from each 32-bit integer (x01 + x11 + ... + x71). This sum is then left-shifted 8 bits and sent to the accumulator (to add to a running sum). In the next cycle, a third dot product of the input vector with a vector 0, 1, 0, 0, 0, 1, 0, 0, ... can be calculated using the dot product processing component. This results in a sum of the second most significant 8 bits from each 32-bit integer (x02 + x12 + ... + x72). This sum is then left-shifted 16 bits and sent to the accumulator. In the next cycle, a fourth dot product of the input vector with a vector 1, 0, 0, 0, 1, 0, 0, 0, can be calculated using the dot product processing component. This results in a sum of the most significant 8 bits from each 32-bit integer (x03 + x13 + ... + x73). This sum is then left-shifted 24 bits and sent to the accumulator. At this point, the accumulator stores a final result that is the sum of eight 32-bit integers.
As described in further detail herein, in some embodiments, hardware to perform reduction of vectors of 32-bit integers includes a dot product processing component configured to natively handle vectors of 8-bit integers, a multiplexer configured to route four dot product results, a bit shifter configured to select from among leftward bit shifts of 0, 8, 16, and 24 bits, and an accumulator.
In some embodiments, a dot product processing component that is able to natively reduce vectors of 16-bit floating-point numbers (e.g., Brain Floating Point floating-point format (also referred to herein as bfloat16, BFloat16, etc.)) is used to reduce vectors of 32-bit floating-point numbers (e.g., single-precision floating-point format (also referred to herein as fp32)). In some embodiments, the dot product processing component reads data from memory in 32-byte (256-bit) chunks. It is possible to read an input vector of eight 32-bit fp32 numbers and perform processing on those 256 bits as if they were sixteen bfloat16 numbers. In various embodiments, an input vector of eight fp32 numbers is loaded and stored and treated as sixteen bfloat16 numbers. A first dot product of the input vector with a vector 1, 0, 1, 0, ... (alternating ones and zeros in bfloat16 format) can be calculated using the dot product processing component and sent to an accumulator. This results in a sum of blfoat16 versions of each of the fp32 numbers because the first sixteen bits of an fp32 number is 1 sign bit, 8 exponent bits, and 7 mantissa bits, which is the bfloat16 format (see
As described in further detail herein, in some embodiments, hardware to perform reduction of vectors of 32-bit fp32 numbers includes a dot product processing component configured to natively handle vectors of bfloat16 numbers, a plurality of multiplexers configured to select from among three groups of mantissa bits from each fp32 number, a multiplexer configured to route three dot product results, a subtractor configured to select from among the values 0, 8, and 16 to subtract, and an accumulator. In some embodiments, the subtractor is an adder configured to add negative numbers.
The examples described above are merely illustrative. It is also possible to apply the techniques described herein to reduce vectors of numbers of different bit widths and/or in different formats. For example, as would be readily apparent to one skilled in the art, applying the techniques described herein to reduce vectors of 64-bit integers can include performing processing on eight chunks of 8 bits instead of four chunks of 8 bits. Different dot product processing components can also be accommodated. For example, reducing vectors of 64-bit integers using a dot product processing component configured to natively reduce vectors of 16-bit integers can include performing processing on four chunks of 16 bits.
In some embodiments, a communication bus, such as bus 151, is used to transmit processing element instructions and optional instruction arguments. For example, a matrix operation and matrix operands may be transmitted to a processing element, such as processing elements 101, 111, and/or 121, via bus 151. Additional processing element instructions may include summation, multiplication, dot product, matrix multiplication, etc. operation instructions, such as integer or floating-point operation instructions. In various embodiments, a large, complex artificial intelligence problem can be solved using system 100 by subdividing the problem into smaller sub-problems. The smaller sub-problems can be assigned and distributed to different processing elements. The results of the smaller sub-problems can be merged to determine the solution to the larger and more complex problem. In some scenarios, the sub-problems are solved in parallel and/or in pipelined stages. In some scenarios, the result from a first processing element is fed as an input to a second processing element.
In some embodiments, each processing element of system 100 includes at least a control logic unit and a matrix compute engine. As shown with respect to processing element 111, processing element 111 includes control logic 113 and matrix compute engine 115. Processing elements 101 and 121 are shown as dotted boxes and some details of processing elements 101 and 121 are not shown. In some embodiments, the control logic unit of a processing element is used to control the operation of the processing element, including the operation of the processing element’s matrix compute engine. In the example shown, control logic 113 processes instructions directed to processing element 111 via communication bus 151. For example, a processing element instruction may include an integer or floating-point operation instruction. In some embodiments, control logic 113 determines how to perform the integer or floating-point operation using matrix compute engine 115, including how to determine components of integer or floating-point number operands. In some embodiments, control logic 113 receives processing element instructions via bus 151 and can be used to initiate retrieving and/or writing data from/to memory 131.
In some embodiments, matrix compute engine 115 is a hardware matrix compute engine for performing matrix operations including operations related to integer or floating-point summation, multiplication, dot product, matrix multiplication, and/or convolution operations. For example, matrix compute engine 115 may be a matrix engine for performing dot product operations requiring integer or floating-point multiplications and addition operations. In some embodiments, the convolution operations supported include depth-wise, groupwise, normal, regular, pointwise, two-dimensional, and/or three-dimensional convolutions, among others. For example, matrix compute engine 115 may receive a first input matrix such as a subset of a large image and a second input matrix such as a filter, kernel, or convolution matrix, etc. to apply to the first input matrix. Matrix compute engine 115 can be used to perform a convolution operation using the two input matrices to determine a resulting output matrix. In some embodiments, matrix compute engine 115 includes input and/or output buffers for loading input data matrices or vectors and writing out a result data matrix or vector. In some embodiments, matrix compute engine 115 includes multiple vector units and each vector unit includes a vector multiply unit and a vector adder unit.
In some embodiments, matrix compute engine 205 receives input matrix (or vector) operands to perform matrix operations. For example, matrix compute engine 205 may receive one or more data input vectors corresponding to a portion of an image and at least one weight input vector corresponding to a filter matrix. The input vectors, such as input data and weight vectors, may be passed as arguments to a vector unit, such as one of vector units 211, 221, 231, and 241, of matrix compute engine 205. For example, a vector unit of matrix compute engine 205 may determine a matrix result, such as a dot product result, using a data input vector and weight input vector pair. In some embodiments, matrix compute engine 205 includes 32 vector units. Each vector unit may take two n-element vectors (e.g., 16, 32, etc.) as arguments and each determine an n-element vector result. In some embodiments, the result is a single element result and taken across all vector units of matrix compute engine 205. In some embodiments, the result is an output vector result. In some embodiments, output results are determined by accumulating partial vector results across multiple vector unit operations. For example, a multiplication operation can be decomposed into multiple multiplication operations and the results summed. The number of vector units of matrix compute engine 205 can vary as can the vector unit lengths and element sizes. Depending on the capabilities of the vector unit, different element sizes can be natively supported. In some embodiments, 8-bit integers and 16-bit floating-point formats are natively supported.
In some embodiments, each vector unit of matrix compute engine 205, such as vector units 211, 221, 231, or 241, receives two vector operands and can perform one or more vector operations. For example, a vector unit can compute the result of multiple multiply operations by multiplying each element of the first input vector with a corresponding element of a second input vector. The resulting multiplication results can be accumulated and used for future operations, such as summing partial results. For example, a vector unit result can be accumulated and used as an operand to a subsequent operation performed by the vector unit.
In some embodiments, each vector unit of matrix compute engine 205, such as vector units 211, 221, 231, or 241, includes a vector multiply unit and a vector adder unit. Each vector multiply unit, such as vector multiply unit 213, is configured to multiply corresponding elements received via input vector operands. In some embodiments, the result is a vector of multiplication results. The first element from a first input vector is multiplied with the first element of a second input vector. Similarly, the second element from the first input vector is multiplied with the second element of the second input vector. In various embodiments, the vector of multiplication results is passed to a vector adder unit of the vector unit. For example, vector multiply unit 213 can pass its multiplication results to vector adder unit 215. Vector adder unit 215 can be used for addition operations such as summing partial results, computing at least in part a dot product result, or other appropriate functionality. For example, a dot product can be calculated by using vector adder unit 215 to sum all the elements of the output of vector multiply unit 213.
In some embodiments, each vector adder unit of a vector unit, such as vector adder unit 215, is configured to compute addition operations using elements from an input vector. For example, the sum of selected elements from a vector of multiplication results computed by vector multiply unit 213 can be computed by vector adder unit 215. In some embodiments, the result of a vector adder unit is a dot product of the vectors used as inputs to the corresponding vector multiply unit. In various embodiments, each vector adder unit, such as vector adder unit 215, is implemented as an adder tree. For example, the top level of an adder tree may add pairs of elements to determine a set of partial sums, such as adding elements 0 and 1 to determine a first partial sum and elements 2 and 3 to determine a second partial sum, etc. Each subsequent level may sum pairs of partial sums from the previous level until the last level computes a final result sum. In some embodiments, specified partial sums may be outputted as a result of the adder unit. In some embodiments, each adder tree computes partial sums in parallel to arrive at a result sum. The parallel operation significantly improves the efficiency of summing a vector of numbers. Multiple vector units can operate in parallel to compute multiple results in parallel, significantly improving the throughput of matrix compute engine 205.
In some embodiments, matrix compute engine 205 includes one or more accumulators (e.g., implemented as registers), for example, to accumulate the results of each vector unit. In some embodiments, an accumulator is included as part of a vector unit or as part of matrix compute engine 205 as appropriate. Accumulators may also be separate from but communicatively connected to matrix compute engine 205. The accumulator(s) can be used to sum the results computed across multiple iterations of the vector units. For example, the result from one iteration of a vector unit can be stored in an accumulator and added to the result of the next iteration of the vector unit. In some embodiments, the accumulator is a vector accumulator. For example, the accumulator may be sized based on the size of an output vector of matrix compute engine 205. The accumulator may also be used to store and add a single element result across multiple iterations. In various embodiments, once matrix processing is complete, the accumulator results are pushed to memory via bus 251.
At 301, a dot product operation instruction is received. The dot product operation instruction may specify two integer or floating-point vectors. For example, two vectors of operands may be received and each element of a first vector is to be multiplied with a corresponding element of a second vector. If one of the vectors has all ones as elements, the result of the dot product operation will be the summation of the elements of the other vector. Stated alternatively, the result would be the reduction of the other vector.
At 303, the operand formats are identified. In various embodiments, multiple different integer and floating-point formats are supported by the processing element. For example, 8-bit integer (e.g., int8) and 16-bit floating-point (e.g., bfloat16) formats may be supported. In some embodiments, the format is specified by the dot product operation instruction. For example, a flag in the dot product operation instruction can identify a type of integer format or a type of floating-point format.
At 305, the dot product operation is performed. For example, a dot product of two integer vectors or two floating-point vectors can be calculated. A vector unit (e.g., vector unit 211 of
In the example shown, system 400 includes dot product processing component 406, data alignment component 408, and accumulator 410. In some embodiments, dot product processing component 406 is vector unit 211 of
In the example shown, data alignment component 408 receives a result of dot product processing component 406. In various embodiments, data alignment component 408 aligns the result based on which iteration of processing is occurring. Implementation of data alignment component 408 varies depending on the input format. For example, as described in further detail below, when reducing integer vectors, in various embodiments, data alignment component 408 includes a multiplexer configured to route dot product results and a bit shifter configured to receive a routed dot product result and perform a leftward bit shift that depends on which iteration of processing is occurring. As described in further detail below, when reducing floating-point vectors, in various embodiments, data alignment component 408 includes a multiplexer configured to route dot product results and a subtractor configured to receive a routed dot product result and perform a subtraction that depends on which iteration of processing is occurring. In the example shown, a dot product result that has been modified by data alignment component 408 is transmitted to accumulator 410. In some embodiments, accumulator 410 is implemented as one or more registers. In various embodiments, accumulator 410 accumulates results from multiple iterations of processing by dot product processing component 406 and data alignment component 408. The result from one iteration is stored in accumulator 410 and added to the result of the next iteration.
When reducing a vector of integers, for each iteration, one of the inputs is the vector of integers to be reduced and the other input is a vector with one and zero values as described below (the two vectors corresponding to input A 402 and input B 404 or vice versa).
In various embodiments, four iterations of processing are performed to sum a vector of 32-bit integers using a dot product processing component configured to handle 8-bit integers. Layouts 510 show four corresponding input layouts to be loaded into the dot product processing component with the vector to be reduced during four iterations of processing. The values shown in layouts 510 are either 0 or 1 (in 8-bit format). During a first iteration, a first dot product of the vector to be reduced (e.g., layout 508) with the first layout of layouts 510 is performed, resulting in a first sum x00 + x10 + x20 + x30 + x40 + x50 + x60 + x70 of 8-bit segments of layout 508. The first sum is a sum of values formed by the least significant 8 bits of each of the 32-bit integers. During a second iteration, a second dot product of the vector to be reduced with the second layout of layouts 510 is performed, resulting in a second sum x01 + x11 + x21 + x31 + x41 + x51 + x61 + x71 of 8-bit segments of layout 508. The second sum is a sum of values formed by the second least significant 8 bits of each of the 32-bit integers. In various embodiments, data alignment component 408 receives the second sum and performs a leftward bit shift of 8 bits. During a third iteration, a third dot product of the vector to be reduced with the third layout of layouts 510 is performed, resulting in a third sum x02 + x12 + x22 + x32 + x42 + x52 + x62 + x72 of 8-bit segments of layout 508. The third sum is a sum of values formed by the second most significant 8 bits of each of the 32-bit integers. In various embodiments, data alignment component 408 receives the third sum and performs a leftward bit shift of 16 bits. During a fourth iteration, a fourth dot product of the vector to be reduced with the fourth layout of layouts 510 is performed, resulting in a fourth sum x03 + x13 + x23 + x33 + x43 + x53 + x63 + x73 of 8-bit segments of layout 508. The fourth sum is a sum of values formed by the most significant 8 bits of each of the 32-bit integers. In various embodiments, data alignment component 408 receives the fourth sum and performs a leftward bit shift of 24 bits. In some embodiments, control logic 113 of
When reducing a vector of floating-point numbers, for each iteration, one of the inputs is a version of the vector of floating-point numbers to be reduced and the other input is a vector with one and zero values as described below (the two vectors corresponding to input A 402 and input B 404 or vice versa).
In some embodiments, three iterations of processing are performed to sum a vector of 32-bit floating-point numbers using a dot product processing component configured to handle 16-bit floating-point numbers. Layouts 610 show three data inputs associated with a vector to be reduced that is to be loaded into the dot product processing component with mask vector layout 612 during three iterations of processing. The values shown in mask vector layout 612 are either 0 or 1 (in bfloat16 format in this example). During a first iteration, a first dot product of the first layout of layouts 610 with mask vector layout 612 is performed. In various embodiments, the first layout of layouts 610 is an unmodified version of the vector to be reduced. This results in a first sum that is a sum of bfloat16 versions of the elements in the vector to be reduced because mask vector layout 612 alternates between 1 and 0 every 16 bits and the first 16 bits of each fp32 element has the same format as a bfloat16 number. During a second iteration, a second dot product of the second layout of layouts 610 with mask vector layout 612 is performed to obtain a second sum. In various embodiments, the second layout of layouts 610 is a modified version of the vector to be reduced in which instead of using the first 7 mantissa bits of each fp32 element (as is the case during the first iteration), the middle 8 mantissa bits of each fp32 element are used (replacing the first 7 mantissa bits of each fp32 element). In various embodiments, it is possible to replace the first 7 mantissa bits with the middle 8 mantissa bits because the dot product processing component is configured to handle a J-bit, which can be replaced with a mantissa bit. In various embodiments, data alignment component 408 receives the second sum and subtracts 8 from the exponent portion of the second sum to account for the shifted placement of the middle 8 mantissa bits relative to the first mantissa bit in the fp32 format. During a third iteration, a third dot product of the third layout of layouts 610 with mask vector layout 612 is performed to obtain a third sum. In various embodiments, the third layout of layouts 610 is a modified version of the vector to be reduced in which the last 8 mantissa bits of each fp32 element are used (replacing the middle 8 mantissa bits from the second iteration). In various embodiments, data alignment component 408 receives the third sum and subtracts 16 from the exponent portion of the third sum to account for the shifted placement of the last 8 mantissa bits relative to the first mantissa bit in the fp32 format. In some embodiments, control logic 113 of
At 701, a first group of elements is received. In some embodiments, the first group of elements is received by dot product processing component 406 of
At 703, a second group of elements is received. In some embodiments, the second group of elements is received by dot product processing component 406 of
At 705, a dot product result of the first group of elements with the second group of elements is calculated. In some embodiments, the dot product result is calculated using dot product processing component 406 of
At 707, the calculated dot product result is modified. In some embodiments, the modification is performed by data alignment component 408 of
At 709, the modified dot product result is added to a running sum. In some embodiments, accumulator 410 of
At 711, it is determined whether the running sum is complete. In some embodiments, determining whether the running sum is complete includes determining whether a specified number of iterations of processing have been completed. For example, in some embodiments, four iterations of processing, including calculation of four dot product results, occur in order to reduce a vector of 32-bit integers using a dot product processing component that can natively handle 8-bit integers. In some embodiments, three iterations of processing, including calculation of three dot product results, occur in order to reduce a vector of 32-bit floating-point numbers using a dot product processing component that can natively handle 16-bit floating-point numbers. If at 711 it determined that the running sum is complete (e.g., the required number of iterations have been completed), then no further processing occurs and the value of the running sum is the final value (e.g., the value stored in accumulator 410 of
Although the foregoing embodiments have been described in some detail for purposes of clarity of understanding, the invention is not limited to the details provided. There are many alternative ways of implementing the invention. The disclosed embodiments are illustrative and not restrictive.
Claims
1. A system, comprising:
- a vector multiplier configured to multiply a first vector of integer elements with a second vector of integer elements to determine a resulting vector of integer elements, wherein: integer elements of the first and second vectors of integer elements are represented using a first number of bits; and an integer element of the first vector of integer elements represents a corresponding portion of a corresponding value of a group of values, wherein: a value of the group of values is represented using a second number of bits greater than the first number of bits; and the value of the group of values is stored as split segments across more than one integer element of the first vector of integer elements;
- a vector adder configured to add together the integer elements of the resulting vector of integer elements to determine a summed result;
- a bit shifter configured to shift bits of the summed result leftward; and
- an accumulator configured to determine an accumulated output sum that includes the leftward-shifted summed result.
2. The system of claim 1, wherein each integer element of the second vector of integer elements has a value that is either zero or one.
3. The system of claim 1, wherein the first number of bits is eight bits and the second number of bits is thirty-two bits.
4. The system of claim 1, further comprising a multiplexer configured to select a bit shift amount of the bit shifter based at least in part on an iteration count.
5. The system of claim 1, further comprising a first storage unit of one or more registers configured to store the first vector of integer elements.
6. The system of claim 5, wherein the first storage unit is configured to store at least 256 bits.
7. The system of claim 1, further comprising a second storage unit of one or more registers configured to store the second vector of integer elements.
8. The system of claim 1, wherein the accumulated output sum includes a plurality of leftward-shifted summed results.
9. The system of claim 1, wherein the accumulated output sum is utilized in an artificial neural network operation.
10. A system, comprising:
- a vector multiplier configured to multiply a first vector of floating-point elements with a second vector of floating-point elements to determine a resulting vector of floating-point elements, wherein: floating-point elements of the first and second vectors of floating-point elements are represented using a first number of bits; and a floating-point element of the first vector of floating-point elements represents a corresponding portion of a corresponding value of a group of values, wherein: a value of the group of values is represented using a second number of bits greater than the first number of bits; and the value of the group of values is stored as split segments across more than one floating-point element of the first vector of floating-point elements;
- a vector adder configured to add together the floating-point elements of the resulting vector of floating-point elements to determine a summed result;
- a subtractor configured to subtract a subtraction amount from an exponent portion of the summed result to determine an exponent-modified result; and
- an accumulator configured to determine an accumulated output sum that includes the exponent-modified result.
11. The system of claim 10, wherein each floating-point element of the second vector of floating-point elements has a value that is either zero or one.
12. The system of claim 10, wherein the first number of bits is sixteen bits and the second number of bits is thirty-two bits.
13. The system of claim 12, wherein the first number of bits are formatted in a Brain Floating Point floating-point format and the second number of bits are formatted in a single-precision floating-point format.
14. The system of claim 10, further comprising a multiplexer configured to select the subtraction amount of the subtractor based at least in part on an iteration count.
15. The system of claim 10, wherein the subtractor comprises an adder configured to add negative numbers.
16. The system of claim 10, further comprising a first storage unit of one or more registers configured to store the first vector of floating-point elements.
17. The system of claim 16, wherein the first storage unit is configured to store at least 256 bits.
18. The system of claim 10, further comprising a second storage unit of one or more registers configured to store the second vector of floating-point elements.
19. The system of claim 10, wherein the accumulated output sum includes a plurality of exponent-modified results.
20. The system of claim 10, wherein the accumulated output sum is utilized in an artificial neural network operation.
Type: Application
Filed: Aug 24, 2022
Publication Date: Feb 23, 2023
Inventors: Thomas Mark Ulrich (Sunnyvale, CA), Krishnakumar Narayanan Nair (Newark, CA), Ehsan Khish Ardestani Zadeh (San Jose, CA)
Application Number: 17/894,431