BLD: Add more define mappings
This commit is contained in:
parent
cca7523d72
commit
05c93dd445
18
meson.build
18
meson.build
|
@ -248,6 +248,22 @@ precision_mappings = {
|
||||||
# 'zd': {'undef': [], 'def': ['COMPLEX', 'DOUBLE']},
|
# 'zd': {'undef': [], 'def': ['COMPLEX', 'DOUBLE']},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ext_mappings = {
|
||||||
|
'_k': {},
|
||||||
|
'_U': {'undef': ['LOWER']},
|
||||||
|
'_L': {'def': ['LOWER']},
|
||||||
|
'_V': {'def': ['HEMV', 'HEMVREV'], 'undef': ['LOWER']},
|
||||||
|
'_M': {'def': ['HEMV', 'HEMVREV', 'LOWER']},
|
||||||
|
'_n': {'undef': ['TRANS', 'CONJ', 'XCONJ']},
|
||||||
|
'_t': {'def': ['TRANS'], 'undef': ['CONJ', 'XCONJ']},
|
||||||
|
'_r': {'def': ['CONJ'], 'undef': ['TRANS', 'XCONJ']},
|
||||||
|
'_c': {'def': ['TRANS', 'CONJ'], 'undef': ['XCONJ']},
|
||||||
|
'_o': {'def': ['XCONJ'], 'undef': ['TRANS', 'CONJ']},
|
||||||
|
'_u': {'def': ['TRANS', 'XCONJ'], 'undef': ['CONJ']},
|
||||||
|
'_s': {'def': ['CONJ', 'XCONJ'], 'undef': ['TRANS']},
|
||||||
|
'_d': {'def': ['TRANS', 'CONJ', 'XCONJ']},
|
||||||
|
}
|
||||||
|
|
||||||
symb_defs = [
|
symb_defs = [
|
||||||
{'base': '?asum'},
|
{'base': '?asum'},
|
||||||
{'base': '?sum'},
|
{'base': '?sum'},
|
||||||
|
@ -288,7 +304,7 @@ symb_defs = [
|
||||||
]
|
]
|
||||||
|
|
||||||
# Ignoring other hostarch checks and conflicts for arch in BSD for now
|
# Ignoring other hostarch checks and conflicts for arch in BSD for now
|
||||||
_inc = include_directories('.')
|
_inc = [include_directories('.')]
|
||||||
# subdir('lapack-netlib')
|
# subdir('lapack-netlib')
|
||||||
subdir('interface')
|
subdir('interface')
|
||||||
subdir('kernel')
|
subdir('kernel')
|
||||||
|
|
Loading…
Reference in New Issue