-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.mk
34 lines (28 loc) · 1.02 KB
/
config.mk
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
#################################################################
#################################################################
# Configuration options #
#################################################################
#################################################################
# Supported: ICC, GCC
COMPILER = ICC
# Supported: MKL, OPENBLAS
BLAS_LIBRARY = MKL
# either 64 or 128
ALTO_MASK_LENGTH = 64
# Data types (default: idx_type=int64, ktensor_val_type=double, sptensor_val_type=double)
## possible options: INT32, INT64
ALTO_IDX_TYPE = INT64
## possible options: FP32, FP64
ALTO_FP_TYPE = FP64
## possible options: INT32, INT64, FP_TYPE
ALTO_VAL_TYPE = FP_TYPE
# List of modes and ranks to specialize code for; use 0 to
# disable specialization.
MODES_SPECIALIZED := 3, 4, 5
RANKS_SPECIALIZED := 8, 16, 100
MAX_NUM_MODES = 5
# use ALTERNATIVE_PEXT if the ISA does not support BMI2 instructions
ALTERNATIVE_PEXT = false
THP_PRE_ALLOCATION = false
MEMTRACE = false
DEBUG = false