gmp 0.5.47 → 0.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +13 -0
- data/README.markdown +10 -31
- data/benchmark/benchmark-results-5.0.5_1.9.3_0.6.7.ods +0 -0
- data/ext/gmp.c +36 -3
- data/ext/gmpbench_timing.c +9 -9
- data/ext/gmpf.c +83 -12
- data/ext/gmprandstate.c +14 -15
- data/ext/gmpz.c +145 -30
- data/ext/mprnd.c +7 -7
- data/ext/ruby_gmp.h +2 -2
- data/lib/gmp.rb +22 -1
- data/manual.pdf +0 -0
- data/manual.tex +4 -108
- data/performance.html +763 -0
- data/performance.md +321 -0
- data/performance.pdf +0 -0
- data/test/gmp_tlcm.rb +67 -0
- data/test/gmp_tprintf.rb +124 -0
- data/test/tc_division.rb +3 -3
- data/test/tc_f_arithmetics_coersion.rb +2 -2
- data/test/tc_f_to_s.rb +72 -0
- data/test/tc_mpfr_integer.rb +20 -0
- data/test/tc_mpfr_random.rb +61 -26
- data/test/test_helper.rb +1 -1
- data/test/unit_tests.rb +3 -0
- metadata +51 -57
- data/benchmark/COPYING +0 -674
- data/benchmark/README +0 -75
- data/benchmark/divide +0 -34
- data/benchmark/gcd +0 -38
- data/benchmark/gexpr.c +0 -359
- data/benchmark/multiply +0 -44
- data/benchmark/multiply.fnl +0 -47
- data/benchmark/multiply.gc +0 -57
- data/benchmark/pi +0 -126
- data/benchmark/rsa +0 -93
- data/benchmark/runbench +0 -147
- data/benchmark/srb.sh +0 -21
- data/benchmark/version +0 -1
data/benchmark/multiply
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require '../ext/gmp'
|
4
|
-
|
5
|
-
multiplicands = ARGV
|
6
|
-
random_state = GMP::RandState.new
|
7
|
-
|
8
|
-
if multiplicands.size > 1
|
9
|
-
m, n = multiplicands[0].to_i, multiplicands[1].to_i
|
10
|
-
x = random_state.urandomb(m)
|
11
|
-
y = random_state.urandomb(n)
|
12
|
-
else
|
13
|
-
m = multiplicands[0].to_i
|
14
|
-
x = random_state.urandomb(m)
|
15
|
-
y = x
|
16
|
-
end
|
17
|
-
|
18
|
-
t = GMP::time { z = x * y }
|
19
|
-
iterations = (1 + (1e4 / t)).to_i
|
20
|
-
|
21
|
-
if multiplicands.size > 1
|
22
|
-
print "Multiplying %i-bit number with %i-bit number %i times..." % [m, n, iterations]
|
23
|
-
else
|
24
|
-
print "Squaring a %i-bit number %i times..." % [m, iterations]
|
25
|
-
end
|
26
|
-
STDOUT.flush
|
27
|
-
|
28
|
-
t0 = GMP::cputime
|
29
|
-
iterations.times do
|
30
|
-
z = x * y
|
31
|
-
end
|
32
|
-
ti = GMP::cputime - t0
|
33
|
-
|
34
|
-
puts "done!"
|
35
|
-
ops_per_sec = 1000.0 * iterations / ti
|
36
|
-
f = 100.0
|
37
|
-
decimals = 0
|
38
|
-
while true
|
39
|
-
decimals += 1
|
40
|
-
break if ops_per_sec > f
|
41
|
-
f = f * 0.1
|
42
|
-
end
|
43
|
-
|
44
|
-
puts "RESULT: %#{decimals}f operations per second\n" % ops_per_sec
|
data/benchmark/multiply.fnl
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require '../ext/gmp'
|
4
|
-
|
5
|
-
multiplicands = ARGV
|
6
|
-
random_state = GMP::RandState.new
|
7
|
-
|
8
|
-
if multiplicands.size > 1
|
9
|
-
m, n = multiplicands[0].to_i, multiplicands[1].to_i
|
10
|
-
x = random_state.urandomb(m)
|
11
|
-
y = random_state.urandomb(n)
|
12
|
-
else
|
13
|
-
m = multiplicands[0].to_i
|
14
|
-
x = random_state.urandomb(m)
|
15
|
-
y = x
|
16
|
-
end
|
17
|
-
|
18
|
-
z = GMP::Z()
|
19
|
-
#t = GMP::time { z = x * y }
|
20
|
-
t = GMP::time { GMP::Z.mul(z,x,y) }
|
21
|
-
iterations = (1 + (1e4 / t)).to_i
|
22
|
-
|
23
|
-
if multiplicands.size > 1
|
24
|
-
print "Multiplying %i-bit number with %i-bit number %i times..." % [m, n, iterations]
|
25
|
-
else
|
26
|
-
print "Squaring a %i-bit number %i times..." % [m, iterations]
|
27
|
-
end
|
28
|
-
STDOUT.flush
|
29
|
-
|
30
|
-
t0 = GMP::cputime
|
31
|
-
iterations.times do
|
32
|
-
#z = x * y
|
33
|
-
GMP::Z.mul(z,x,y)
|
34
|
-
end
|
35
|
-
ti = GMP::cputime - t0
|
36
|
-
|
37
|
-
puts "done!"
|
38
|
-
ops_per_sec = 1000.0 * iterations / ti
|
39
|
-
f = 100.0
|
40
|
-
decimals = 0
|
41
|
-
while true
|
42
|
-
decimals += 1
|
43
|
-
break if ops_per_sec > f
|
44
|
-
f = f * 0.1
|
45
|
-
end
|
46
|
-
|
47
|
-
puts "RESULT: %#{decimals}f operations per second\n" % ops_per_sec
|
data/benchmark/multiply.gc
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require '../ext/gmp'
|
4
|
-
|
5
|
-
multiplicands = ARGV
|
6
|
-
random_state = GMP::RandState.new
|
7
|
-
|
8
|
-
if multiplicands.size > 1
|
9
|
-
m, n = multiplicands[0].to_i, multiplicands[1].to_i
|
10
|
-
x = random_state.urandomb(m)
|
11
|
-
y = random_state.urandomb(n)
|
12
|
-
else
|
13
|
-
m = multiplicands[0].to_i
|
14
|
-
x = random_state.urandomb(m)
|
15
|
-
y = x
|
16
|
-
end
|
17
|
-
|
18
|
-
t = GMP::time { z = x * y }
|
19
|
-
iterations = (1 + (1e4 / t)).to_i
|
20
|
-
|
21
|
-
if multiplicands.size > 1
|
22
|
-
print "Multiplying %i-bit number with %i-bit number %i times..." % [m, n, iterations]
|
23
|
-
else
|
24
|
-
print "Squaring a %i-bit number %i times..." % [m, iterations]
|
25
|
-
end
|
26
|
-
STDOUT.flush
|
27
|
-
|
28
|
-
t0 = GMP::cputime
|
29
|
-
#iterations.times do
|
30
|
-
# z = x * y
|
31
|
-
#end
|
32
|
-
parts = 512
|
33
|
-
foo = iterations / parts
|
34
|
-
bar = iterations % parts
|
35
|
-
foo.times do
|
36
|
-
parts.times do
|
37
|
-
z = x * y
|
38
|
-
end
|
39
|
-
GC.start
|
40
|
-
end
|
41
|
-
bar.times do
|
42
|
-
z = x * y
|
43
|
-
end
|
44
|
-
|
45
|
-
ti = GMP::cputime - t0
|
46
|
-
|
47
|
-
puts "done!"
|
48
|
-
ops_per_sec = 1000.0 * iterations / ti
|
49
|
-
f = 100.0
|
50
|
-
decimals = 0
|
51
|
-
while true
|
52
|
-
decimals += 1
|
53
|
-
break if ops_per_sec > f
|
54
|
-
f = f * 0.1
|
55
|
-
end
|
56
|
-
|
57
|
-
puts "RESULT: %#{decimals}f operations per second\n" % ops_per_sec
|
data/benchmark/pi
DELETED
@@ -1,126 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require '../ext/gmp'
|
4
|
-
|
5
|
-
A = 13591409
|
6
|
-
B = 545140134
|
7
|
-
C = 640320
|
8
|
-
D = 12
|
9
|
-
|
10
|
-
BITS_PER_DIGIT = 3.32192809488736234787
|
11
|
-
DIGITS_PER_ITER = 14.1816474627254776555
|
12
|
-
DOUBLE_PREC = 53
|
13
|
-
INIT_FACS = 32
|
14
|
-
|
15
|
-
def my_sqrt_ui(r, x)
|
16
|
-
prec0 = r.prec
|
17
|
-
if prec0 < DOUBLE_PREC
|
18
|
-
r = GMP::F(Math.sqrt(x))
|
19
|
-
return
|
20
|
-
end
|
21
|
-
|
22
|
-
bits = 0
|
23
|
-
prec = prec0
|
24
|
-
while prec > DOUBLE_PREC
|
25
|
-
bit = prec & 1
|
26
|
-
prec = (prec+bit)/2
|
27
|
-
bits = bits*2 + bit
|
28
|
-
end
|
29
|
-
|
30
|
-
@t1.prec_raw=DOUBLE_PREC
|
31
|
-
@t1 = GMP::F(1/Math.sqrt(x))
|
32
|
-
|
33
|
-
while prec < prec0
|
34
|
-
prec *= 2
|
35
|
-
break if prec >= prec0
|
36
|
-
@t2.prec_raw=prec
|
37
|
-
@t2 = @t1 * @t1 # half x half -> full
|
38
|
-
@t2 *= x
|
39
|
-
@t2 = 1 - @t2
|
40
|
-
@t2.prec_raw=prec/2
|
41
|
-
@t2.div_2exp(@t2, 1)
|
42
|
-
@t2 *= @t1 # half x half -> half
|
43
|
-
@t1.prec_raw=prec
|
44
|
-
@t1 += @t2
|
45
|
-
|
46
|
-
prec -= bits & 1
|
47
|
-
bits /= 2
|
48
|
-
end
|
49
|
-
|
50
|
-
@t2.prec_raw=prec0/2
|
51
|
-
@t2 = @t1 * x
|
52
|
-
r = @t2 * @t2 # half * half -> full
|
53
|
-
r = x - r
|
54
|
-
@t1 *= r # half * half -> half
|
55
|
-
@t1.div_2exp(@t1, 1)
|
56
|
-
r = @t1+@t2
|
57
|
-
end
|
58
|
-
|
59
|
-
def my_div(r, y, x)
|
60
|
-
prec0 = r.prec
|
61
|
-
if prec0 <= DOUBLE_PREC
|
62
|
-
r = GMP::F(y.to_f / x.to_f)
|
63
|
-
return
|
64
|
-
end
|
65
|
-
|
66
|
-
bits = 0
|
67
|
-
prec = prec0
|
68
|
-
while prec > DOUBLE_PREC
|
69
|
-
bit = prec & 1
|
70
|
-
prec = (prec+bit)/2
|
71
|
-
bits = bits*2 + bit
|
72
|
-
end
|
73
|
-
|
74
|
-
@t1.prec_raw=DOUBLE_PREC
|
75
|
-
@t1 = 1 / x
|
76
|
-
|
77
|
-
while prec < prec0
|
78
|
-
prec *= 2
|
79
|
-
if prec < prec0
|
80
|
-
@t2.prec_raw=prec
|
81
|
-
@t2 = x * @t1 # full x half -> full
|
82
|
-
@t2 = 1 - @t2
|
83
|
-
@t2.prec_raw=prec/2
|
84
|
-
@t2 *= @t1 # half * half -> half
|
85
|
-
@t1.prec_raw=prec
|
86
|
-
@t1 += @t2
|
87
|
-
else
|
88
|
-
prec = prec0
|
89
|
-
@t2.prec_raw=prec/2
|
90
|
-
@t2 = @t1 * y # half * half -> half
|
91
|
-
r = x * @t2 # full * half -> full
|
92
|
-
r = y - r
|
93
|
-
t1 *= r # half * half -> half
|
94
|
-
r = t1 + t2
|
95
|
-
break
|
96
|
-
end
|
97
|
-
|
98
|
-
prec -= bits & 1
|
99
|
-
bits /= 2
|
100
|
-
end
|
101
|
-
end
|
102
|
-
|
103
|
-
def min(x,y); x < y ? x : y; end
|
104
|
-
def max(x,y); x > y ? x : y; end
|
105
|
-
|
106
|
-
Fac_t = Struct.new(max_facs, num_facs, fac, pow)
|
107
|
-
Sieve_t = Struct.new(fac, pow, nxt);
|
108
|
-
|
109
|
-
sieve = Sieve_t.new
|
110
|
-
ftmp = Fac_t.new
|
111
|
-
fmul = Fac_t.new
|
112
|
-
|
113
|
-
def fac_show(f)
|
114
|
-
(0...(f.num_facs)).each do |f|
|
115
|
-
if f.pow[i] == 1
|
116
|
-
print "#{f.fac[i]} "
|
117
|
-
else
|
118
|
-
print "#{f.fac[i]}^#{f.pow[i]} "
|
119
|
-
end
|
120
|
-
end
|
121
|
-
puts ""
|
122
|
-
end
|
123
|
-
|
124
|
-
def fac_reset(f)
|
125
|
-
f.num_facs = 0
|
126
|
-
end
|
data/benchmark/rsa
DELETED
@@ -1,93 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require '../ext/gmp'
|
4
|
-
|
5
|
-
RSA_EXP = 0x10001
|
6
|
-
|
7
|
-
def rsa_sign(msg, p, q, pq, p_i_q, dp, dq)
|
8
|
-
pr = msg.powmod(dp, p)
|
9
|
-
qr = msg.powmod(dq, q)
|
10
|
-
|
11
|
-
qr_m_pr = qr - pr
|
12
|
-
|
13
|
-
t = qr_m_pr * p_i_q
|
14
|
-
o = t % q
|
15
|
-
|
16
|
-
t = o * p
|
17
|
-
smsg = pr + t
|
18
|
-
smsg % pq
|
19
|
-
end
|
20
|
-
|
21
|
-
n = ARGV[0].to_i
|
22
|
-
random_state = GMP::RandState.new
|
23
|
-
|
24
|
-
print "Generating p, q, d..."
|
25
|
-
STDOUT.flush
|
26
|
-
|
27
|
-
pq = GMP::Z()
|
28
|
-
while pq != 1
|
29
|
-
p = random_state.urandomb(n/2)
|
30
|
-
p[n/2 - 1] = true
|
31
|
-
p[n/2 - 2] = true
|
32
|
-
p[0] = true
|
33
|
-
|
34
|
-
q = random_state.urandomb(n/2)
|
35
|
-
q[n/2 - 1] = true
|
36
|
-
q[n/2 - 2] = true
|
37
|
-
q[0] = true
|
38
|
-
|
39
|
-
pq = p.gcd(q)
|
40
|
-
end
|
41
|
-
|
42
|
-
pq = p * q
|
43
|
-
|
44
|
-
e = GMP::Z(RSA_EXP)
|
45
|
-
|
46
|
-
pm1 = p - 1
|
47
|
-
qm1 = q - 1
|
48
|
-
phi = pm1 * qm1
|
49
|
-
d = e.invert(phi)
|
50
|
-
|
51
|
-
puts "done; pq is %i bits" % pq.sizeinbase(2)
|
52
|
-
puts "Precomputing CRT constants"
|
53
|
-
|
54
|
-
p_i_q = p.invert(q)
|
55
|
-
|
56
|
-
dp = d % pm1
|
57
|
-
dq = d % qm1
|
58
|
-
|
59
|
-
puts "Generating random messages"
|
60
|
-
|
61
|
-
msg = []
|
62
|
-
(0...1024).each do |i|
|
63
|
-
msg << random_state.urandomb(n)
|
64
|
-
end
|
65
|
-
|
66
|
-
print "Calibrating CPU speed..."
|
67
|
-
STDOUT.flush
|
68
|
-
t = GMP::time { smsg = rsa_sign(msg[0], p, q, pq, p_i_q, dp, dq) }
|
69
|
-
puts "done"
|
70
|
-
|
71
|
-
iterations = (1e4 / t).to_i
|
72
|
-
iterations = 1 if iterations == 0
|
73
|
-
|
74
|
-
print "Signing random messages %i times..." % iterations
|
75
|
-
STDOUT.flush
|
76
|
-
|
77
|
-
t0 = GMP::cputime
|
78
|
-
(1..iterations).to_a.reverse.each do |i|
|
79
|
-
smsg = rsa_sign(msg[i % 1024], p, q, pq, p_i_q, dp, dq)
|
80
|
-
end
|
81
|
-
ti = GMP::cputime - t0
|
82
|
-
|
83
|
-
puts "done!"
|
84
|
-
ops_per_sec = 1000.0 * iterations / ti
|
85
|
-
f = 100.0
|
86
|
-
decimals = 0
|
87
|
-
while true
|
88
|
-
decimals += 1
|
89
|
-
break if ops_per_sec > f
|
90
|
-
f = f * 0.1
|
91
|
-
end
|
92
|
-
|
93
|
-
puts "RESULT: %#{decimals}f operations per second\n" % ops_per_sec
|
data/benchmark/runbench
DELETED
@@ -1,147 +0,0 @@
|
|
1
|
-
#! /bin/sh
|
2
|
-
|
3
|
-
# Copyright 2003 Free Software Foundation, Inc.
|
4
|
-
|
5
|
-
# This file is part of the GNU GMPbench.
|
6
|
-
|
7
|
-
# This program is free software; you can redistribute it and/or modify it under
|
8
|
-
# the terms of the GNU General Public License as published by the Free Software
|
9
|
-
# Foundation; either version 2 of the License, or (at your option) any later
|
10
|
-
# version.
|
11
|
-
|
12
|
-
# This program is distributed in the hope that it will be useful, but WITHOUT
|
13
|
-
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
14
|
-
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
15
|
-
# details.
|
16
|
-
|
17
|
-
# You should have received a copy of the GNU General Public License along with
|
18
|
-
# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
19
|
-
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
20
|
-
|
21
|
-
|
22
|
-
echo "***** GMPbench version `cat version` *****"
|
23
|
-
|
24
|
-
|
25
|
-
default=false
|
26
|
-
|
27
|
-
if [ "$1" = -n ]
|
28
|
-
then
|
29
|
-
echo "Suppressing compilation"
|
30
|
-
else
|
31
|
-
if [ -z "$CFLAGS" ]
|
32
|
-
then
|
33
|
-
CFLAGS="-O3 -fomit-frame-pointer"
|
34
|
-
echo "Using default CFLAGS = \"$CFLAGS\""
|
35
|
-
default=true
|
36
|
-
else
|
37
|
-
echo "Using CFLAGS = \"$CFLAGS\" from your environment"
|
38
|
-
fi
|
39
|
-
if [ -z "$CC" ]
|
40
|
-
then
|
41
|
-
CC="gcc"
|
42
|
-
echo "Using default CC = \"$CC\""
|
43
|
-
default=true
|
44
|
-
else
|
45
|
-
echo "Using CC = \"$CC\" from your environment"
|
46
|
-
fi
|
47
|
-
if [ -z "$LIBS" ]
|
48
|
-
then
|
49
|
-
LIBS="-static -lgmp"
|
50
|
-
echo "Using default LIBS = \"$LIBS\""
|
51
|
-
default=true
|
52
|
-
else
|
53
|
-
echo "Using LIBS = \"$LIBS\" from your environment"
|
54
|
-
fi
|
55
|
-
|
56
|
-
echo "Using compilation command: $CC $CFLAGS foo.c -o foo $LIBS"
|
57
|
-
|
58
|
-
if $default
|
59
|
-
then
|
60
|
-
echo "You may want to override CC, CFLAGS, and LIBS"
|
61
|
-
fi
|
62
|
-
|
63
|
-
$CC $CFLAGS gmpver.c $LIBS
|
64
|
-
`mv a.exe a.out`
|
65
|
-
echo "Using `./a.out`"
|
66
|
-
|
67
|
-
echo "Compiling benchmarks"
|
68
|
-
$CC $CFLAGS gcd.c -o gcd $LIBS
|
69
|
-
$CC $CFLAGS gcdext.c -o gcdext $LIBS
|
70
|
-
$CC $CFLAGS multiply.c -o multiply $LIBS
|
71
|
-
$CC $CFLAGS divide.c -o divide $LIBS
|
72
|
-
$CC $CFLAGS rsa.c -o rsa $LIBS
|
73
|
-
$CC $CFLAGS pi.c -o pi $LIBS -lm
|
74
|
-
fi
|
75
|
-
|
76
|
-
multiply_args="128 512 8192 131072 2097152 128,128 512,512 8192,8192 131072,131072 2097152,2097152 15000,10000 20000,10000 30000,10000 16777216,512 16777216,262144"
|
77
|
-
multiply_weight=1
|
78
|
-
|
79
|
-
divide_args="8192,32 8192,64 8192,128 8192,4096 131072,65536 8388608,4194304 8192,8064 16777216,262144"
|
80
|
-
divide_weight=1
|
81
|
-
|
82
|
-
gcd_args="128,128 512,512 8192,8192 131072,131072 1048576,1048576"
|
83
|
-
gcd_weight=0.5
|
84
|
-
|
85
|
-
gcdext_args="128,128 512,512 8192,8192 131072,131072 1048576,1048576"
|
86
|
-
gcdext_weight=0.5
|
87
|
-
|
88
|
-
rsa_args="512 1024 2048"
|
89
|
-
rsa_weight=1
|
90
|
-
|
91
|
-
pi_args="10000 100000 1000000"
|
92
|
-
pi_weight=1
|
93
|
-
|
94
|
-
# base_tests="multiply divide gcd gcdext"
|
95
|
-
base_tests="multiply divide gcd"
|
96
|
-
# app_tests="rsa pi"
|
97
|
-
app_tests="rsa"
|
98
|
-
|
99
|
-
tests="base app"
|
100
|
-
|
101
|
-
echo "Running benchmarks (propagated score accuracy exceeds printed intermediates)"
|
102
|
-
|
103
|
-
acc2=1
|
104
|
-
n2=0
|
105
|
-
for cat in $tests
|
106
|
-
do
|
107
|
-
echo " Category $cat"
|
108
|
-
eval tests=\$${cat}_tests
|
109
|
-
|
110
|
-
acc1=1
|
111
|
-
n1=0
|
112
|
-
for t in $tests
|
113
|
-
do
|
114
|
-
eval weight=\$${t}_weight
|
115
|
-
echo " Program $t (weight=$weight)"
|
116
|
-
eval args=\$${t}_args
|
117
|
-
|
118
|
-
acc=1
|
119
|
-
n=0
|
120
|
-
for a in $args
|
121
|
-
do
|
122
|
-
ta=`echo $a | sed 's;,; ;g'`
|
123
|
-
printf ' %-48s' "GMPbench.$cat.$t($a)"
|
124
|
-
./$t $ta >RES-$t-$a
|
125
|
-
res=`grep "^RESULT" RES-$t-$a | sed 's;^RESULT: \([0-9.]*\).*$;\1;'`
|
126
|
-
printf '%12s\n' `gexpr -prec 4 "$res"`
|
127
|
-
acc=`gexpr -prec 10 "$acc * $res"`
|
128
|
-
n=`gexpr $n+1`
|
129
|
-
done
|
130
|
-
|
131
|
-
out=`gexpr -prec 10 "$acc^(1/$n)"`
|
132
|
-
printf ' %-40s%12s\n' "GMPbench.$cat.$t" `gexpr -prec 5 "$out"`
|
133
|
-
acc1=`gexpr -prec 10 "$acc1 * $out^$weight"`
|
134
|
-
n1=`gexpr $n1+$weight`
|
135
|
-
done
|
136
|
-
|
137
|
-
out=`gexpr -prec 10 "$acc1^(1/$n1)"`
|
138
|
-
printf ' %-32s%12s\n' "GMPbench.$cat" `gexpr -prec 5 "$out"`
|
139
|
-
acc2=`gexpr -prec 10 "$acc2 * $out"`
|
140
|
-
n2=`gexpr $n2+1`
|
141
|
-
done
|
142
|
-
|
143
|
-
|
144
|
-
out=`gexpr "$acc2^(1/$n2)"`
|
145
|
-
echo "GMPbench: $out"
|
146
|
-
|
147
|
-
exit 0
|