forked from ntucllab/libact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.options
More file actions
28 lines (27 loc) · 753 Bytes
/
Copy pathmeson.options
File metadata and controls
28 lines (27 loc) · 753 Bytes
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
option(
'blas',
type: 'string',
value: 'auto',
description: 'option for BLAS library switching',
)
option(
'lapack',
type: 'string',
value: 'auto',
description: 'option for LAPACK library switching',
)
# Optional features (enabled by default)
# These features require BLAS/LAPACK libraries
# If BLAS/LAPACK are not found, they will be automatically disabled with a warning
option(
'variance_reduction',
type: 'boolean',
value: true,
description: 'Build libact.query_strategies._variance_reduction (default: enabled, requires BLAS/LAPACK)',
)
option(
'hintsvm',
type: 'boolean',
value: true,
description: 'Build libact.query_strategies._hintsvm (default: enabled, requires BLAS/LAPACK)',
)