System and method for improving the accuracy of reciprocal operations performed by a floating-point unit

The invention provides a system and method for improving the accuracy of approximating the reciprocal of a number and the reciprocal square root of a number. A method according to the present invention for approximating the reciprocal square root of a number (N) includes the steps of: (a) estimating the reciprocal square root of the number to produce an estimate (Xi); (b) multiplying Xi by N to produce a first intermediate result (IR1); (c) determining a second intermediate result (IR2) according to the equation: IR2=(1−Xi,*IR1)/2; (d) multiplying IR2 by Xi to produce a third intermediate result (IR3); and (e) adding IR3 to Xi to produce an approximation of the reciprocal square root of the number. This method provides one advantage because of the order in which the multiplication is performed makes it likely that all results will be in normalized form. Specifically, the Newton-Raphson algorithm requires one to determine the product of: N*Xi*Xi. The method according to the present invention first multiplies N by Xi to produce an intermediate result. This intermediate result will likely be in normalized form, even when N is large. The method then multiplies the intermediate result by Xi to produce: (N*Xi)*Xi. If the method first multiplied Xi by Xi to produce the intermediate result, the intermediate result would most likely be in denormalized form when N is large. It is disadvantageous to produce a denormal result because producing a denormal result causes a loss of accuracy. Therefore, although (N*Xi)*Xi is mathematically identical to (Xi*Xi)*N, the former is preferred because it avoids denormal intermediate results. This method provides another advantage because the result of step (c) is typically a very small number. This provides an advantage because when the result of step (c) is expressed in normalized floating-point form, the precision of the result is increased, thereby improving the approximation of the reciprocal.

Skip to: Description  ·  Claims  · Patent History  ·  Patent History
Description
BACKGROUND OF THE INVENTION

[0001] 1. Field of the Invention

[0002] The present invention relates to floating-point arithmetic, and more specifically to a floating-point unit that implements Newton-Raphson convergent algorithms for determining reciprocals and reciprocal square roots.

[0003] 2. Related Art

[0004] The reciprocal of a number (N) is defined as 1 divided by N. The reciprocal square root of N is defined as 1 divided by the square root of N.

[0005] In digital processing systems, numerical data is typically expressed using an integer or a floating-point representation. A floating-point representation is preferred in many applications because of its ability to express a wide range of values and its ease of manipulation for some specified operations. A floating-point representation includes three components: a sign bit (sign), a mantissa (M) and an exponent (exp). The floating-point number represented is (−1)sign* M * 2exp.

[0006] A standard code for representing floating-point numbers is the “IEEE Standard for Binary Floating-Point Arithmetic,” which is referred to herein as the IEEE-754 standard (or simply the IEEE standard) and incorporated herein by reference. In the IEEE standard the exponent consists of 8 bits for single precision floating-point numbers and 11 bits for double precision floating-point numbers, the mantissa consists of 23 bits for single precision and 52 bits for double precision. Additionally, for both single precision and double precision floating-point numbers there is a single bit that represents the sign of the number.

[0007] Many operations can be performed on floating-point numbers, including arithmetic operations, such as addition, subtraction, multiplication, division, and square roots. Because arithmetic operations with floating-point numbers require a great deal of computing power, many microprocessors come with a specialized integrated circuit, called a floating-point unit (FPU), for performing floating-point arithmetic. Floating-point units are also called math coprocessors, numeric coprocessors, coprocessors, or simply processors.

[0008] There are two major schemes utilized by an FPU in performing division and square root functions. The first scheme is “digit-by-digit”, and the second scheme is “convergent approximation”. In general, digit-by-digit schemes offer a short delay per iteration, but they also require a large number of iterations or clock-cycles. Additionally, digit-by-digit schemes produce a final remainder, which can be used to determine whether a result is exact or inexact.

[0009] Convergent approximations offer a faster convergence rate (lower number of iterations) than the digit-by-digit scheme, but they do not produce a final remainder; thus, one can not determine whether a result produced by a convergent approximation is exact or inexact. Nevertheless, convergent approximations provide approximate results that are adequate for most applications.

[0010] Convergent approximation algorithms for approximating reciprocals and reciprocal square roots include the Newton-Raphson algorithm. The Newton-Raphson algorithm for approximating the reciprocal of a number (N) is expressed as: Xi+1=Xi* (2−N*Xi), where Xi is an approximation of the reciprocal of N at the ith iteration, where í is greater than or equal to 1, and Xi+1, is a more accurate approximation. For example, if Xi provides 14 bits of accuracy, Xi+1 provides an accuracy of 28 bits.

[0011] The Newton-Raphson algorithm for approximating the reciprocal square root of N is expressed as: Xi+1=(3−N*Xi*Xi)*Xi/2, where Xi is an approximation of the reciprocal square root of N at the ith iteration, where í is greater than or equal to 1, and Xi+1 is a more accurate approximation.

[0012] What is desired is a method for implementing the Newton-Raphson approximations such that the accuracy of the approximations is increased, but that the performance of the system implementing the method is not negatively affected.

