summaryrefslogtreecommitdiffstats
path: root/mpi/mpi-config.h
blob: ed7a87b65bf0bac1dedcf3d361437f7ad66e079d (plain)
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
/* Default configuration for MPI library */

#ifndef MP_IOFUNC
#define MP_IOFUNC 0 /* include mp_print() ? */
#endif

#ifndef MP_MODARITH
#define MP_MODARITH 1 /* include modular arithmetic ? */
#endif

#ifndef MP_NUMTH
#define MP_NUMTH 1 /* include number theoretic functions? */
#endif

#ifndef MP_LOGTAB
#define MP_LOGTAB 1 /* use table of logs instead of log()? */
#endif

#ifndef MP_MEMSET
#define MP_MEMSET 1 /* use memset() to zero buffers? */
#endif

#ifndef MP_MEMCPY
#define MP_MEMCPY 1 /* use memcpy() to copy buffers? */
#endif

#ifndef MP_CRYPTO
#define MP_CRYPTO 0 /* erase memory on free? */
#endif

#ifndef MP_ARGCHK
/* 0 = no parameter checks
 * 1 = runtime checks, continue execution and return an error to caller
 * 2 = assertions; dump core on parameter errors
 */
#define MP_ARGCHK 2 /* how to check input arguments */
#endif

#ifndef MP_DEBUG
#define MP_DEBUG 0 /* print diagnostic output? */
#endif

#ifndef MP_DEFPREC
#define MP_DEFPREC 8 /* default precision, in digits */
#endif

#ifndef MP_MACRO
#define MP_MACRO 1 /* use macros for frequent calls? */
#endif

#ifndef MP_SQUARE
#define MP_SQUARE 1 /* use separate squaring code? */
#endif

#ifndef MP_PTAB_SIZE
/*
 * When building mpprime.c, we build in a table of small prime
 * values to use for primality testing.  The more you include,
 * the more space they take up.  See primes.c for the possible
 * values (currently 16, 32, 64, 128, 256, and 6542)
 */
#define MP_PTAB_SIZE 128 /* how many built-in primes? */
#endif

#ifndef MP_COMPAT_MACROS
#define MP_COMPAT_MACROS 0 /* define compatibility macros? */
#endif