Browse Source

BLD: Add more define mappings

pull/4820/head
Rohit Goswami 1 year ago
parent
commit
05c93dd445
No known key found for this signature in database GPG Key ID: 9CCCE36402CB49A6
1 changed files with 17 additions and 1 deletions
  1. +17
    -1
      meson.build

+ 17
- 1
meson.build View File

@@ -248,6 +248,22 @@ precision_mappings = {
# '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 = [
{'base': '?asum'},
{'base': '?sum'},
@@ -288,7 +304,7 @@ symb_defs = [
]

# Ignoring other hostarch checks and conflicts for arch in BSD for now
_inc = include_directories('.')
_inc = [include_directories('.')]
# subdir('lapack-netlib')
subdir('interface')
subdir('kernel')


Loading…
Cancel
Save