SUMMARY OF THE INVENTION

[0013] The present invention provides a method, and a system for implementing that method, for improving the accuracy of approximating the reciprocal of a number and the reciprocal square root of a number. The methods of the present invention do not negatively impact the performance of the system.

[0014] In one aspect, the invention provides a method for approximating the reciprocal square root of a number (N). This method includes the steps of: (a) estimating the reciprocal square root of N to produce an estimate (Xi); (b) multiplying the estimate by N to produce a first intermediate result (IR1); (c) determining a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2; (d) multiplying the second intermediate result by the estimate to produce a third intermediate result; and (e) adding the third intermediate result to the estimate to produce an approximation of the reciprocal square root of the number.

[0015] This method provides one advantage because of the order in which the multiplication is performed makes it likely that all results will be in normalized form. Specifically, the Newton-Raphson algorithm requires one to determine the product of: N*Xi*Xi. The method according to the present invention first multiplies N by Xi to produce an intermediate result. This intermediate result will likely be in normalized form, even when N is large. The method then multiplies the intermediate result by Xi to produce: (N*Xi)*Xi. If the method first multiplied Xi by Xi to produce the intermediate result, the intermediate result would most likely be in denormalized form when N is large. It is disadvantageous to produce a denormal result because producing a denormal result causes a loss of accuracy. Therefore, although (N*Xi)*Xi is mathematically identical to (Xi*Xi)*N, the former is preferred because it avoids denormal intermediate results.

[0016] The above method provides another advantage because the result of step (c) is typically a very small number. This provides an advantage because when the result of step (c) is expressed in normalized floating-point form, the precision of the result is increased, thereby improving the approximation of the reciprocal.

[0017] In another aspect, the invention provides four instructions for implementing the above method for approximating the reciprocal square root of a number (N). These four instructions are executed by a floating-point unit. The four instruction include: a first instruction that enables the floating-point unit to produce an estimate (Xi) of the reciprocal square root of N; a second instruction that enables the floating-point unit to produce a first intermediate result (IR1) equal to Xi multiplied by N; a third instruction that enables the floating-point unit to produce a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2; and a fourth instruction that enables the floating-point unit to produce an approximation (Xi+1) of the reciprocal square root of the number according to the equation: Xi+1=Xi+Xi*IR2.

[0018] In another aspect, the invention provides a single instruction for implementing the above method for approximating the reciprocal square root of a number (N). This instruction is also executed by a floating-point unit. The instruction enables the floating-point unit to produce an estimate (Xi) of the reciprocal square root of N; produce a first intermediate result (IR1) equal to Xi multiplied by N; produce a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2; and, lastly, produce an approximation (Xi+1) of the reciprocal square root of N according to the equation: Xi=Xi+Xi*IR2.

[0019] In another aspect, the invention provides a computer program product having a computer useable medium having floating-point instructions stored therein. The floating-point instructions enable a floating-point unit to approximate the reciprocal square root of a number (N). The floating-point instructions include: a first instruction to enable the floating-point unit to produce an estimate (Xi) of the reciprocal square root of the number; a multiply instruction to enable the floating-point unit to produce a first intermediate result (IR1) equal to the estimate multiplied by the number; a second instruction to enable the floating-point unit to produce a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2; and a third instruction to enable the floating-point unit to produce an approximation (Xi+1) of the reciprocal square root of the number according to the equation: Xi+1=Xi+1Xi*IR2.

[0020] In another aspect, the invention provides a method for approximating the reciprocal of a number (N). The method includes the steps of: (a) retrieving the number from a floating-point memory, wherein the number is stored in the memory in a memory format; (b) unpacking the number from the memory format to an internal format; (c) estimating the reciprocal of the number to produce an estimate (Xi); (d) determining a first intermediate result (IR1) according to the equation: IR1=1−N*Xi; (e) multiplying the first intermediate result by the estimate to produce a second intermediate result; (f) adding the estimate to the second intermediate result to produce an approximation of the reciprocal of the number, wherein the approximation is in the internal format; (g) packing the approximation from the internal format to the memory format; and (h) writing the approximation in the memory format to the floating-point memory.

[0021] The result of step (d) is typically a very small number. This provides an advantage because when the result of step (d) is expressed in normalized floating-point form, the precision of the result is increased, thereby improving the approximation of the reciprocal.

[0022] In another aspect, the invention provides a computer program product comprising a computer useable medium having a floating-point instruction stored therein. The floating-point instruction enables a floating-point unit to approximate the reciprocal of a number (N). More specifically, the floating-point instruction enables the floating-point unit to produce an estimate (Xi) of the reciprocal of the number, produce an intermediate result (IR) according to the equation: IR=1−N*Xi, and produce an approximation (Xi+1)of the reciprocal of the number according to the equation: Xi+1=Xi+Xi*IR.

[0023] Further features and advantages of the present invention, as well as the structure and operation of various embodiments of the present invention, are described in detail below with reference to the accompanying drawings.

BRIEF DESCRIPTION OF THE FIGURES

