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/srb.sh
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
#! /bin/bash
|
2
|
-
source ~/.rvm/scripts/rvm
|
3
|
-
|
4
|
-
if [ $# -gt 0 ]; then
|
5
|
-
rvm use $1
|
6
|
-
if [ $? -ne 0 ]; then
|
7
|
-
echo "ERROR: rvm doesn't like \"$1\". Quitting."
|
8
|
-
exit 1
|
9
|
-
fi
|
10
|
-
fi
|
11
|
-
|
12
|
-
LIBS=-lgmp ./runbench -n
|
13
|
-
if [ $? -ne 0 ]; then
|
14
|
-
echo "ERROR: ruby extconf.rb didn't work so hot. Quitting."
|
15
|
-
exit 2
|
16
|
-
fi
|
17
|
-
|
18
|
-
echo "RUBY: `ruby -v`"
|
19
|
-
echo "GMP: `ruby -r '../lib/gmp' -e \"puts GMP::GMP_VERSION\"`"
|
20
|
-
echo "GMP_CC: `ruby -r '../lib/gmp' -e \"puts GMP::GMP_CC\"`"
|
21
|
-
|
data/benchmark/version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.2
|