A CORDIC (standing for COordinate Rotation DIgital Computer) circuit serves to compute several common mathematical functions, such as trigonometric, hyperbolic, logarithmic and exponential functions.

Application edit

A CORDIC uses only adders and bitshifts to compute the results, with the benefit that it can therefore be implemented using relatively basic hardware.

Methods such as power series or table lookups usually need multiplications to be performed. If a hardware multiplier is not available, a CORDIC is generally faster, but if a multiplier can be used, other methods may be faster.

CORDICs can also be implemented in many ways, including a single-stage iterative method, which requires very few gates when compared to multiplier circuits. Also, CORDICs can compute many functions with precisely the same hardware, so they are ideal for applications with an emphasis on reduction of cost (e.g. by reducing gate counts in FPGAs) over speed. An example of this priority is in pocket calculators, where CORDICs are very frequently used.

History edit

The CORDIC was first invented in 1959 by J.E. Volder, in the aeroelectronics departments of Convair, and was designed for the B-58 Hustler bomber's navigational computer to replace an analogue resolver, a device that computed trigonometric functions (Circular CORDIC).

In 1971, J.S. Walther, at Hewlett-Packard, extended the method to calculate hyperbolic functions, natural logarithms, natural exponentials, multiplications, divisions, and square roots (Linear CORDIC and Hyperbolic CORDIC).

In 2019, based on Hyperbolic CORDIC, Yuanyong Luo et al. further proposed a Generalized Hyperbolic CORDIC (GH CORDIC) to directly compute logarithms and exponentials with an arbitrary fixed base. Theoretically, Hyperbolic CORDIC is a special case of GH CORDIC.

General Concept edit

Consider the following rotations of vectors:

   
  • Start at (1, 0)
  • Rotate by θ
  • We get (cosθ, sinθ)
  • Start at (1, y)
  • Rotate until y = 0
  • The rotation is tan−1y

If we were to have a computationally efficient method of rotating a vector, we can directly evaluate sine, cosine and arctan functions. However, rotation by an arbitrary angle is non-trivial (you have to know the sine and cosines, which is precisely what we don't have). We use two methods to make it easier:

  • Instead of performing rotations, we perform "pseudorotations", which are easier to compute.
  • Construct the desired angle θ from a sum of special angles, αi:
 

The diagram belows shows a rotation and pseudo-rotation of a vector of length Ri about an angle of ai about the origin:

 

A rotation about the origin produces the following co-ordinates:

 
 
 

Recall the identity  .

 
 

Our strategy will be to eliminate the factor of   and somehow remove the multiplication by  . A pseudo-rotation produces a vector with the same angle as the rotated vector, but with a different length. In fact, the pseudo-rotation changes the length to:

 

Thus we now have these co-ordinates following a pseudo-rotation:

 
 
 

The pseudo-rotation has succeeded in removing our length-factor, which would have required a costly division operation. However, the vector will grow by a factor of K over a sequence of n pseudo-rotations:

 

The co-ordinates following the n pseudo-rotations are then:

 
 
 
 
The first three pseudo-rotations. Note how we converge on the correct angle, θ

If the angles are always the same set, then K is fixed, and can be accounted for later. We choose these angle according to two criteria:

  • We must also choose the angles so that any angle can be constructed from the sum of all them, with appropriate signs.
  • We make all   a power of 2, so that the multiplication can be performed by a simple logical shift of a binary number.

The tangent function has a monotonically increasing gradient on the interval [0, π/2], so the tangent of a given angle is always less than twice the tangent of half the angle. This means that if we make the angles  , we can satisfy both criteria. Note that the tangent function is odd, which means that to pseudo-rotate the other way, you just subtract, rather than add, the tangent of the angle.

i αi = tan−1 (2−i)
Degrees Radians
0 45.00 0.7854
1 26.57 0.4636
2 14.04 0.2450
3 7.13 0.1244
4 3.58 0.0624
5 1.79 0.0312
6 0.90 0.0160
7 0.45 0.0080
8 0.22 0.0040
9 0.11 0.0020

In step i of the process, we pseudo-rotate by  , where   is the direction (or sign) of the rotation, which will be chosen at each step to force the angle to converge to the desired final rotation. For example, consider a rotation of 28°:

 
 

The more steps we take, the better the approximation that we can make by successive rotations. Thus, we have the following iterative co-ordinate calculation:

 
 
 

In order to achieve k bit of precision, k iterations are needed, because  , converging as i increases.

Using CORDICs edit

 

CORDICs can be used to compute many functions. A CORDIC has three inputs, x0, y0, and z0. Depending on the inputs to the CORDIC, various results can be produced at the outputs xn, yn, and zn.

Using CORDIC in rotation mode edit

 
 
 

 
 
 

For convergence of zn to 0, choose  .

If we start with x0 = 1/K and y0=0, at the end of the process, we find xn=cos z0 and yn=sin z0.

The domain of convergence is   because 99.7° is the sum of all angles in the list.

Using CORDIC in vectoring mode edit

 
 
 

 
 
 

For convergence of yn to 0, choose  .

If we start with x0 = 1 and z0 = 0, we find zn=tan−1y0

Implementations of CORDICs edit

Bit-parallel, unrolled edit

 

Bit-parallel, iterative edit

 

If a high speed is not required, this can be implemented with a single adder and a single shifter.

Bit-serial edit

The Universal CORDIC edit

By introducing a factor μ, we can also cater for linear and hyperbolic functions:

 
 
 

Summary of Universal CORDIC implementations edit

 
 
 
Mode Rotation Vectoring
   
Circular

μ = 1
αi = tan−12−i

   
Linear

μ = 0
αi = 2−i

   
Hyperbolic

μ = -1
αi = tanh−12−i

   
  • In hyperbolic mode, iterations 4, 13, 40, 121, ..., j, 3j+1,... must be repeated. The constant K' given below accounts for this.
  • K = 1.646760258121...
  • 1/K = 0.607252935009...
  • K' = 0.8281593609602...
  • 1/K' = 1.207497067763...

Directly computable functions edit

   
   
   
   
   
   

Indirectly computable functions edit

In addition to the above functions, a number of other functions can be produced by combining the results of previous computations:

   
   
   
   
   
   

Further reading edit