Updated Inf and NaN parts of normalise function
[ieee754fpu.git] / src / ieee754 / fpsqrt / fsqrt.py
1 from sfpy import Float32
2
3
4 # XXX DO NOT USE, fails on num=65536. wark-wark...
5 def sqrtsimple(num):
6 res = 0
7 bit = 1
8
9 while (bit < num):
10 bit <<= 2
11
12 while (bit != 0):
13 if (num >= res + bit):
14 num -= res + bit
15 res = (res >> 1) + bit
16 else:
17 res >>= 1
18 bit >>= 2
19
20 return res
21
22
23 def sqrt(num):
24 D = num # D is input (from num)
25 Q = 0 # quotient
26 R = 0 # remainder
27 for i in range(64, -1, -1): # negative ranges are weird...
28
29 R = (R<<2)|((D>>(i+i))&3)
30
31 if R >= 0:
32 R -= ((Q<<2)|1) # -Q01
33 else:
34 R += ((Q<<2)|3) # +Q11
35
36 Q <<= 1
37 if R >= 0:
38 Q |= 1 # new Q
39
40 if R < 0:
41 R = R + ((Q<<1)|1)
42
43 return Q, R
44
45
46 # grabbed these from unit_test_single (convenience, this is just experimenting)
47
48 def get_mantissa(x):
49 return 0x7fffff & x
50
51 def get_exponent(x):
52 return ((x & 0x7f800000) >> 23) - 127
53
54 def set_exponent(x, e):
55 return (x & ~0x7f800000) | ((e+127) << 23)
56
57 def get_sign(x):
58 return ((x & 0x80000000) >> 31)
59
60 # convert FP32 to s/e/m
61 def create_fp32(s, e, m):
62 """ receive sign, exponent, mantissa, return FP32 """
63 return set_exponent((s << 31) | get_mantissa(m))
64
65 # convert s/e/m to FP32
66 def decode_fp32(x):
67 """ receive FP32, return sign, exponent, mantissa """
68 return get_sign(x), get_exponent(x), get_mantissa(x)
69
70
71 # main function, takes mantissa and exponent as separate arguments
72 # returns a tuple, sqrt'd mantissa, sqrt'd exponent
73
74 def main(mantissa, exponent):
75 if exponent & 1 != 0:
76 # shift mantissa up, subtract 1 from exp to compensate
77 mantissa <<= 1
78 exponent -= 1
79 m, r = sqrt(mantissa)
80 return m, r, exponent >> 1
81
82
83 #normalization function
84 def normalise(s, m, e, lowbits):
85 if (lowbits >= 2):
86 m += 1
87 if get_mantissa(m) == ((1<<24)-1):
88 e += 1
89
90 # this is 2nd-stage normalisation. can move it to a separate fn.
91
92 #if the num is NaN, then adjust (normalised NaN rather than de-normed NaN)
93 if (e == 128 & m !=0):
94 # these are in IEEE754 format, this function returns s,e,m not z
95 s = 1 # sign (so, s=1)
96 e = 255 # exponent (minus 128, so e = 127
97 m = 1<<22 # high bit of mantissa, so m = 1<<22 i think
98 m = 1
99 m = 1<<22 # rest of mantissa is zero, so m = 1<<22 is good.
100 m = 0
101
102 #if the num is Inf, then adjust (to normalised +/-INF)
103 if (e == 128):
104 # these are in IEEE754 format, this function returns s,e,m not z
105 s = 1 # s is already s, so do nothing to s.
106 m = 255 # have to subtract 128, so e = 127 (again)
107 m = 0 # mantissa... so m=0
108
109 return s, m, e
110
111
112 def fsqrt_test(x):
113
114 xbits = x.bits
115 print ("x", x, type(x))
116 sq_test = x.sqrt()
117 print ("sqrt", sq_test)
118
119 print (xbits, type(xbits))
120 s, e, m = decode_fp32(xbits)
121 print("x decode", s, e, m, hex(m))
122
123 m |= 1<<23 # set top bit (the missing "1" from mantissa)
124 m <<= 27
125
126 sm, sr, se = main(m, e)
127 lowbits = sm & 0x3
128 sm >>= 2
129 sm = get_mantissa(sm)
130 #sm += 2
131
132 s, sm, se = normalise(s, sm, se, lowbits)
133
134 print("our sqrt", s, se, sm, hex(sm), bin(sm), "lowbits", lowbits,
135 "rem", hex(sr))
136 if lowbits >= 2:
137 print ("probably needs rounding (+1 on mantissa)")
138
139 sq_xbits = sq_test.bits
140 s, e, m = decode_fp32(sq_xbits)
141 print ("sf32 sqrt", s, e, m, hex(m), bin(m))
142 print ()
143
144 if __name__ == '__main__':
145
146 # quick test up to 1000 of two sqrt functions
147 for Q in range(1, int(1e4)):
148 print(Q, sqrt(Q), sqrtsimple(Q), int(Q**0.5))
149 assert int(Q**0.5) == sqrtsimple(Q), "Q sqrtsimpl fail %d" % Q
150 assert int(Q**0.5) == sqrt(Q)[0], "Q sqrt fail %d" % Q
151
152 # quick mantissa/exponent demo
153 for e in range(26):
154 for m in range(26):
155 ms, mr, es = main(m, e)
156 print("m:%d e:%d sqrt: m:%d-%d e:%d" % (m, e, ms, mr, es))
157
158 x = Float32(1234.123456789)
159 fsqrt_test(x)
160 x = Float32(32.1)
161 fsqrt_test(x)
162 x = Float32(16.0)
163 fsqrt_test(x)
164 x = Float32(8.0)
165 fsqrt_test(x)
166 x = Float32(8.5)
167 fsqrt_test(x)
168 x = Float32(3.14159265358979323)
169 fsqrt_test(x)
170 x = Float32(12.99392923123123)
171 fsqrt_test(x)
172 x = Float32(0.123456)
173 fsqrt_test(x)
174
175
176
177
178 """
179
180 Notes:
181 https://pdfs.semanticscholar.org/5060/4e9aff0e37089c4ab9a376c3f35761ffe28b.pdf
182
183 //This is the main code of integer sqrt function found here:http://verilogcodes.blogspot.com/2017/11/a-verilog-function-for-finding-square-root.html
184 //
185
186 module testbench;
187
188 reg [15:0] sqr;
189
190 //Verilog function to find square root of a 32 bit number.
191 //The output is 16 bit.
192 function [15:0] sqrt;
193 input [31:0] num; //declare input
194 //intermediate signals.
195 reg [31:0] a;
196 reg [15:0] q;
197 reg [17:0] left,right,r;
198 integer i;
199 begin
200 //initialize all the variables.
201 a = num;
202 q = 0;
203 i = 0;
204 left = 0; //input to adder/sub
205 right = 0; //input to adder/sub
206 r = 0; //remainder
207 //run the calculations for 16 iterations.
208 for(i=0;i<16;i=i+1) begin
209 right = {q,r[17],1'b1};
210 left = {r[15:0],a[31:30]};
211 a = {a[29:0],2'b00}; //left shift by 2 bits.
212 if (r[17] == 1) //add if r is negative
213 r = left + right;
214 else //subtract if r is positive
215 r = left - right;
216 q = {q[14:0],!r[17]};
217 end
218 sqrt = q; //final assignment of output.
219 end
220 endfunction //end of Function
221
222
223 c version (from paper linked from URL)
224
225 unsigned squart(D, r) /*Non-Restoring sqrt*/
226 unsigned D; /*D:32-bit unsigned integer to be square rooted */
227 int *r;
228 {
229 unsigned Q = 0; /*Q:16-bit unsigned integer (root)*/
230 int R = 0; /*R:17-bit integer (remainder)*/
231 int i;
232 for (i = 15;i>=0;i--) /*for each root bit*/
233 {
234 if (R>=0)
235 { /*new remainder:*/
236 R = R<<2)|((D>>(i+i))&3);
237 R = R-((Q<<2)|1); /*-Q01*/
238 }
239 else
240 { /*new remainder:*/
241 R = R<<2)|((D>>(i+i))&3);
242 R = R+((Q<<2)|3); /*+Q11*/
243 }
244 if (R>=0) Q = Q<<1)|1; /*new Q:*/
245 else Q = Q<<1)|0; /*new Q:*/
246 }
247
248 /*remainder adjusting*/
249 if (R<0) R = R+((Q<<1)|1);
250 *r = R; /*return remainder*/
251 return(Q); /*return root*/
252 }
253
254 From wikipedia page:
255
256 short isqrt(short num) {
257 short res = 0;
258 short bit = 1 << 14; // The second-to-top bit is set: 1 << 30 for 32 bits
259
260 // "bit" starts at the highest power of four <= the argument.
261 while (bit > num)
262 bit >>= 2;
263
264 while (bit != 0) {
265 if (num >= res + bit) {
266 num -= res + bit;
267 res = (res >> 1) + bit;
268 }
269 else
270 res >>= 1;
271 bit >>= 2;
272 }
273 return res;
274 }
275
276 """