mptest-5a.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * Simple test driver for MPI library
  3.  *
  4.  * Test 5a: Greatest common divisor speed test, binary vs. Euclid
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public
  7.  * License Version 1.1 (the "License"); you may not use this file
  8.  * except in compliance with the License. You may obtain a copy of
  9.  * the License at http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS
  12.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.  * implied. See the License for the specific language governing
  14.  * rights and limitations under the License.
  15.  *
  16.  * The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  17.  * library.
  18.  *
  19.  * The Initial Developer of the Original Code is Michael J. Fromberger.
  20.  * Portions created by Michael J. Fromberger are 
  21.  * Copyright (C) 1998, 1999, 2000 Michael J. Fromberger. 
  22.  * All Rights Reserved.
  23.  *
  24.  * Contributor(s):
  25.  *
  26.  * Alternatively, the contents of this file may be used under the
  27.  * terms of the GNU General Public License Version 2 or later (the
  28.  * "GPL"), in which case the provisions of the GPL are applicable
  29.  * instead of those above.  If you wish to allow use of your
  30.  * version of this file only under the terms of the GPL and not to
  31.  * allow others to use your version of this file under the MPL,
  32.  * indicate your decision by deleting the provisions above and
  33.  * replace them with the notice and other provisions required by
  34.  * the GPL.  If you do not delete the provisions above, a recipient
  35.  * may use your version of this file under either the MPL or the GPL.
  36.  *
  37.  * $Id: mptest-5a.c,v 1.1 2000/07/14 00:44:45 nelsonb%netscape.com Exp $
  38.  */
  39. #include <stdio.h>
  40. #include <stdlib.h>
  41. #include <string.h>
  42. #include <ctype.h>
  43. #include <limits.h>
  44. #include <time.h>
  45. #include <sys/time.h>
  46. #include "mpi.h"
  47. #include "mpprime.h"
  48. typedef struct {
  49.   unsigned int  sec;
  50.   unsigned int  usec;
  51. } instant_t;
  52. instant_t now(void)
  53. {
  54.   struct timeval clk;
  55.   instant_t      res;
  56.   res.sec = res.usec = 0;
  57.   if(gettimeofday(&clk, NULL) != 0)
  58.     return res;
  59.   res.sec = clk.tv_sec;
  60.   res.usec = clk.tv_usec;
  61.   return res;
  62. }
  63. #define PRECISION 16
  64. int main(int argc, char *argv[])
  65. {
  66.   int          ix, num, prec = PRECISION;
  67.   mp_int       a, b, c, d;
  68.   instant_t    start, finish;
  69.   time_t       seed;
  70.   unsigned int d1, d2;
  71.   seed = time(NULL);
  72.   if(argc < 2) {
  73.     fprintf(stderr, "Usage: %s <num-tests>n", argv[0]);
  74.     return 1;
  75.   }
  76.   if((num = atoi(argv[1])) < 0)
  77.     num = -num;
  78.   printf("Test 5a: Euclid vs. Binary, a GCD speed testnn"
  79.  "Number of tests: %dn"
  80.  "Precision:       %d digitsnn", num, prec);
  81.   mp_init_size(&a, prec);
  82.   mp_init_size(&b, prec);
  83.   mp_init(&c);
  84.   mp_init(&d);
  85.   printf("Verifying accuracy ... n");
  86.   srand((unsigned int)seed);
  87.   for(ix = 0; ix < num; ix++) {
  88.     mpp_random_size(&a, prec);
  89.     mpp_random_size(&b, prec);
  90.     mp_gcd(&a, &b, &c);
  91.     mp_bgcd(&a, &b, &d);
  92.     if(mp_cmp(&c, &d) != 0) {
  93.       printf("Error!  Results not accurate:n");
  94.       printf("a = "); mp_print(&a, stdout); fputc('n', stdout);
  95.       printf("b = "); mp_print(&b, stdout); fputc('n', stdout);
  96.       printf("c = "); mp_print(&c, stdout); fputc('n', stdout);
  97.       printf("d = "); mp_print(&d, stdout); fputc('n', stdout);
  98.       mp_clear(&a); mp_clear(&b); mp_clear(&c); mp_clear(&d);
  99.       return 1;
  100.     }
  101.   }
  102.   mp_clear(&d);
  103.   printf("Accuracy confirmed for the %d test samplesn", num);
  104.   printf("Testing Euclid ... n");
  105.   srand((unsigned int)seed);
  106.   start = now();
  107.   for(ix = 0; ix < num; ix++) {
  108.     mpp_random_size(&a, prec);
  109.     mpp_random_size(&b, prec);
  110.     mp_gcd(&a, &b, &c);
  111.   }
  112.   finish = now();
  113.   d1 = (finish.sec - start.sec) * 1000000;
  114.   d1 -= start.usec; d1 += finish.usec;
  115.   printf("Testing binary ... n");
  116.   srand((unsigned int)seed);
  117.   start = now();
  118.   for(ix = 0; ix < num; ix++) {
  119.     mpp_random_size(&a, prec);
  120.     mpp_random_size(&b, prec);
  121.     mp_bgcd(&a, &b, &c);
  122.   }
  123.   finish = now();
  124.   d2 = (finish.sec - start.sec) * 1000000;
  125.   d2 -= start.usec; d2 += finish.usec;
  126.   printf("Euclidean algorithm time: %u usecn", d1);
  127.   printf("Binary algorithm time:    %u usecn", d2);
  128.   printf("Improvement:              %.2f%%n",
  129.          (1.0 - ((double)d2 / (double)d1)) * 100.0);
  130.   mp_clear(&c);
  131.   mp_clear(&b);
  132.   mp_clear(&a);
  133.   return 0;
  134. }