1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
|
/* Shared speed subroutines. */
/*
Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with the GNU MP Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA.
*/
#include <errno.h>
#include <fcntl.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h> /* for qsort */
#include <string.h>
#include <unistd.h>
#if 0
#include <sys/ioctl.h>
#endif
#include "gmp.h"
#include "gmp-impl.h"
#include "speed.h"
/* Change this to "#define TRACE(x) x" to get traces. */
#define TRACE(x)
#define numberof(x) (sizeof (x) / sizeof ((x)[0]))
typedef int (*qsort_function_t) _PROTO ((const void *, const void *));
int speed_option_addrs = 0;
void
pentium_wbinvd(void)
{
#if 0
{
static int fd = -2;
if (fd == -2)
{
fd = open ("/dev/wbinvd", O_RDWR);
if (fd == -1)
perror ("open /dev/wbinvd");
}
if (fd != -1)
ioctl (fd, 0, 0);
}
#endif
#if 0
#define WBINVDSIZE 1024*1024*2
{
static char *p = NULL;
int i, sum;
if (p == NULL)
p = malloc (WBINVDSIZE);
#if 0
for (i = 0; i < WBINVDSIZE; i++)
p[i] = i & 0xFF;
#endif
sum = 0;
for (i = 0; i < WBINVDSIZE; i++)
sum += p[i];
mpn_cache_fill_dummy (sum);
}
#endif
}
static int
double_cmp_ptr (const double *p, const double *q)
{
if (*p > *q) return 1;
if (*p < *q) return -1;
return 0;
}
/* Measure the speed of a given routine.
The routine is run with enough repetitions to make it take at least
speed_precision * speed_unittime. This aims to minimize the effects of a
limited accuracy time base and the overhead of the measuring itself.
Measurements are made looking for 4 results within TOLERANCE of each
other (or 3 for routines taking longer than 2 seconds). This aims to get
an accurate reading even if some runs are bloated by interrupts or task
switches or whatever.
The given (*fun)() is expected to run its function "s->reps" many times
and return the total elapsed time measured using speed_starttime() and
speed_endtime(). If the function doesn't support the given s->size or
s->r, -1.0 should be returned. See the various base routines below. */
double
speed_measure (double (*fun) _PROTO ((struct speed_params *s)),
struct speed_params *s)
{
#define TOLERANCE 1.005 /* 0.5% */
struct speed_params s_dummy;
int i, j, e;
double t[30];
double t_unsorted[30];
/* Use dummy parameters if caller doesn't provide any. Only a few special
"fun"s will cope with this, speed_noop() is one. */
if (s == NULL)
{
memset (&s_dummy, '\0', sizeof (s_dummy));
s = &s_dummy;
}
s->reps = 1;
s->time_divisor = 1.0;
for (i = 0; i < numberof (t); i++)
{
for (;;)
{
s->src_num = 0;
s->dst_num = 0;
t[i] = (*fun) (s);
t_unsorted[i] = t[i];
TRACE (printf("size=%ld reps=%u r=%d attempt=%d %.9f\n",
s->size, s->reps, s->r, i, t[i]));
if (t[i] == -1.0)
return -1.0;
if (t[i] >= speed_unittime * speed_precision)
break;
/* go to a value of reps to make t[i] >= precision */
s->reps = (unsigned) ceil (1.1 * s->reps
* speed_unittime * speed_precision
/ MAX (t[i], speed_unittime));
}
t[i] /= s->reps;
if (speed_precision == 0)
return t[i];
/* require 3 values within TOLERANCE when >= 2 secs, 4 when below */
if (t[0] >= 2.0)
e = 3;
else
e = 4;
/* Look for e many t[]'s within TOLERANCE of each other to consider a
valid measurement. Return smallest among them. */
if (i >= e)
{
qsort (t, i+1, sizeof(t[0]), (qsort_function_t) double_cmp_ptr);
for (j = e-1; j < i; j++)
if (t[j] <= t[j-e+1] * TOLERANCE)
return t[j-e+1] / s->time_divisor;
}
}
fprintf (stderr, "speed_measure() could not get %d results within %.1f%%\n",
e, (TOLERANCE-1.0)*100.0);
fprintf (stderr, " %.12f is about 0.5%%\n", t[0]*(TOLERANCE-1.0));
for (i = 0; i < numberof (t); i++)
fprintf (stderr, " %.09f\n", t_unsorted[i]);
return -1.0;
}
/* Read all of ptr,size to get it into the CPU memory cache.
A call to mpn_cache_fill_dummy() is used to make sure the compiler
doesn't optimize away the whole loop. Using "volatile mp_limb_t sum"
would work too, but the function call means we don't rely on every
compiler actually implementing volatile properly.
mpn_cache_fill_dummy() is in a separate source file to stop gcc thinking
it can inline it. */
void
mpn_cache_fill (mp_srcptr ptr, mp_size_t size)
{
mp_limb_t sum = 0;
mp_size_t i;
for (i = 0; i < size; i++)
sum += ptr[i];
mpn_cache_fill_dummy(sum);
}
void
mpn_cache_fill_write (mp_ptr ptr, mp_size_t size)
{
mpn_cache_fill (ptr, size);
#if 0
mpn_random (ptr, size);
#endif
#if 0
mp_size_t i;
for (i = 0; i < size; i++)
ptr[i] = i;
#endif
}
void
speed_operand_src (struct speed_params *s, mp_ptr ptr, mp_size_t size)
{
if (s->src_num >= numberof (s->src))
{
fprintf (stderr, "speed_operand_src: no room left in s->src[]\n");
abort ();
}
s->src[s->src_num].ptr = ptr;
s->src[s->src_num].size = size;
s->src_num++;
}
void
speed_operand_dst (struct speed_params *s, mp_ptr ptr, mp_size_t size)
{
if (s->dst_num >= numberof (s->dst))
{
fprintf (stderr, "speed_operand_dst: no room left in s->dst[]\n");
abort ();
}
s->dst[s->dst_num].ptr = ptr;
s->dst[s->dst_num].size = size;
s->dst_num++;
}
void
speed_cache_fill (struct speed_params *s)
{
static struct speed_params prev;
int i;
/* FIXME: need a better way to get the format string for a pointer */
if (speed_option_addrs)
{
int different;
different = (s->dst_num != prev.dst_num || s->src_num != prev.src_num);
for (i = 0; i < s->dst_num; i++)
different |= (s->dst[i].ptr != prev.dst[i].ptr);
for (i = 0; i < s->src_num; i++)
different |= (s->src[i].ptr != prev.src[i].ptr);
if (different)
{
if (s->dst_num != 0)
{
printf ("dst");
for (i = 0; i < s->dst_num; i++)
printf (" %08lX", (unsigned long) s->dst[i].ptr);
printf (" ");
}
if (s->src_num != 0)
{
printf ("src");
for (i = 0; i < s->src_num; i++)
printf (" %08lX", (unsigned long) s->src[i].ptr);
printf (" ");
}
printf (" (cf sp approx %08lX)\n", (unsigned long) &different);
}
memcpy (&prev, s, sizeof(prev));
}
switch (s->cache) {
case 0:
for (i = 0; i < s->dst_num; i++)
mpn_cache_fill_write (s->dst[i].ptr, s->dst[i].size);
for (i = 0; i < s->src_num; i++)
mpn_cache_fill (s->src[i].ptr, s->src[i].size);
break;
case 1:
pentium_wbinvd();
break;
}
}
/* Return p advanced to the next multiple of "align" bytes. "align" must be
a power of 2. Care is taken not to assume sizeof(int)==sizeof(pointer).
Using "unsigned long" avoids a warning on hpux. */
void *
align_pointer (void *p, size_t align)
{
unsigned long d;
d = ((unsigned long) p) & (align-1);
d = (d != 0 ? align-d : 0);
return (void *) (((char *) p) + d);
}
/* Note that memory allocated with this function can never be freed, because
the start address of the block allocated is discarded. */
void *
_mp_allocate_func_aligned (size_t bytes, size_t align)
{
return align_pointer ((*_mp_allocate_func) (bytes + align-1), align);
}
void *
_mp_allocate_or_reallocate (void *ptr, size_t oldsize, size_t newsize)
{
if (ptr == NULL)
return (*_mp_allocate_func) (newsize);
else
return (*_mp_reallocate_func) (ptr, oldsize, newsize);
}
/* Adjust ptr to align to CACHE_LINE_SIZE bytes plus "align" limbs. ptr
needs to have room for up to CACHE_LINE_SIZE-4 extra bytes. */
mp_ptr
speed_tmp_alloc_adjust (void *ptr, mp_size_t align)
{
/*
printf("%p %ld -> %p %X %X\n", ptr, align,
(mp_ptr) ptr
+ ((align - ((mp_size_t) ptr >> 2)) &
SPEED_TMP_ALLOC_ADJUST_MASK),
((mp_size_t) ptr >> 2) & SPEED_TMP_ALLOC_ADJUST_MASK,
SPEED_TMP_ALLOC_ADJUST_MASK);
*/
return (mp_ptr) ptr
+ ((align - ((mp_size_t) ptr >> 2)) & SPEED_TMP_ALLOC_ADJUST_MASK);
}
void
mpz_set_n (mpz_ptr z, mp_srcptr p, mp_size_t size)
{
ASSERT (size >= 0);
MPN_NORMALIZE (p, size);
MPZ_REALLOC (z, size);
MPN_COPY (PTR(z), p, size);
SIZ(z) = size;
}
/* Miscellanous options accepted by tune and speed programs under -o. */
void
speed_option_set (const char *s)
{
if (strcmp (s, "addrs") == 0) speed_option_addrs = 1;
else
{
printf ("Unrecognised -o option: %s\n", s);
exit (1);
}
}
/* The following are basic speed running routines for various gmp functions.
Many are very similar and use speed.h macros.
Each routine allocates it's own destination space for the result of the
function, because only it can know what the function needs.
speed_starttime() and speed_endtime() are put tight around the code to be
measured. Any setups are done outside the timed portion.
Each routine is responsible for its own cache priming.
speed_cache_fill() is a good way to do this, see examples in speed.h.
One cache priming possibility, for CPUs with write-allocate cache, and
functions that don't take too long, is to do one dummy call before timing
so as to cache everything that gets used. But speed_measure() runs a
routine at least twice and will take the smaller time, so this might not
be necessary.
Data alignment will be important, for source, destination and temporary
workspace. A routine can align its destination and workspace. Programs
using the routines will ensure s->xp and s->yp are aligned. Aligning
onto a CACHE_LINE_SIZE boundary is suggested. s->align_wp and
s->align_wp2 should be respected where it makes sense to do so.
SPEED_TMP_ALLOC_LIMBS is a good way to do this.
A loop of the following form can be expected to turn into good assembler
code on most CPUs, thereby minimizing overhead in the measurement. It
can always be assumed s->reps >= 1.
i = s->reps
do
foo();
while (--i != 0);
Additional parameters might be added to "struct speed_params" in the
future. Routines should ignore anything they don't use.
s->size can be used creatively, and s->xp and s->yp can be ignored. For
example, speed_mpz_fac_ui() uses s->size as n for the factorial. s->r is
just a user-supplied parameter. speed_mpn_lshift() uses it as a shift,
speed_mpn_mul_1() uses it as a multiplier.
*/
/* MPN_COPY etc can be macros, so the _CALL forms are necessary */
double
speed_MPN_COPY (struct speed_params *s)
{
SPEED_ROUTINE_MPN_COPY_CALL (MPN_COPY (wp, s->xp, s->size));
}
double
speed_MPN_COPY_INCR (struct speed_params *s)
{
SPEED_ROUTINE_MPN_COPY_CALL (MPN_COPY_INCR (wp, s->xp, s->size));
}
double
speed_MPN_COPY_DECR (struct speed_params *s)
{
SPEED_ROUTINE_MPN_COPY_CALL (MPN_COPY_DECR (wp, s->xp, s->size));
}
double
speed_memcpy (struct speed_params *s)
{
SPEED_ROUTINE_MPN_COPY_CALL
(memcpy (wp, s->xp, s->size * BYTES_PER_MP_LIMB));
}
double
speed_mpn_addmul_1 (struct speed_params *s)
{
SPEED_ROUTINE_MPN_UNARY_1 (mpn_addmul_1);
}
double
speed_mpn_submul_1 (struct speed_params *s)
{
SPEED_ROUTINE_MPN_UNARY_1 (mpn_submul_1);
}
double
speed_mpn_mul_1 (struct speed_params *s)
{
SPEED_ROUTINE_MPN_UNARY_1 (mpn_mul_1);
}
double
speed_mpn_lshift (struct speed_params *s)
{
SPEED_ROUTINE_MPN_UNARY_1 (mpn_lshift);
}
double
speed_mpn_rshift (struct speed_params *s)
{
SPEED_ROUTINE_MPN_UNARY_1 (mpn_rshift);
}
/* The carry-in variants (if available) are good for measuring because they
won't skip a division if high<divisor. Alternately, use -1 as a divisor
with the plain _1 forms. */
double
speed_mpn_divrem_1 (struct speed_params *s)
{
SPEED_ROUTINE_MPN_DIVREM_1 (mpn_divrem_1);
}
double
speed_mpn_divrem_1f (struct speed_params *s)
{
SPEED_ROUTINE_MPN_DIVREM_1F (mpn_divrem_1);
}
#if HAVE_NATIVE_mpn_divrem_1c
double
speed_mpn_divrem_1c (struct speed_params *s)
{
SPEED_ROUTINE_MPN_DIVREM_1C (mpn_divrem_1c);
}
double
speed_mpn_divrem_1cf (struct speed_params *s)
{
SPEED_ROUTINE_MPN_DIVREM_1CF (mpn_divrem_1c);
}
#endif
double
speed_mpn_divrem_2 (struct speed_params *s)
{
SPEED_ROUTINE_MPN_DIVREM_2 (mpn_divrem_2);
}
double
speed_mpn_mod_1 (struct speed_params *s)
{
SPEED_ROUTINE_MPN_MOD_1 (mpn_mod_1);
}
#if HAVE_NATIVE_mpn_mod_1c
double
speed_mpn_mod_1c (struct speed_params *s)
{
SPEED_ROUTINE_MPN_MOD_1C (mpn_mod_1c);
}
#endif
#if 0
double
speed_mpn_divexact_by3c (struct speed_params *s)
{
SPEED_ROUTINE_MPN_COPYC (mpn_divexact_by3c);
}
#endif
double
speed_mpn_divexact_by3 (struct speed_params *s)
{
/* mpn_divexact_by3 is a macro, so the _CALL form is necessary */
SPEED_ROUTINE_MPN_COPY_CALL(mpn_divexact_by3 (wp, s->xp, s->size));
}
double
speed_mpn_bz_divrem_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BZ_DIVREM_N (mpn_bz_divrem_n);
}
double
speed_mpn_bz_divrem_sb (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BZ_DIVREM_SB (mpn_sb_divrem_mn);
}
double
speed_mpn_bz_tdiv_qr (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BZ_TDIV_QR (mpn_tdiv_qr);
}
double
speed_mpn_popcount (struct speed_params *s)
{
SPEED_ROUTINE_MPN_POPCOUNT (mpn_popcount);
}
double
speed_mpn_hamdist (struct speed_params *s)
{
SPEED_ROUTINE_MPN_HAMDIST (mpn_hamdist);
}
double
speed_mpn_add_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N (mpn_add_n);
}
double
speed_mpn_sub_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N (mpn_sub_n);
}
double
speed_mpn_add_n_self (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_SELF (mpn_add_n);
}
double
speed_mpn_add_n_inplace (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_INPLACE (mpn_add_n);
}
/* mpn_and_n etc can be macros and so have to be handled with
SPEED_ROUTINE_MPN_BINARY_N_CALL forms */
double
speed_mpn_and_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_and_n (wp, s->xp, s->yp, s->size));
}
double
speed_mpn_andn_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_andn_n (wp, s->xp, s->yp, s->size));
}
double
speed_mpn_nand_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_nand_n (wp, s->xp, s->yp, s->size));
}
double
speed_mpn_ior_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_ior_n (wp, s->xp, s->yp, s->size));
}
double
speed_mpn_iorn_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_iorn_n (wp, s->xp, s->yp, s->size));
}
double
speed_mpn_nior_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_nior_n (wp, s->xp, s->yp, s->size));
}
double
speed_mpn_xor_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_xor_n (wp, s->xp, s->yp, s->size));
}
double
speed_mpn_xnor_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_BINARY_N_CALL (mpn_xnor_n (wp, s->xp, s->yp, s->size));
}
double
speed_mpn_mul_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_MUL_N (mpn_mul_n);
}
double
speed_mpn_sqr_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_SQR (mpn_sqr_n);
}
double
speed_mpn_mul_n_sqr (struct speed_params *s)
{
SPEED_ROUTINE_MPN_SQR_CALL (mpn_mul_n (wp, s->xp, s->xp, s->size));
}
double
speed_mpn_mul_basecase (struct speed_params *s)
{
SPEED_ROUTINE_MPN_MUL_BASECASE(mpn_mul_basecase);
}
double
speed_mpn_sqr_basecase (struct speed_params *s)
{
/* FIXME: size restrictions on some versions of sqr_basecase */
SPEED_ROUTINE_MPN_SQR (mpn_sqr_basecase);
}
double
speed_mpn_kara_mul_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_KARA_MUL_N (mpn_kara_mul_n);
}
double
speed_mpn_kara_sqr_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_KARA_SQR_N (mpn_kara_sqr_n);
}
double
speed_mpn_toom3_mul_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_TOOM3_MUL_N (mpn_toom3_mul_n);
}
double
speed_mpn_toom3_sqr_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_TOOM3_SQR_N (mpn_toom3_sqr_n);
}
double
speed_mpn_gcd (struct speed_params *s)
{
SPEED_ROUTINE_MPN_GCD (mpn_gcd);
}
double
speed_mpn_gcdext (struct speed_params *s)
{
SPEED_ROUTINE_MPN_GCDEXT (mpn_gcdext);
}
double
speed_mpn_gcd_1 (struct speed_params *s)
{
SPEED_ROUTINE_MPN_GCD_1 (mpn_gcd_1);
}
double
speed_mpn_jacobi_base (struct speed_params *s)
{
SPEED_ROUTINE_MPN_JACBASE (mpn_jacobi_base);
}
double
speed_mpz_fac_ui (struct speed_params *s)
{
SPEED_ROUTINE_MPZ_UI (mpz_fac_ui);
}
double
speed_mpz_fib_ui (struct speed_params *s)
{
SPEED_ROUTINE_MPZ_UI (mpz_fib_ui);
}
double
speed_mpz_powm (struct speed_params *s)
{
SPEED_ROUTINE_MPZ_POWM (mpz_powm);
}
double
speed_modlimb_invert (struct speed_params *s)
{
SPEED_ROUTINE_MODLIMB_INVERT (modlimb_invert);
}
double
speed_noop (struct speed_params *s)
{
unsigned i;
speed_starttime ();
i = s->reps;
do
noop ();
while (--i != 0);
return speed_endtime ();
}
double
speed_noop_wxs (struct speed_params *s)
{
mp_ptr wp;
unsigned i;
double t;
TMP_DECL (marker);
TMP_MARK (marker);
wp = TMP_ALLOC_LIMBS (1);
speed_starttime ();
i = s->reps;
do
noop_wxs (wp, s->xp, s->size);
while (--i != 0);
t = speed_endtime ();
TMP_FREE (marker);
return t;
}
double
speed_noop_wxys (struct speed_params *s)
{
mp_ptr wp;
unsigned i;
double t;
TMP_DECL (marker);
TMP_MARK (marker);
wp = TMP_ALLOC_LIMBS (1);
speed_starttime ();
i = s->reps;
do
noop_wxys (wp, s->xp, s->yp, s->size);
while (--i != 0);
t = speed_endtime ();
TMP_FREE (marker);
return t;
}
#define SPEED_ROUTINE_ALLOC_FREE(variables, calls) \
{ \
unsigned i; \
variables; \
\
speed_starttime (); \
i = s->reps; \
do \
{ \
calls; \
} \
while (--i != 0); \
return speed_endtime (); \
}
/* Compare these to see how much malloc/free costs and then how much
_mp_default_allocate/free and mpz_init/clear add. mpz_init/clear or
mpq_init/clear will be doing a 1 limb allocate, so use that as the size
when including them in comparisons. */
double
speed_malloc_free (struct speed_params *s)
{
size_t bytes = s->size * BYTES_PER_MP_LIMB;
SPEED_ROUTINE_ALLOC_FREE (void *p,
p = malloc (bytes);
free (p));
}
double
speed_malloc_realloc_free (struct speed_params *s)
{
size_t bytes = s->size * BYTES_PER_MP_LIMB;
SPEED_ROUTINE_ALLOC_FREE (void *p,
p = malloc (BYTES_PER_MP_LIMB);
p = realloc (p, bytes);
free (p));
}
double
speed_mp_allocate_free (struct speed_params *s)
{
size_t bytes = s->size * BYTES_PER_MP_LIMB;
SPEED_ROUTINE_ALLOC_FREE (void *p,
p = (*_mp_allocate_func) (bytes);
(*_mp_free_func) (p, bytes));
}
double
speed_mp_allocate_reallocate_free (struct speed_params *s)
{
size_t bytes = s->size * BYTES_PER_MP_LIMB;
SPEED_ROUTINE_ALLOC_FREE
(void *p,
p = (*_mp_allocate_func) (BYTES_PER_MP_LIMB);
p = (*_mp_reallocate_func) (p, bytes, BYTES_PER_MP_LIMB);
(*_mp_free_func) (p, bytes));
}
double
speed_mpz_init_clear (struct speed_params *s)
{
SPEED_ROUTINE_ALLOC_FREE (mpz_t z,
mpz_init (z);
mpz_clear (z));
}
double
speed_mpz_init_realloc_clear (struct speed_params *s)
{
SPEED_ROUTINE_ALLOC_FREE (mpz_t z,
mpz_init (z);
_mpz_realloc (z, s->size);
mpz_clear (z));
}
double
speed_mpq_init_clear (struct speed_params *s)
{
SPEED_ROUTINE_ALLOC_FREE (mpq_t q,
mpq_init (q);
mpq_clear (q));
}
double
speed_mpf_init_clear (struct speed_params *s)
{
SPEED_ROUTINE_ALLOC_FREE (mpf_t f,
mpf_init (f);
mpf_clear (f));
}
/* Compare this to mpn_add_n to see how much overhead mpz_add adds. Note
that repeatedly calling mpz_add with the same data gives branch predition
in it an advantage. */
double
speed_mpz_add (struct speed_params *s)
{
mpz_t w, x, y;
unsigned i;
double t;
mpz_init (w);
mpz_init (x);
mpz_init (y);
mpz_set_n (x, s->xp, s->size);
mpz_set_n (y, s->yp, s->size);
mpz_add (w, x, y);
speed_starttime ();
i = s->reps;
do
{
mpz_add (w, x, y);
}
while (--i != 0);
t = speed_endtime ();
mpz_clear (w);
mpz_clear (x);
mpz_clear (y);
return t;
}
/* If r==0, calculate (size,size/2),
otherwise calculate (size,r). */
double
speed_mpz_bin_uiui (struct speed_params *s)
{
mpz_t w;
unsigned long k;
unsigned i;
double t;
mpz_init (w);
if (s->r != 0)
k = s->r;
else
k = s->size/2;
speed_starttime ();
i = s->reps;
do
{
mpz_bin_uiui (w, s->size, k);
}
while (--i != 0);
t = speed_endtime ();
mpz_clear (w);
return t;
}
|