WO2019182943A1 - Stochastic rounding logic - Google Patents

Stochastic rounding logic Download PDF

Info

Publication number
WO2019182943A1
WO2019182943A1 PCT/US2019/022685 US2019022685W WO2019182943A1 WO 2019182943 A1 WO2019182943 A1 WO 2019182943A1 US 2019022685 W US2019022685 W US 2019022685W WO 2019182943 A1 WO2019182943 A1 WO 2019182943A1
Authority
WO
WIPO (PCT)
Prior art keywords
csa
input
logic
sum
carry
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Ceased
Application number
PCT/US2019/022685
Other languages
English (en)
French (fr)
Inventor
Gabriel H. Loh
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Advanced Micro Devices Inc
Original Assignee
Advanced Micro Devices Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Advanced Micro Devices Inc filed Critical Advanced Micro Devices Inc
Priority to CN201980021078.2A priority Critical patent/CN111936965B/zh
Priority to EP19714078.3A priority patent/EP3769208B1/en
Priority to JP2020546908A priority patent/JP7292297B2/ja
Priority to KR1020207030287A priority patent/KR102697307B1/ko
Publication of WO2019182943A1 publication Critical patent/WO2019182943A1/en
Anticipated expiration legal-status Critical
Ceased legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F7/00Methods or arrangements for processing data by operating upon the order or content of the data handled
    • G06F7/38Methods or arrangements for performing computations using exclusively denominational number representation, e.g. using binary, ternary, decimal representation
    • G06F7/48Methods or arrangements for performing computations using exclusively denominational number representation, e.g. using binary, ternary, decimal representation using non-contact-making devices, e.g. tube, solid state device; using unspecified devices
    • G06F7/499Denomination or exception handling, e.g. rounding or overflow
    • G06F7/49942Significance control
    • G06F7/49947Rounding
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F7/00Methods or arrangements for processing data by operating upon the order or content of the data handled
    • G06F7/58Random or pseudo-random number generators
    • G06F7/588Random number generators, i.e. based on natural stochastic processes
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N20/00Machine learning

