summaryrefslogtreecommitdiff
path: root/meson_options.txt
blob: f53432def9800963d798cac4adbb75c59732c72c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
option('blas', type: 'string', value: 'openblas',
        description: 'option for BLAS library switching')
option('lapack', type: 'string', value: 'openblas',
        description: 'option for LAPACK library switching')
option('disable-svml', type: 'boolean', value: 'false',
        description: 'Disable building against SVML')
option('disable-threading', type: 'boolean', value: 'false',
        description: 'Disable threading support (see `NPY_ALLOW_THREADS` docs)')
# TODO: flip value to 'false' once we have `npy_cpu_dispatch_config.h` & co.
option('disable-simd-optimizations', type: 'boolean', value: 'true',
        description: 'Disable SIMD features beyond the baseline ones')
option('relaxed-strides-debug', type: 'boolean', value: 'false',
        description: 'Enable relaxed strides debug mode (see `NPY_RELAXED_STRIDES_DEBUG` docs)')