forked from Cytnx-dev/Cytnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.inc
37 lines (25 loc) · 754 Bytes
/
make.inc
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
## set default compiler:
GCC=g++
OPTIM= -g -O3
## compile using intel icpc compiler
ICPC_Enable=0
ICPC=icpc
# set compile modes:
## compile with CUDA support:
GPU_Enable=1
CUDA_PATH=/usr/local/cuda
## compile with Openmp support:
OMP_Enable=1
## compile with MKL library:
MKL_Enable=1
## compile with HPTT library:
HPTT_Enable=1
## compile with CUTT library:
CUTT_Enable=0
#### DO NOT USE BELOW WHEN CUSTOM INSTALL !!
#-------------------------------------------
## un-commend when distribute by docker
#DOCKER_MKL=-L/miniconda/lib
## compile with debug mode, which add check for internal error! including more information and check at runtime
## WARNING, this will slowdown the performance. DO NOT USE when on production run!
DEBUG_Enable=0