[0024] The accompanying drawings, which are incorporated herein and form part of the specification, illustrate a preferred embodiment of the present invention and, together with the description, further serve to explain the principles of the invention and to enable a person skilled in the pertinent art to make and use the invention. In the drawings, like reference numbers indicate identical or functionally similar elements. Additionally, the left-most digit(s) of a reference number identifies the drawing in which the reference number first appears.

[0025] FIG. 1 is a block diagram of a portion of a computer system according to one embodiment of the invention.

[0026] FIG. 2 illustrates a method for performing an iteration of the Newton-Raphson algorithm for approximating the reciprocal of a number.

[0027] FIG. 3 illustrates a method for performing an iteration of the Newton-Raphson algorithm for approximating the reciprocal square root of a number.

[0028] FIGS. 4A and 4B illustrate the importance of the order in which a multiplication is performed with respect to the Newton-Raphson reciprocal square root algorithm.

DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS

[0029] FIG. 1 is a block diagram of a portion of a computer system 100 according to one embodiment of the invention. Computer system 100 includes a floating-point unit (FPU) 110 that implements a floating-point instruction set. FPU 110 supports the IEEE-754 standard and enhances, among other things, geometric computations in 3D-graphics applications executed on computer system 100. In a preferred embodiment, FPU 110 is implemented with a super-pipelined, multiply-add micro-architecture. At its peak, FPU 110 can execute one floating-point instruction and one floating-point load/store instruction per cycle.

[0030] Computer system 100 further includes an instruction dispatch unit (IDU) 120, a load store unit (LSU) 130, and an integer execution unit (IXU) 140. IDU 120 is interfaced with instruction memory 115, which stores, among other things, floating-point instructions. IDU 120 dispatches the floating-point instructions to FPU 110 and keeps track of the state of each dispatched floating-point instruction, the register dependency, and the possibility of bypassing a resultant operand to the next FPU instruction. FPU 110 performs floating-point computations, as directed by the floating-point instructions dispatched by IDU 120. LSU 130 interfaces with other elements that are internal or external to processor 100, and provides data to, and receives data from FPU 110. For example, operands are loaded from LSU 130 to FPU 110 and results are stored from FPU 110 to LSU 130. IXU 140 performs integer computations, and is able to transfer data to, and receive data from, FPU 110.

[0031] FPU 110 includes a floating-point register file (FPR) 152 that interfaces with LSU 130. FPR 152 includes a number of read ports and a number of write ports. More specifically, in one embodiment, FPR 152 is a 32-entry 64-bit register file with four read ports and two write ports.

[0032] A floating-point pipe file (PIP) 154 couples to FPR 152 and further interfaces with LSU 130 and IXU 140. For each instruction, PIP 154 selects and receives operands from, among other sources, FPR 152. PIP 154 then unpacks the received operands from an IEEE compliant format (also referred to herein as “memory format”) into an internal data format recognized by the processing units within FPU 110. The internal data format of PIP 154 is similar to the IEEE-754 standard format, except that, among other things, the internal data format utilizes a 12-bit exponent field. The 12-bit exponent field provides an advantage in that it makes it likely that all intermediate results can be represented in normalized form. PIP 154 also packs the results from FPU 110 into the memory format (i.e., IEEE compliant format) required by the external circuitry and provides the packed results to FPR 152.

[0033] A floating-point multiplier (MUL) 156 couples to PIP 154 and executes floating-point multiply instructions as well as the multiply portion of compound instructions such as a multiply-add (MADD) instruction. MUL 156 receives the mantissas of two operands from PIP 154. MUL 156 is described in further detail in U.S. patent application Ser. No.______ (Attorney Docket No. 19427-89-1).

[0034] A floating-point adder (ADDER) 158 couples to PIP 154 and MUL 156. ADDER 158 executes floating-point add and subtract instructions as well as the add portion of compound instructions such as MADD. ADDER 158 receives two operands and performs floating-point magnitude addition/subtraction using, for example, a prescale adder (PSA) operated in parallel with a massive cancellation adder (MCA). The final output is selected from one of the adders based on, among other things, the exponent difference of the two input operands. The final output is then provided to PIP 154 for storage. Selection criteria for PSA and MCA is further described in the above-referenced U.S. patent application Ser. No.______ (Attorney Docket No. 19427-97). ADDER 158 is also described in further detail in U.S. patent application Ser. No.______ (Attorney Docket No. 19427-89-1).

[0035] A floating-point exponent unit 160 functions to determine the exponent of a result of a given floating-point arithmetic operation. In general, exponent unit 160 can determine approximately what the result exponent will be from the exponents of the operands, but it must interact with the mantissa calculation units (e.g., MUL 156 and ADDER 158) to determine how to adjust the result exponent value based on normalization shifts. Additionally, exponent section 160 performs overflow/underflow prediction, as well as detection.

