This is an automated email from the git hooks/post-receive script.

ppm-guest pushed a commit to annotated tag v0.36
in repository libmath-prime-util-perl.

commit 0b97c03b2ea710849618c91e9724252e97b89d6b
Author: Dana Jacobsen <d...@acm.org>
Date:   Sat Dec 21 15:46:40 2013 -0800

    Fix macro comparison, new benchmarks
---
 lmo.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lmo.c b/lmo.c
index e85a08c..2591cf7 100644
--- a/lmo.c
+++ b/lmo.c
@@ -39,14 +39,14 @@
  *  +-------+----------+----------+----------+----------+-----------+
  *  | 10^19 |          |          |          |          | 2493.4    |
  *  | 10^18 |          |          |          |          |  498.16   |
- *  | 10^17 |          | 2950.9   | 7499.0   | 7125.7   |  103.03   |
- *  | 10^16 | 2422.7   |  575.8   |  872.5   |  884.9   |   21.94   |
- *  | 10^15 |  303.3   |  112.1   |  119.3   |  119.1   |    4.786  |
- *  | 10^14 |   40.10  |   22.06  |   19.06  |   17.58  |    1.052  |
- *  | 10^13 |    5.678 |    4.330 |    3.316 |    2.810 |    0.237  |
- *  | 10^12 |    0.901 |    0.889 |    0.617 |    0.524 |    54.9ms |
- *  | 10^11 |    0.182 |    0.192 |    0.122 |    0.114 |    13.80ms|
- *  | 10^10 |    40.2ms|    41.7ms|    26.6ms|    25.6ms|     3.64ms|
+ *  | 10^17 |10459.3   | 4348.3   | 6109.7   | 3478.0   |  103.03   |
+ *  | 10^16 | 1354.6   |  510.8   |  758.6   |  458.4   |   21.64   |
+ *  | 10^15 |  171.2   |   97.1   |  106.4   |   68.11  |    4.707  |
+ *  | 10^14 |   23.56  |   18.59  |   16.51  |   10.44  |    1.032  |
+ *  | 10^13 |    3.783 |    3.552 |    2.803 |    1.845 |    0.237  |
+ *  | 10^12 |    0.755 |    0.697 |    0.505 |    0.378 |    54.9ms |
+ *  | 10^11 |    0.165 |    0.144 |    93.7ms|    81.6ms|    13.80ms|
+ *  | 10^10 |    35.9ms|    29.9ms|    19.9ms|    17.8ms|     3.64ms|
  *
  * Run with high memory limits: Meissel uses 1GB for 10^16, ~3GB for 10^17.
  * Lehmer is limited at high n values by sieving speed.  It is much faster
@@ -88,7 +88,7 @@ typedef UV sword_t;
 
 /* Compile with -march=native to get a very large speedup on new processors */
 #if SWORD_BITS == 64
- #if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR > 1))
+ #if defined(__GNUC__) && (__GNUC__> 4 || (__GNUC__== 4 && __GNUC_MINOR__> 1))
    #define bitcount(b)  __builtin_popcountll(b)
  #else
    static sword_t bitcount(sword_t b) {

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libmath-prime-util-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to