Definitions

  • reduced-precision numerical representations may be used in training machine learning models.
  • the weights in neural networks may have a reduced-precision format, and thus require less computational resources for processing.
  • some operations may still (albeit temporarily) produce wider-precision numerical representations.
  • stochastic rounding is performed instead of trivial truncation.
  • the stochastic rounding of wider-precision numerical representations avoids introducing bias and therefore, improves the accuracy of the resultant machine learning models.
  • stochastic rounding on a wider-precision decimal rounds the value up or down with a probability proportional to the least-significant decimals that are to be dropped from the wider-precision decimal. Accordingly, the value of 37.25 would be rounded up to 38 with a 25% probability, and rounded down to 37 with a 75% probability.
  • One approach for implementing stochastic rounding is by executing multiple instructions that yield the result of the rounding.
  • the software program may contain the appropriate command(s) for stochastic rounding, which during the compilation of such a program, would yield multiple instructions to be executed by a hardware processor.
  • the multiple instructions incur high overhead when processed: multiple processor cycles, potential multiple memory lookups, and pipeline stalls, among others.
  • FIG. 1 is a block diagram that depicts an example circuit for summation with stochastic rounding, in an embodiment.
  • FIG. 2 is a block diagram that depicts example circuits of carry-save adder (CSA) logic components, in an embodiment.
  • CSA carry-save adder
  • FIG. 3 is a block diagram that depicts a circuit for accumulating a stream of input numbers and stochastically rounding such an accumulation, in an embodiment.
  • FIG. 4 is a block diagram that depicts a circuit for summing multiple streams of input numbers and stochastically rounding such a summation, in an embodiment.
  • FIG. 5 is a block diagram that depicts a circuit that stochastically rounds a sum based on its sign, in an embodiment.
  • FIG. 6 is a block diagram depicting an example circuit for stochastic rounding of a signed summation, in an embodiment.
  • FIG. 7 is a flowchart depicting a process for stochastically rounding a sum of two or more numbers, in an embodiment.
  • FIG. 8 is a flowchart depicting a process for stochastically rounding a signed sum of two or more numbers, in an embodiment.
  • a random number is generated and added to the summation of two or more numbers to generate a stochastically rounded sum of the two or more numbers.
  • a random number is generated and added, in an embodiment.
  • the random number is added at the same time as the other addends.
  • the randomly-generated number has the same width as the difference between the desired lower-precision width and the higher precision width.
  • the stochastically rounded sum is generated by retrieving the lower-precision width of the most significant digits and discarding the rest of the result.
  • carry-save adder (CSA) logic is used to add a random number value to presented input values to generate a stochastically rounded sum of input values.
  • the term“carry-save adder (CSA) logic” refers to a circuit that has three or more inputs and produces a carry output and a carry-less partial sum output.
  • the carry-less partial sum output is the sum of all the inputs, without considering carry values generated while adding the corresponding digits.
  • the unaccounted carry values for the corresponding digits are aggregated as the carry output of the CSA logic.
  • a carry-save adder is an example of CSA logic.
  • the circuits and techniques described herein may refer to a binary carry-save adder for purposes of explanation, any other CSA logic may be effectively substituted.
  • circuits and techniques should not be interpreted as being limited to carry- save adders, and may be implemented by any CSA logic.
  • CSA logic is coupled to adder logic to generate the full sum of input values.
  • adder logic refers to a circuit that has two or more inputs and produces a full sum of the values presented at the two or more inputs (including any generated carries).
  • the circuits and techniques described herein may refer to a carry completing adder for purposes of explanation, as the adder logic, such circuits and techniques should not be interpreted as being limited to full adders but rather to any adder logic.
  • Non-limiting examples of a full adder are a ripple-carry adder and a carry-lookahead adder.
  • FIG. 1 is a block diagram that depicts an example circuit for summation with stochastic rounding, in an embodiment.
  • the example circuit includes accumulator register 105, CSA 110 and full adder 120.
  • CSA 110 has three inputs, X31-X0, Y15-Y0, and Z15-Z0.
  • the binary numbers presented at each of those inputs are summed by CSA 110 and full adder 120.
  • the CSA 1 lO’s carry output, C31-0 is coupled with full adder l20’s inputs U31-U0
  • the CSA 1 lO’s partial sum output, S31-S0 is coupled with full adder l20’s inputs V31-V0, respectively.
  • CSA 110 is configured to perform a partial summation (carry-less summation) of corresponding bits of inputs X31-X0, Y15-Y0 and Z15-Z0.
  • the partial sum is provided at output S31-S0.
  • Aggregation of carries for each corresponding input bits’ addition is provided at output C31-C0.
  • Full adder 120 performs carry-complete addition of binary values presented at inputs U31-U0 and V31-V0.
  • the full sum generated by adder 120 is provided at output 31-0.
  • CSA inputs X31-X0 are coupled to accumulator register 105. Accordingly, the number stored in accumulator register 105 is presented as an input to CSA 110 at inputs X31-X0. The accumulated number is added to a 16-bit input number that is presented at CSA 110 inputs Y15-Y0. The other input to CSA 110 is a l6-bit random number, which is presented at CSA 110 inputs Z15-Z0.
  • the random number is generated by a linear-feedback shift register.
  • the linear-feedback shift register is coupled to the random number input of CSA logic.
  • the linear-feedback shift register may be of any bit-length and generate a pseudo random number of such a bit length.
  • a register is coupled to the random number input of CSA logic.
  • the random number is generated and stored in the register, prior to computing the stochastic rounding of a sum.
  • a CSA logic is optimized for one or more input bits for which no random number input is presented.
  • the random number presented at a CSA logic input has less bit-width than at least one other input to the CSA logic.
  • Circuit components of a CSA logic that have no random number input may be eliminated or optimized. Doing so improves the density, power consumption, and performance of the circuit.
  • an input of the CSA logic is an accumulated input.
  • An accumulated input is wider than the other inputs of the CSA logic because at the accumulated input, an intermediate result of a previous operation is presented.
  • the previous operation may have resulted in additional bit(s), which are accommodated by the wider-width accumulated input.
  • the accumulated input may be coupled to an accumulator register that is wider in width and into which the intermediate result of previous operations is stored.
  • the non-accumulated input of a CSA logic has less bit-width than at least the accumulated logic of the CSA logic.
  • Circuit components of a CSA logic that have no non-accumulated number input (or are otherwise always set to a zero-value for the non- accumulated input) are eliminated or optimized similarly to the components without random number inputs, in an embodiment.
  • FIG. 2 is a block diagram that depicts example circuits of CSA logic components, in an embodiment.
  • an accumulated input of the CSA logic is a 32-bit input
  • a non-accumulated input is a l6-bit input
  • a random number input is an 8-bit input.
  • Circuit 200 is a sample logic circuit that yields the least significant bit of a carry output, CO, and the least significant bit of a partial sum output, SO. The output is produced by presenting the least significant bit of the accumulated input at input A0, the least significant bit of the non- accumulated input at input B0, and the least significant bit of the random number input at input CO.
  • Circuit 220 is a sample logic that yields the eighth bit of a carry output, C8, and the eighth bit of a partial sum output, S8. Rather than using a circuit logic as one depicted for the least significant bits, circuit 200, circuit 220 is optimized. The optimization is due to the lack of random number input, C, because the random number input is lower-width input of 8- bits and thus has meaningful inputs only from bits 0 to 7. Because of the lack of the random number input, equivalent logic gates of 204, 208 and 210 of circuit 200 are eliminated in circuit 220. Logic gate 222, equivalent to logic gate 202 in circuit 200, and logic gate 228, equivalent to logic gate 208 in circuit 200, are used to produce the eighth-bit partial sum, S8, and the eighth-bit carry output, C8.
  • Circuit 230 is a further optimization of circuit 220 based on the lack of both the random number input and non-accumulated number input starting at the 16 th -bit input of the sample CSA logic. With the further optimization, no logic gates are used to produce the carry output and partial sum output for the bits 16 through 31.
  • the partial sum output of CSA logic and the carry output of CSA logic are coupled to respective intermediate registers.
  • the intermediate registers themselves are coupled to the input of a full adder and in a feedback path to the at least two inputs of the CSA logic.
  • the remaining input(s) of the CSA logic are presented with respective input stream(s) of numbers to be summed.
  • an input number is partially summed with the previous cycle’s partial sum
  • the carry output is stored in the intermediate registers
  • a new partial sum and new carry output are stored in the intermediate registers.
  • a random number is presented at the input stream input of the CSA logic.
  • the random number is presented based on multiplexing an output from a register containing the random number or from a linear-feedback shift register.
  • the final accumulated carry and partial sum are accumulated together with the random number.
  • a number of the resulting accumulation’s most significant bits are the stochastically rounded sum of the presented input stream.
  • one of the intermediate registers is initialized to a random number.
  • the random number is accumulated with the first number of the input stream.
  • most significant bits of the output represent the stochastically rounded sum of the input stream.
  • FIG. 3 is a block diagram that depicts a circuit for accumulating a stream of input numbers and stochastically rounding such an accumulation, in an embodiment.
  • the example circuit includes accumulator registers 315 and 325, CSA 310 and full adder 320.
  • CSA 310 has two 32-bit inputs, X31-X0 and Y31-Y0, and one 16-bit input, Z15-Z0.
  • the binary numbers presented at each of those inputs are summed by CSA 310 and full adder 320.
  • the CSA 3 lO’s carry output, C31-C0 is coupled to register 315, which itself is coupled with full adder 320’s input U31-U0.
  • the CSA 1 lO’s partial sum output, S31- S0 is coupled with register 325, which itself is coupled with full adder 320’s input V31-V0, respectively.
  • Registers 315 and 325 are respectively coupled to input X31-X0 and Y31-Y0, respectively, in a feedback loop in this example. Registers 315 and 325 are initialized to zero.
  • the l6-bit input number is multiplexed in by multiplexer 330 to be presented at inputs Z15-Z0.
  • CSA 310 evaluates and sums the input number with the previously evaluated carry output and partial sum presented from registers 315 and 325. For example, in the first cycle, register 315 and 325 contain zero, thus the evaluation by CSA 310 results in storing the input number in register 325 as a partial sum output with zero values. Register 315 continues to store zero because adding zero to an input number yields no carry output. In the next cycle, the previous input is presented again at input Y31-0 due to feedback coupling of register 325 with CSA 310.
  • the newly presented input number is accumulated with the previous input number to yield a new partial sum to be stored in register 325 and a carry output of the sum to be stored in register 315.
  • the cycle is repeated until all the input numbers in the input stream are presented at the Z15-0 input of CSA 310.
  • a control signal for 16-bit multiplexer 330 selects the random number input to be presented at Z15-0 input of CSA 310.
  • the random number is partially summed at CSA 310 with the accumulated carry value and accumulated partial sum value presented from registers 315 and 325 at inputs X31-0 and Y31-0, respectively.
  • the resulting partial sum and the resulting carry output at respective registers 315 and 325 include a random number and are added at full adder 320.
  • the most significant bits 31-16 of full adder 320’s output represent the stochastically rounded sum of the input stream, while the rest of the output bits are discarded.
  • a circuit simultaneously sums and stochastically rounds the sum of three or more input numbers.
  • the circuit uses CSA logic that includes Wallace tree adder logic.
  • The“Wallace tree adder logic” term refers herein to a circuit that has four or more inputs and produces a carry output and a carry -less partial sum output of input numbers presented at the inputs.
  • a Wallace Tree adder is an example of Wallace tree adder logic.
  • the circuits and techniques described herein may refer to a Wallace tree adder for purposes of explanation, any other Wallace tree adder logic may be effectively substituted. Therefore, such circuits and techniques should not be interpreted as being limited to a Wallace tree adder, but are applicable to any Wallace tree adder logic.
  • FIG. 4 is a block diagram that depicts a circuit for summing multiple streams of input numbers and stochastically rounding such a summation, in an embodiment.
  • the circuit uses a Wallace tree adder.
  • a Wallace tree adder includes a network of coupled CSA adders that simultaneously accumulate multiple input numbers presented at the inputs of the Wallace tree adder to yield an accumulated carry output and an accumulated partial sum output.
  • Wallace tree adder 410 has ten inputs, two of the inputs, C and S, are coupled to carry output accumulator register 415 and partial sum output accumulator register 425, similar to FIG. 3. Each CSA of Wallace tree adder reduces the number of inputs to one less number of outputs. The output of such a CSA is then coupled to another CSA’s input to further lessen the number of outputs, until there are only two outputs, carry output P and partial sum output Q.
  • Wallace tree adder 4l0’s outputs P and Q are coupled to inputs of CSA 413.
  • the third input of CSA 413 is coupled to multiplexer 430.
  • a random number input or a zero value is selected to be presented at the input of CSA 413.
  • Presenting a zero value allows for streams of numbers at inputs of Xi- Xs to be accumulated at CSA 4l3’s output registers 415 and 425.
  • mux 430 selects the random number input for a random number to be added to the final accumulation, in one embodiment. In other embodiments, the random number input is selected by mux 430 in any other accumulation cycle.
  • CSA 413 The outputs of CSA 413 are coupled to carry output register 415 and partial sum output register 425, which themselves are coupled to full adder 420.
  • Full adder 420 evaluates the full addition of the carry output and the partial sum of CSA 413 as accumulated in output registers 415 and 425. Accordingly, full adder 420 yields carry complete results of summations of multiple streams of numbers.
  • a number of most significant bits of full adder 420’s output are the stochastically rounded sum of the input stream of numbers presented at the inputs of Wallace tree adder 410.
  • a random number is subtracted (or stated otherwise, a negative random number is added). For example, a sample sum of two or more numbers is -37.25. When stochastically rounding such a negative sum, the result is -37 with a 75% probability and is -38 with a 25% probability. When a random number is generated in the range from -1 to 0 (-1 not included), the random number has a 75% probability to be in the range from -0.75 to 0 (-0.75 not included) and a 25% probability to be from -1 to -0.75 (-1 not included).
  • a positive random number is generated (e.g. using the techniques described herein) and then converted to a negative number.
  • the positive random number is converted to a negative number of the same width by negating each bit of the positive number to yield one’s complement negative number.
  • a positive random number’s each bit is negated and then a value of one is added to convert the positive random number to the two’s complement of the random number.
  • the most significant bit of a randomly generated positive number is negated to yield a negative random number albeit not equal in absolute value to the positive random number.
  • the sum is generated without stochastic rounding and then based on the sign of the sum (positive or negative) a random number is added with or without conversion to a negative random number.
  • FIG. 5 is a block diagram that depicts a circuit that stochastically rounds a sum based on its sign, in an embodiment.
  • the sample circuit of FIG. 5 includes full adder 540 and a l6-bit XOR gate 550.
  • a 32-bit sum is an input U31-0 to full adder 540 to generate stochastic rounding of the input sum.
  • Full adder 540 also exposes input CIN for carry-in input to the full adder.
  • the most significant bit of the input sum, U31, is also coupled to each bit of XOR gate 550’s l6-bit input.
  • the other 16-bit input of the XOR gate is coupled to positive random number input.
  • the output of XOR gate 550 is coupled to full adder 540’s inputs V15- V0.
  • each of the random number bits is XORed with a value one.
  • Such an XOR operation yields a one’s complement of the positive random number.
  • the one’s complement random number is then presented as an input to full adder 540 at inputs V15-V0 to be added with the sum at input U31-U0.
  • the most significant bit of the sum, U31 is coupled to input CIN of full adder 540, thus adding a value of one to the summation of the sum and the negative random number.
  • Such an addition effectively makes the negative random number a two’s complement of the presented positive random number.
  • a number of most significant bits of the result from the output of full adder 540, such as output 31-16 are selected as the stochastically rounded negative sum.
  • a circuit for stochastic rounding of sum includes two sub circuits for stochastic rounding of sums, the two sub-circuits being different in the sign of the random number input.
  • One sub-circuit has a positive random number at the random number input, the other has a negative random number at the random number input.
  • the stochastic rounded sum is calculated using both sub-circuits, one or both of the most significant bits of the respective results are used to select which of the two stochastic rounded sum results to select as the output result of the circuit. For example, if the most significant bit of the result of the positive random number sub-circuit is positive then the result is selected as the output of the circuit. If the result of the positive random number sub-circuit is negative then the result of the negative random number sub-circuit is used.
  • FIG. 6 is a block diagram depicting an example circuit for stochastic rounding of a signed summation, in an embodiment.
  • the example circuit includes sub-circuits 610A and 61 OB.
  • Sub-circuits 610A and B have the same circuit that sums input numbers and presents a stochastically rounded number.
  • Sub-circuits 610A and B may include any of the circuits discussed herein.
  • the input numbers presented as an input to sub-circuits 610A and B are the same. However, the random number input is inverted for sub-circuit B by inverter 640.
  • Inverter 640 is coupled to only most significant bit of the random number input. Such an inversion (complete or most significant bit (MSB) only), converts a positive random number presented at the random number input into a different negative, yet still random, number.
  • MSB most significant bit
  • the signs of outputs of sub-circuits 610A and 610B determine which of sub-circuit’s output reflects the correct stochastic rounding.
  • multiplexer 630 is coupled to the most significant bits of sub-circuit 610B. The multiplexer 630 selects the sub-circuit 6lOA’s output when the sub-circuits 6lOB’s sign is negative and selects the sub-circuit 6lOB’s output when the sub-circuits 6lOB’s sign is positive.
  • FIG. 7 is a flowchart depicting a process for stochastically rounding a sum of two or more numbers, in an embodiment.
  • two or more input numbers are received for summation.
  • a random number is received for stochastic rounding.
  • the process as depicted in FIG. 7 may be performed iteratively, the random number is received at step 710 during a single iteration rather than at every iteration of the process. This ensures that the random number is added only once during an iterative accumulation.
  • the random number may be generated by a linear-feedback shift register or any other methodology at step 700.
  • Step 715 a half addition is performed on the input numbers and the random number.
  • the digits are summed without propagating any carry to generate a partial sum output, and the generated carries are aggregated as a separate carry output.
  • Steps 705-715 are performed by one or more carry-save adders, in an embodiment.
  • the partial sum and the carry output may be stored at step 720 and provided as feedback as input numbers at step 705. Such a feedback generates accumulative partial summation of one or more input streams of numbers.
  • the carry output and the partial sum are received, and at step 730, a full addition (including carry propagation) of the partial sum output and the carry output is performed generating full addition of input number(s) and random number as an output. Steps 725-730 are performed by an adder logic, in an embodiment.
  • a number of most significant bits of the full sum output are selected as a stochastically rounded result of the summation of the two or more numbers.
  • the selected number of significant bits depends on the number of bits used for the random number.
  • FIG. 8 is a flowchart depicting a process for stochastically rounding a signed sum of two or more numbers, in an embodiment.
  • step 805 two or more input numbers are received for summation.
  • step 810 a full addition (including carry propagations) of the two or more numbers is performed to generate an intermediate signed sum. Based on the most significant bit, the sign of the intermediate sum is determined at step 815.
  • a random number is converted to a negative random number.
  • the random number may be converted based on negating all its bits or by negating only the most significant bit of the random number. If the intermediate sum is positive, as indicated by the most significant bit being clear, then the random number is used without any conversion.
  • step 825 the random number is received, and at step 830, an addition is performed of the random number with the intermediate sum generated at step 810. At step 830, the full sum is generated.
  • a number of most significant bits of the full sum output are selected as stochastically rounded result of the summation of the two or more numbers.
  • the number of significant bits depends on the number of bits used for the random number input.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • Mathematical Analysis (AREA)
  • Mathematical Optimization (AREA)
  • Pure & Applied Mathematics (AREA)
  • Computational Mathematics (AREA)
  • Computing Systems (AREA)
  • Software Systems (AREA)
  • Computer Vision & Pattern Recognition (AREA)
  • Data Mining & Analysis (AREA)
  • Evolutionary Computation (AREA)
  • Medical Informatics (AREA)
  • Artificial Intelligence (AREA)
  • Mathematical Physics (AREA)
  • Complex Calculations (AREA)