[0036] A floating-point control unit 164 is the control unit for FPU 110. Floating-point instructions are sent to control unit 164 from IDU 120. IDU 120 receives instructions stored in instruction memory 115. Instruction memory 115 is a conventional computer useable medium, such as a random access memory or a read only memory, for storing program instructions. Control unit 164 interacts with each above described floating-point section and directs the data path through the proper sequence of operations to generate the proper output.

[0037] Reciprocal and reciprocal square root operations can be performed by FPU 110 utilizing the Newton-Raphson convergent approximation algorithms. The Newton-Raphson reciprocal algorithm for approximating the reciprocal of a number (N) is defined as: Xi+1=Xi* (2−N*Xi), where Xi is an estimated result at iteration í, where í is an integer (e.g., 1,2,3, . . . n), and Xi+1 is a more accurate approximation. The Newton-Raphson reciprocal square root algorithm for approximating the reciprocal square root of N is defined as: Xi+1=(3−N*Xi*Xi)*Xi/2, where Xi is an initial approximation of the reciprocal square root of the number, and Xi+1 is a more accurate approximation.

[0038] A method 200, according to the present invention, for performing an iteration of the Newton-Raphson reciprocal algorithm is illustrated in FIG. 2, and a method 300, according to the present invention, for performing an iteration of the Newton-Raphson reciprocal square root algorithm is illustrated in FIG. 3.

[0039] Referring now to FIG. 2, the method 200 for performing an iteration of the Newton-Raphson algorithm for approximating the reciprocal of a number begins in step 202. In step 202 the number, which is in the memory format, is retrieved from a floating-point memory, such as floating-point register file 152 or load/store unit 130, for example. In step 204, the number is unpacked from the memory format to the internal format. In step 206, an estimate of the reciprocal of the number is determined. Any known or future developed method or means for estimating the reciprocal of a number may be used in step 206. However, in one embodiment, the estimate is determined by using a lookup table as described in U.S. patent application Ser. No.______ (Attorney Docket No. MIPS-19427A-007520).

[0040] Next, in step 208, the estimate is multiplied by the number. Then, in step 210, the result of step 208 is subtracted from one (1). By subtracting the result of step 208 from a value of 1 as opposed to a value of 2, the result of step 210 is usually a very small number, which when represented in normalized form provides for a greater accuracy, thereby improving the approximation of the reciprocal of the number.

[0041] In step 212, the result produced in step 210 is multiplied by the estimate. In step 214, the result of step 212 is added to the estimate. The result of step 214 is an approximation of the reciprocal of the number. A more accurate approximation can be achieved by setting the estimate equal to the result of step 214 and repeating steps 208-214. Additional such iterations of method 200 further increases the accuracy of the approximation. In step 216, the result of step 214 is packed from the internal format into the memory format, and in step 218 the packed result is written to the floating-point memory.

[0042] Referring now to FIG.3, the method 300 for performing an iteration of the Newton-Raphson algorithm for approximating the reciprocal square root of a number begins in step 302. In step 302, an estimate of the reciprocal of the square root of the number is determined. Any known or future developed method or means for estimating the reciprocal of a number may be used in step 302. However, in one embodiment, the estimate is determined by using a lookup table as described in U.S. patent application Ser. No.______ (Attorney Docket No. MIPS-19427A-007520).

[0043] Next, in step 304, the estimate is multiplied by the number. Then, in step 306, the result produced in step 304 is multiplied by the estimate. In step 308, the result produced in step 306 is subtracted from one (1). By subtracting the result of step 306 from a value of 1 as opposed to a value of 3, the result of step 308 is usually a very small number, which when represented in normalized form provides for a greater accuracy, thereby improving the approximation of the reciprocal square root of the number. Additionally, by first multiplying the estimate by the number and then multiplying that result by the estimate, the method will likely avoid a denormalized result that might have occurred had the method first multiplied the estimate by itself to produce a result and then multiplied the result by the number. Consequently, the order in which the multiplication occurs in accordance with the present invention is advantageous. This concept is illustrated in FIGS. 4A and 4B. FIG. 4A illustrates that if one were to first multiply the estimate (represented as Xi) by itself to produce a first result (Xi*Xi) and then multiply the first result by the number (N) to produce a second result N*(Xi*Xi), the first result, (Xi*Xi), will likely be a denorm result (i.e., fall within the range of denorm numbers) if the number (N) is a large number. Whereas, FIG. 4B illustrates that if one were to first multiply the estimate (Xi) by the number (N) to produce a first result (N*Xi) and then multiply the first result by the estimate to produce a second result (N*Xi)*Xi, the first result, (N*Xi), will likely not be a denorm result, even when the number (N) is a large number.

[0044] In step 310, the result produced in step 308 is divided by a value of 2. That is, the exponent of the result produced in step 308 is reduced by one (1). In step 312, the result produced in step 310 is multiplied by the estimate determined in step 302. Lastly, in step 314, the result of step 312 is added to the estimate determined in step 302. The result of step 314 is an approximation of the reciprocal of the square root of the number. A more accurate approximation can be achieved by setting the estimate equal to the result of step 314 and repeating steps 304-314. Additional such iterations of method 300 further increases the accuracy of the approximation.

