-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson_options.txt
More file actions
37 lines (30 loc) · 1.5 KB
/
meson_options.txt
File metadata and controls
37 lines (30 loc) · 1.5 KB
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
option('distributedEngines', type : 'array',
choices : [ 'mpi', 'lpf', 'none' ],
description : 'Specifies which engines (if any) to use for distributed computing examples',
value: ['none']
)
option('executionStateType', type : 'array',
choices : ['boost', 'nosv'],
description : 'Specifies which HiCR backend to use for the tasks (i.e. executionStates) of the examples. Default: boost',
value: ['boost']
)
option('processingUnitType', type : 'array',
choices : ['pthreads', 'nosv'],
description : 'Specifies which HiCR backend to use for the workers (i.e. processingUnits) of the examples. Default: pthreads',
value: ['pthreads']
)
option('buildTests', type : 'boolean', value : false,
description: 'Indicates whether to build tests'
)
option('buildExamples', type : 'boolean', value : false,
description: 'Indicates whether to build example apps'
)
option('buildInstrumentation', type : 'boolean', value : false,
description: 'Indicates whether to build the instrumentation using TraCR',
)
option('buildPyTaskR', type : 'boolean', value : false,
description: 'Indicates whether to build the TaskR Python API',
)
option('compileWarningsAsErrors', type : 'boolean', value : false,
description: 'Indicates whether a compilation warning should result in a fatal error. This is useful for CI testing but may result in inconveniences for normal users, hence it should be false by default'
)