forked from LeelaChessZero/lc0
-
Notifications
You must be signed in to change notification settings - Fork 1
/
meson_options.txt
39 lines (32 loc) · 1.18 KB
/
meson_options.txt
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
option('tensorflow_include',
type: 'array',
value: ['/usr/local/include/tensorflow/'],
description: 'Paths to tensorflow include directories')
option('openblas_include',
type: 'array',
value: ['/usr/include/openblas/'],
description: 'Paths to openblas include directories')
option('tensorflow_libdir',
type: 'array',
value: ['/usr/local/lib/tensorflow_cc/'],
description: 'Paths to tensorflow libraries')
option('opencl_libdirs',
type: 'array',
value: ['/opt/cuda/lib64/', '/usr/local/cuda/lib64/'],
description: 'Paths to OpenCL libraries')
option('cudnn_libdirs',
type: 'array',
value: ['/opt/cuda/lib64/', '/usr/local/cuda/lib64/'],
description: 'Paths to Cuda/cudnn libraries')
option('mkl_libdirs',
type: 'array',
value: ['/opt/intel/lib/intel64', '/opt/intel/mkl/lib/intel64'],
description: 'Paths to MKL libraries')
option('cudnn_include',
type: 'array',
value: [],
description: 'Paths to cudnn include directory')
option('build_backends',
type: 'boolean',
value: true,
description: 'Build backends for NN computation')