[0045] The floating-point instruction set architecture (ISA) for FPU 110 includes instructions for implementing the above methods. More specifically, in one embodiment, the ISA includes three instructions for implementing an iteration of the Newton-Raphson reciprocal algorithm. The three instruction are: RECIP1 (operand 1), RECIP2(operand 1, operand2) and MADD(operand 1, operand2, operand3).

[0046] The RECIP1(operand1) instruction enables FPU 110 to produce a result that is an estimate of the reciprocal of operand1. There are a variety of ways for producing the estimate. In one embodiment, a lookup table is used. Instruction RECIP2(operand1, operand2) enables FPU 110 to produce a result equal to: (1−operand1*operand2). The MADD instruction is a multiply-add instruction and it enables FPU 110 to produce a result equal to: (operand1+operand2*operand3). The RECIP1 and RECIP2 instructions are further described in U.S. patent application Ser. No.______ (Attorney Docket No. MIPS-19427A-007520).

[0047] The Newton-Raphson algorithm for approximating the reciprocal of a number (N) is implemented by using FPU 110 to execute the above mentioned instructions in the following sequence:

[0048] (1) Xi=RECIP1(N);

[0049] (2) IR=RECIP2(N, Xi); and

[0050] (3) Xi+1=MADD(Xi, Xi, IR).

[0051] After FPU 110 executes the above three instructions in the above given sequence, Xi+1=Xi+Xi*IR=Xi+Xi*(1−N*Xi)=2Xi−N*Xi*Xi=Xi*(2−N*Xi), which is the Newton-Raphson approximation for the reciprocal of N.

[0052] An advantage of the above instructions is that the value of IR produced by the RECIP2(N, Xi) instruction is usually a very small number, which when normalized provides a great deal of precision, thereby increasing the accuracy of the approximation. The reason the value of IR is usually a very small number is that the value of N*Xi is nearly equal to one, being nearly equal to N*(1/N); that is why when one subtracts N*Xi from 1, as opposed to two (2), the result is a small number.

[0053] A consequence of subtracting N*Xi from one (1), as opposed to two (2), is that it necessitates the MADD instruction. Had N*Xi been subtracted from two(2) instead of one (1), the MADD instruction would be replaced by a simple multiply instruction. Typically, a multiply instruction is preferred over a MADD instruction because a MADD instruction conventionally has a greater latency than a multiply instruction. However, because FPU 110 is implemented with a multiply-add pipeline, the latency of the MADD instruction is the same as the latency of a multiply instruction. Therefore, not only does the above method and sequence of instructions improve the accuracy of a reciprocal operation, but it can do so adding little or no delay.

[0054] The ISA also includes a RECIP(N) instruction. This single instruction is equivalent to the sequence of three instructions described above. That is, the RECIP instruction first causes FPU 110 to produce and estimate (Xi) of the reciprocal of N. Then it causes FPU 110 to produce an intermediate result (IR) according to the equation: 1−N*Xi. The intermediate result is stored in PIP 154 in the internal format. By storing intermediate results in the internal format, denormalized numbers are typically avoided. Finally, the RECIP instruction causes FPU 110 to produce an approximation (Xi+1) of the reciprocal of the number (N) according to the following equation: Xi+1=Xi+Xi*IR. The approximation of the reciprocal of the number is stored in FPR 152 in the IEEE standard format.

[0055] In addition to providing instructions for approximating reciprocals, the floating-point ISA includes four instructions for performing an iteration of the Newton-Raphson algorithm for approximating reciprocal square roots. The four instruction are: RSQRT1(operand1), RSQRT2(operand1, operand2), MUL(operand1, operand2), and MADD(operand1, operand2, operand3).

[0056] The RSQRT1(operand1) instruction enables FPU 110 to produce a result that is an estimate of the reciprocal square root of the operand. There are a variety of ways for producing the estimate. In one embodiment, a lookup table is used.

[0057] Instruction RSQRT2(operand1, operand2) enables FPU 110 to produce a result equal to: (1−operand1*operand2)/2. The MADD(operand1, operand2, operand3) instruction is described above. The MUL(operand1, operand2) instruction is a multiply instruction that enables FPU 110 to produce a result equal to: operand1*operand2. The RSQRT1 and RSQRT2 instructions are further described in U.S. patent application Ser. No.______ (Attorney Docket No. MIPS-19427A-007520).

[0058] The Newton-Raphson algorithm for approximating the reciprocal square root of a number (N) is implemented by using FPU 110 to execute the above mentioned instructions in the following sequence:

[0059] (1) Xi=RSQRT1(N);

[0060] (2) IRI=MUL(N, Xi)

[0061] (3) IR2=RSQRT2(IR1, Xi); and

[0062] (4) Xi+1=MADD(Xi, Xi, IR2).

[0063] After FPU 110 executes the above four instructions in the above given sequence, Xi+1=(3−N*Xi*Xi)*Xi/2, which is the Newton-Raphson approximation for the reciprocal square root of N.