PCT/US2019/022685 2018-03-22 2019-03-18 Stochastic rounding logic Ceased WO2019182943A1 (en)

Priority Applications (4)

Application Number Priority Date Filing Date Title
CN201980021078.2A CN111936965B (zh) 2018-03-22 2019-03-18 随机舍入逻辑
EP19714078.3A EP3769208B1 (en) 2018-03-22 2019-03-18 Stochastic rounding logic
JP2020546908A JP7292297B2 (ja) 2018-03-22 2019-03-18 確率的丸めロジック
KR1020207030287A KR102697307B1 (ko) 2018-03-22 2019-03-18 추계학적 반올림 로직

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US15/933,229 2018-03-22
US15/933,229 US10628124B2 (en) 2018-03-22 2018-03-22 Stochastic rounding logic

Publications (1)

Publication Number Publication Date
WO2019182943A1 true WO2019182943A1 (en) 2019-09-26

Family

ID=65952226

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2019/022685 Ceased WO2019182943A1 (en) 2018-03-22 2019-03-18 Stochastic rounding logic

Country Status (6)

Country Link
US (1) US10628124B2 (https=)
EP (1) EP3769208B1 (https=)
JP (1) JP7292297B2 (https=)
KR (1) KR102697307B1 (https=)
CN (1) CN111936965B (https=)
WO (1) WO2019182943A1 (https=)

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108256644B (zh) * 2018-01-05 2021-06-22 上海兆芯集成电路有限公司 微处理器电路以及执行神经网络运算的方法
US10908878B2 (en) * 2018-11-26 2021-02-02 Nvidia Corporation Dynamic directional rounding
US11132198B2 (en) * 2019-08-29 2021-09-28 International Business Machines Corporation Instruction handling for accumulation of register results in a microprocessor
US11615782B2 (en) * 2020-11-12 2023-03-28 Sony Interactive Entertainment Inc. Semi-sorted batching with variable length input for efficient training
CN113791756B (zh) * 2021-09-18 2022-12-23 中科寒武纪科技股份有限公司 转数方法、存储介质、装置及板卡
CN113835677A (zh) * 2021-09-23 2021-12-24 龙芯中科技术股份有限公司 操作数处理系统、方法及处理器

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040078401A1 (en) * 2002-10-22 2004-04-22 Hilton Howard E. Bias-free rounding in digital signal processing
US8019805B1 (en) * 2003-12-09 2011-09-13 Globalfoundries Inc. Apparatus and method for multiple pass extended precision floating point multiplication
US20170220342A1 (en) * 2016-01-28 2017-08-03 International Business Machines Corporation Stochastic rounding floating-point add instruction using entropy from a register

