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

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * Simple test driver for MPI library
  3.  *
  4.  * Test 3a: Multiplication vs. squaring timing test
  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-3a.c,v 1.1 2000/07/14 00:44:43 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 "mpi.h"
  46. #include "mpprime.h"
  47. int main(int argc, char *argv[])
  48. {
  49.   int        ix, num, prec = 8;
  50.   double     d1, d2;
  51.   clock_t    start, finish;
  52.   time_t     seed;
  53.   mp_int     a, c, d;
  54.   seed = time(NULL);
  55.   if(argc < 2) {
  56.     fprintf(stderr, "Usage: %s <num-tests> [<precision>]n", argv[0]);
  57.     return 1;
  58.   }
  59.   if((num = atoi(argv[1])) < 0)
  60.     num = -num;
  61.   if(!num) {
  62.     fprintf(stderr, "%s: must perform at least 1 testn", argv[0]);
  63.     return 1;
  64.   }
  65.   if(argc > 2) {
  66.     if((prec = atoi(argv[2])) <= 0)
  67.       prec = 8;
  68.     else
  69.       prec = (prec + (DIGIT_BIT - 1)) / DIGIT_BIT;
  70.   }
  71.   
  72.   printf("Test 3a: Multiplication vs squaring timing testn"
  73.  "Precision:  %d digits (%u bits)n"
  74.  "# of tests: %dnn", prec, prec * DIGIT_BIT, num);
  75.   mp_init_size(&a, prec);
  76.   mp_init(&c); mp_init(&d);
  77.   printf("Verifying accuracy ... n");
  78.   srand((unsigned int)seed);
  79.   for(ix = 0; ix < num; ix++) {
  80.     mpp_random_size(&a, prec);
  81.     mp_mul(&a, &a, &c);
  82.     mp_sqr(&a, &d);
  83.     if(mp_cmp(&c, &d) != 0) {
  84.       printf("Error!  Results not accurate:n");
  85.       printf("a = "); mp_print(&a, stdout); fputc('n', stdout);
  86.       printf("c = "); mp_print(&c, stdout); fputc('n', stdout);
  87.       printf("d = "); mp_print(&d, stdout); fputc('n', stdout);
  88.       mp_sub(&c, &d, &d);
  89.       printf("dif "); mp_print(&d, stdout); fputc('n', stdout);
  90.       mp_clear(&c); mp_clear(&d);
  91.       mp_clear(&a);
  92.       return 1;
  93.     }
  94.   }
  95.   printf("Accuracy is confirmed for the %d test samplesn", num);
  96.   mp_clear(&d);
  97.   printf("Testing squaring ... n");
  98.   srand((unsigned int)seed);
  99.   start = clock();
  100.   for(ix = 0; ix < num; ix++) {
  101.     mpp_random_size(&a, prec);
  102.     mp_sqr(&a, &c);
  103.   }
  104.   finish = clock();
  105.   d2 = (double)(finish - start) / CLOCKS_PER_SEC;
  106.   printf("Testing multiplication ... n");
  107.   srand((unsigned int)seed);
  108.   start = clock();
  109.   for(ix = 0; ix < num; ix++) {
  110.     mpp_random(&a);
  111.     mp_mul(&a, &a, &c);
  112.   }
  113.   finish = clock();
  114.   d1 = (double)(finish - start) / CLOCKS_PER_SEC;
  115.   printf("Multiplication time: %.3f sec (%.3f each)n", d1, d1 / num);
  116.   printf("Squaring time:       %.3f sec (%.3f each)n", d2, d2 / num);
  117.   printf("Improvement:         %.2f%%n", (1.0 - (d2 / d1)) * 100.0);
  118.   mp_clear(&c);
  119.   mp_clear(&a);
  120.   return 0;
  121. }