[0064] An advantage of the above instructions is that the intermediate result, IR1, is likely to be within the range of values that can be represented in normalized form as opposed to denormalized form. Because of accuracy considerations, it is preferably to represent values in normalized form.

[0065] Another advantage of the above instructions is that the value of IR2 produced by the RSQRT2(IR1, Xi) instruction is usually a very small number, which when normalized provides a great deal of precision, thereby increasing the accuracy of the approximation. The reason the value of IR2 is usually a very small number is that the value of IRI *Xi is nearly equal to one, being nearly equal to N½*(1/N½); that is why when one subtracts IR1 *Xi from 1, as opposed to three (3), the result is a small number.

[0066] A consequence of subtracting IR1*Xi from one (1), as opposed to three (3), is that it necessitates the MADD instruction. Had IR1*Xi been subtracted from three (3) instead of one (1), the MADD instruction would be replaced by a simple multiply instruction. As discussed above, conventionally, a multiply instruction is preferred over a MADD instruction because a MADD instruction typically has a greater latency than a multiply instruction. However, because FPU 110 is implemented with a multiply-add pipeline, the latency of the MADD instruction is the same as the latency of a multiply instruction. Therefore, not only does the above method and sequence of instructions improve the accuracy of a reciprocal square root operation, but it can do so adding little or no delay.

[0067] The ISA also includes an RSQRT(N) instruction. This single instruction is equivalent to the sequence of four instructions described above. That is, the RSQRT instruction first causes FPU 110 to produce and estimate (Xi) of the reciprocal square root of N. Then it causes FPU 110 to produce a first intermediate result (IRI) according to the following equation: IR1=N*Xi. Next, it causes FPU 110 to produce a second intermediate result (IR2) according to the following equation: IR2=(1−IR1*Xi)/2. Both intermediate results, IR1 and IR2, are stored using the internal format in PIP 154. By storing intermediate results in the internal format, denormalized numbers are typically avoided. Finally, the RSQRT(N) instruction causes FPU 110 to produce an approximation (Xi+1) of the reciprocal square root of N according to the following equation: Xi+1−Xi+Xi*IR2. The approximation of the reciprocal square root of N is stored in FPR 152 in the IEEE standard format.

[0068] While various embodiments of the present invention have been described above, it should be understood that they have been presented by way of example only, and not limitation. Thus, the breadth and scope of the present invention should not be limited by any of the above-described exemplary embodiments, but should be defined only in accordance with the following claims and their equivalents.

Claims

1. A method for approximating the reciprocal of a number (N), comprising:

(a) retrieving the number from a floating-point memory, wherein the number is stored in said memory in a memory format;
(b) unpacking the number from said memory format to an internal format;
(c) estimating the reciprocal of the number to produce an estimate (Xi);
(d) determining a first intermediate result (IR1) according to the equation: IR1=1−N*Xi;
(e) multiplying said first intermediate result by said estimate to produce a second intermediate result;
(f) adding said estimate to said second intermediate result to produce an approximation of the reciprocal of the number, wherein said approximation is in said internal format;
(g) packing said approximation from said internal format to said memory format; and
(h) writing said approximation in said memory format to said floating-point memory.

2. The method of claim 1, further comprising the steps of:

(i) setting said estimate equal to said approximation; and
(j) repeating steps (d)-(f) to produce a more accurate approximation.

3. The method of claim 1, wherein said internal format has an exponent of at least 12-bits, and said memory format has an exponent of not more than 11-bits.

4. A computer system having a processor in communication with means for storing instructions that enable the processor to perform arithmetic operations, the instructions comprising an instruction that enables the processor to produce an estimate (Xi) of a reciprocal of a number (N), produce an intermediate result (IR) according to the equation: IR=1−N*Xi, and

produce an approximation (Xi+1) of the reciprocal of said number according to the equation: Xi+1=Xi+Xi*IR.

5. The computer system of claim 4, wherein said instruction enables the processor to first retrieve said number from a floating-point memory, wherein said number is stored in said memory in a memory format, and then enables the processor to unpack said number from said memory format to an internal format prior to enabling the processor to produce said estimate.

6. The computer system of claim 5, wherein said approximation is in said internal format, and wherein said instruction further enables the processor to pack said approximation from said internal format to said memory format, and to write said approximation in said memory format to said memory.

7. The computer system of claim 5, wherein said internal format has an exponent of at least 12-bits, and said memory format has an exponent of not more than 11-bits.

8. A computer program product comprising a computer useable medium having a floating-point instruction stored therein, the floating-point instruction for enabling a floating-point unit to approximate the reciprocal of a number (N), wherein the floating-point instruction enables the floating-point unit to

produce an estimate (Xi) of the reciprocal of the number, produce an intermediate result (IR) according to the equation: IR=1−N*Xi, and
produce an approximation (Xi+1) of the reciprocal of the number according to the equation: Xi+1=Xi+Xi*IR.