Family Cites Families (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5974435A (en) * 1997-08-28 1999-10-26 Malleable Technologies, Inc. Reconfigurable arithmetic datapath
CN100350389C (zh) * 2003-10-24 2007-11-21 英特尔公司 用于检测软错误的方法、设备和处理器
JP4544870B2 (ja) 2004-01-26 2010-09-15 富士通セミコンダクター株式会社 演算回路装置
US8266198B2 (en) * 2006-02-09 2012-09-11 Altera Corporation Specialized processing block for programmable logic device
US8239441B2 (en) * 2008-05-15 2012-08-07 Oracle America, Inc. Leading zero estimation modification for unfused rounding catastrophic cancellation
US8533250B1 (en) * 2009-06-17 2013-09-10 Altera Corporation Multiplier with built-in accumulator
US9710228B2 (en) * 2014-12-29 2017-07-18 Imagination Technologies Limited Unified multiply unit
US10108397B2 (en) * 2015-08-25 2018-10-23 Samsung Electronics Co., Ltd. Fast close path solution for a three-path fused multiply-add design
US10552370B2 (en) 2015-10-08 2020-02-04 Via Alliance Semiconductor Co., Ltd. Neural network unit with output buffer feedback for performing recurrent neural network computations
US9940102B2 (en) * 2016-01-04 2018-04-10 International Business Machines Corporation Partial stochastic rounding that includes sticky and guard bits
US9952829B2 (en) * 2016-02-01 2018-04-24 International Business Machines Corporation Binary fused multiply-add floating-point calculations

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040078401A1 (en) * 2002-10-22 2004-04-22 Hilton Howard E. Bias-free rounding in digital signal processing
US8019805B1 (en) * 2003-12-09 2011-09-13 Globalfoundries Inc. Apparatus and method for multiple pass extended precision floating point multiplication
US20170220342A1 (en) * 2016-01-28 2017-08-03 International Business Machines Corporation Stochastic rounding floating-point add instruction using entropy from a register

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
SUYOG GUPTA ET AL: "Deep Learning with Limited Numerical Precision", 32ND INTERNATIONAL CONFERENCE ON MACHINE LEARNING, 30 June 2015 (2015-06-30), Lille, France, pages 1737 - 1746, XP055502076 *

Also Published As

Publication number Publication date
CN111936965A (zh) 2020-11-13
JP2021517301A (ja) 2021-07-15
US10628124B2 (en) 2020-04-21
CN111936965B (zh) 2025-03-21
US20190294412A1 (en) 2019-09-26
JP7292297B2 (ja) 2023-06-16
EP3769208A1 (en) 2021-01-27
EP3769208B1 (en) 2022-10-26
KR102697307B1 (ko) 2024-08-23
KR20200134281A (ko) 2020-12-01

Similar Documents

Publication Publication Date Title
EP3769208B1 (en) Stochastic rounding logic
Moss et al. A two-speed, radix-4, serial–parallel multiplier
US11169778B2 (en) Converting floating point numbers to reduce the precision
Demmel et al. Parallel reproducible summation
US9519460B1 (en) Universal single instruction multiple data multiplier and wide accumulator unit
US9722629B2 (en) Method and apparatus for converting from floating point to integer representation
CN112835551B (zh) 用于处理单元的数据处理方法、电子设备和计算机可读存储介质
WO2016119547A1 (en) Method and apparatus for converting from integer to floating point representation
de Lassus Saint-Geniès et al. Exact lookup tables for the evaluation of trigonometric and hyperbolic functions
Mohan et al. Evaluation of mixed-radix digit computation techniques for the three Moduli RNS {2 n− 1, 2 n, 2 n+ 1− 1}
Wang et al. Hardware designs for decimal floating-point addition and related operations
JP2006172035A (ja) 除算・開平演算器
US10310809B2 (en) Apparatus and method for supporting a conversion instruction
KR102761403B1 (ko) 시프트 마지막 곱셈 및 누산(mac) 프로세스를 위한 시스템 및 방법
Zadiraka et al. Calculating the Sum of Multidigit Values in a Parallel Computational Model
US6826588B2 (en) Method and apparatus for a fast comparison in redundant form arithmetic
TW202333041A (zh) 執行浮點運算的系統及方法
JP2018097864A (ja) リーディングゼロ予想
CN120915430B (zh) 加法电路、运算电路、执行哈希算法的电路及相关装置
JP2761145B2 (ja) 開平演算装置
Latha et al. Residue-to-Binary converters for the seven moduli set {2 n-5-1, 2 n-3-1, 2 n-2+ 1, 2 n-1-1, 2 n-1+ 1, 2n, 2 n+ 1} for n even
SURYAVATHI et al. DESIGN AND IMPLEMENTATION OF EFCSA-AN EFFICIENT CARRY SPECULATIVE APPROXIMATE ADDER WITH RECTIFICATION
Tang et al. Long-Length Accumulation Unit with Efficient Biasing for Binary Weight CNNs
CN118605837A (zh) 一种二进制粒子群算法在fpga上的串并行实现方法
US20080307032A1 (en) Divider Circuit

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 19714078

Country of ref document: EP

Kind code of ref document: A1

ENP Entry into the national phase

Ref document number: 2020546908

Country of ref document: JP

Kind code of ref document: A

NENP Non-entry into the national phase

Ref country code: DE

ENP Entry into the national phase

Ref document number: 20207030287

Country of ref document: KR

Kind code of ref document: A

WWE Wipo information: entry into national phase

Ref document number: 2019714078

Country of ref document: EP

ENP Entry into the national phase

Ref document number: 2019714078

Country of ref document: EP

Effective date: 20201022

WWG Wipo information: grant in national office

Ref document number: 201980021078.2

Country of ref document: CN