9. The computer program product of claim 8, wherein said floating-point instruction enables the floating-point unit to first retrieve said number from a floating-point memory, wherein said number is stored in said memory in a memory format, and then enables the floating-point unit to unpack said number from said memory format to an internal format prior to enabling the floating-point unit to produce said estimate.

10. The computer program product of claim 9, wherein said approximation is in said internal format, and wherein said floating-point instruction further enables the floating-point unit to pack said approximation from said internal format to said memory format, and to write said approximation in said memory format to said floating-point memory.

11. The computer program product of claim 9, wherein said internal format has an exponent of at least 12-bits, and said memory format has an exponent of not more than 11-bits.

12. A computer system, comprising:

a floating-point unit having a floating-point register file that stores a floating-point number (N) in a memory format, a floating-point pipe file coupled to said floating-point register file, wherein said floating-point pipe file selects said floating-point number from said floating-point register file and unpacks said floating-point number into an internal format, and a floating-point arithmetic unit, coupled to said pipe file, that receives said unpacked floating-point number from said pipe file and performs an arithmetic operation using said number to produce a result in said internal format;
a memory for storing a sequence of instructions that enable said floating-point unit to approximate the reciprocal of said number, said sequence of instructions comprising:
a first instruction to enable said floating-point unit to produce an estimate (Xi) of the reciprocal of said number;
a second instruction to enable said floating-point unit to produce an intermediate result (IR) according to the equation: IR=1−N*Xi; and
a third instruction to enable said floating-point unit to produce an approximation (Xi+1) of the reciprocal of said number according to the equation:
Xi+1Xi+Xi*IR; and
an instruction dispatch unit for dispatching said sequence of instructions from said memory to said floating-point unit.

13. The computer system of claim 12, wherein said approximation is sent to said pipe file, said pipe file packs said approximation into said memory format, and said pipe file writes said approximation in said memory format to said floating-point register file.

14. The computer system of claim 12, wherein said arithmetic unit comprises a floating-point mantissa multiplier coupled to said pipe file.

15. The computer system of claim 12, wherein said arithmetic unit comprises a floating-point mantissa adder coupled to said mantissa multiplier.

16. The computer system of claim 12, wherein said internal format has an exponent of at least 12-bits, and said memory format has an exponent of not more than 11-bits.

17. A method for approximating the reciprocal square root of a number, comprising:

(a) estimating the reciprocal square root of the number to produce an estimate (Xi);
(b) multiplying said estimate by the number to produce a first intermediate result (IR1);
(c) determining a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2;
(d) multiplying said second intermediate result by said estimate to produce a third intermediate result; and
(e) adding said third intermediate result to said estimate to produce an approximation of the reciprocal square root of the number.

18. The method of claim 17, further comprising the steps of:

retrieving the number from a floating-point memory, wherein the number is stored in said memory in a memory format; and
unpacking the number from said memory format to an internal format prior to estimating the reciprocal square root of the number to produce said estimate (Xi).

19. The method of claim 18, further comprising the steps of:

packing said approximation from said internal format to said memory format; and
writing said approximation in said memory format to said floating-point memory.

20. The method of claim 18, wherein said internal format has an exponent of at least 12-bits, and said memory format has an exponent of not more than 11-bits.

21. The method of claim 17, further comprising the steps of:

setting said estimate (Xi) equal to said approximation; and
repeating steps (b) through (e).

22. In a computer system having a floating-point unit, a method for determining the reciprocal square root of a number, comprising:

(a) providing an estimate instruction to the floating-point unit that enables the floating-point unit to produce an estimate (Xi) of the reciprocal square root of the number;
(b) providing a multiply instruction to the floating-point unit that enables the floating-point unit to produce a first intermediate result (IR1) equal to said estimate multiplied by said number;
(c) providing an instruction to said floating-point unit that enables the floating-point unit to produce a first intermediate result (IR1) according to the equation: IR2=(1−Xi*IR1)/2; and
(d) providing a multiply-add instruction to said floating-point unit that enables the floating-point unit to produce an approximation (Xi+1) of the reciprocal square root of the number according to the equation: Xi+1=Xi+Xi*IR2.

23. A computer system having a processor in communication with a storing means for storing instructions that enable the processor to perform arithmetic operations, the instructions comprising:

a first instruction to enable the processor to produce an estimate (Xi) of a reciprocal square root of a number;
a multiply instruction to enable the processor to calculate a first intermediate result (IR1) of said estimate multiplied by said number;
a second instruction to enable the processor to produce a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2; and
a third instruction to enable the processor to produce an approximation (Xi+1) of the reciprocal square root of said number according to the equation: Xi+1=Xi+Xi*IR2.

24. The computer system of claim 23, wherein said storing means comprises a random access memory for storing the instructions.

25. The computer system of claim 23, wherein said processor is a floating-point unit, wherein said floating-point unit executes said first instruction to produce said estimate of the reciprocal square root of said number, executes said multiply instruction to calculate said first intermediate result, executes said second instruction to produce said second intermediate result, and executes said third instruction to produce said approximation.

26. A computer system having a processor in communication with a storing means for storing instructions that enable the processor to perform arithmetic operations, the instructions comprising an instruction that enables the processor to produce an estimate (Xi) of the reciprocal square root of a number, calculate a first intermediate result (IR1) of said estimate multiplied by said number, produce a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2, and produce an approximation (Xi+1) of the reciprocal square root of said number according to the equation: Xi+1=Xi+Xi*IR2.

27. The computer system of claim 26, wherein said instruction further enables the processor to first retrieve said number from a floating-point memory, wherein said number is stored in said memory in a memory format, and then enables the processor to unpack said number from said memory format to an internal format prior to enabling the processor to produce said estimate.

28. The computer system of claim 27, wherein said approximation is in said internal format, and wherein said instruction further enables the processor to pack said approximation from said internal format to said memory format, and to write said approximation in said memory format to said floating-point memory.

29. The computer system of claim 27, wherein said internal format has an exponent of at least 12-bits, and said memory format has an exponent of not more than 11-bits.

30. A computer program product comprising a computer useable medium having floating-point instructions stored therein, the floating-point instructions for enabling a floating-point unit to approximate the reciprocal square root of a number (N), wherein the floating-point instructions comprise:

a first instruction to enable the floating-point unit to produce an estimate (Xi) of the reciprocal square root of said number;
a multiply instruction to enable the floating-point unit to produce a first intermediate result (IR1) equal to said estimate multiplied by said number;
a second instruction to enable the floating-point unit to produce a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2; and
a third instruction to enable the floating-point unit to produce an approximation (Xi+1) of the reciprocal square root of said number according to the equation: Xi+1=Xi+Xi*IR2.

31. A computer program product comprising a computer useable medium having a floating-point instruction stored therein, the floating-point instruction for enabling a floating-point unit to approximate the reciprocal square root of a number (N), wherein the floating-point instruction enables the floating-point unit to produce an estimate (Xi) of the reciprocal square root of said number, produce a first intermediate result (IR1) equal to said estimate multiplied by said number, produce a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2, and produce an approximation (Xi+1) of the reciprocal square root of said number according to the equation: Xi+1=Xi+Xi*IR2.

32. The computer program product of claim 31, wherein said floating-point instruction enables the floating-point unit to first retrieve said number from a floating-point memory, wherein said number is stored in said memory in a memory format, and then enables the floating-point unit to unpack said number from said memory format to an internal format prior to enabling the floating-point unit to produce said estimate.

33. The computer program product of claim 32, wherein said approximation is in said internal format, and wherein said floating-point instruction further enables the floating-point unit to pack said approximation from said internal format to said memory format, and to write said approximation in said memory format to said floating-point memory.

34. The computer program product of claim 32, wherein said internal format has an exponent of at least 12-bits, and said memory format has an exponent of not more than 11-bits.

35. A computer system, comprising:

a floating-point unit;
a memory for storing a sequence of instructions that enables said floating-point unit to approximate the reciprocal square root of a number (N), said sequence of instructions comprising:
a first instruction to enable said floating-point unit to produce an estimate (Xi) of the reciprocal square root of said number;
a multiply instruction to enable said floating-point unit to produce a first intermediate result (IR1) equal to said estimate multiplied by said number;
a second instruction to enable said floating-point unit to produce a second intermediate result (IR2) according to the equation: IR2=(1−Xi*IR1)/2; and
a third instruction to enable said floating-point unit to produce an approximation (Xi+1) of the reciprocal square root of said number according to the equation: Xi+1=Xi+Xi*IR2; and
an instruction dispatch unit for dispatching said sequence of instructions from said memory to said floating-point unit.

36. The computer system of claim 35, wherein said floating-point unit comprises:

a floating-point register file that stores said number in a memory format;
a floating-point pipe file coupled to said floating-point register file, wherein said floating-point pipe file selects said number from said floating-point register file and unpacks said number into an internal format; and
a floating-point arithmetic unit, coupled to said pipe file, that receives said unpacked number from said pipe file and performs an arithmetic operation using said number to produce a result in said internal format.

37. The computer system of claim 36, wherein said result is sent to said pipe file, said pipe file packs said result into said memory format, and said pipe file writes said result in said memory format to said floating-point register file.

38. The computer system of claim 36, wherein said arithmetic unit comprises a floating-point mantissa multiplier coupled to said pipe file.

39. The computer system of claim 36, wherein said arithmetic unit comprises a floating-point mantissa adder coupled to said mantissa multiplier.

40. The computer system of claim 39, wherein said internal format has an exponent of at least 12-bits, and said memory format has an exponent of not more than 11-bits.

Patent History
Publication number: 20020116431
Type: Application
Filed: Jan 25, 2002
Publication Date: Aug 22, 2002
Inventors: Ying-wai Ho (Los Altos, CA), Michael J. Schulte (Bethlehem, PA), John L. Kelley (San Francisco, CA)
Application Number: 10055346
Classifications
Current U.S. Class: Reciprocal (708/502)
International Classification: G06F007/38;