Browse Source

DOC: Fix types, add note

pull/4832/head
Rohit Goswami Mateusz Sokół 2 years ago
parent
commit
9bf5cf2604
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      meson.build

+ 4
- 3
meson.build View File

@@ -238,9 +238,10 @@ precision_mappings = {
'sc': {'undef': ['DOUBLE'], 'def': ['COMPLEX']},
'dz': {'def': ['COMPLEX', 'DOUBLE']},
'zd': {'def': ['COMPLEX', 'DOUBLE']},
'qx': {'def': ['COMPLEX', 'DOUBLE']},
'xq': {'def': ['COMPLEX', 'DOUBLE']},
'qx': {'def': ['COMPLEX', 'XDOUBLE']},
'xq': {'def': ['COMPLEX', 'XDOUBLE']},
'': {}, # special case, for cblas_?dot*_sub
# NOTE: Anything with XDOUBLE aka longdouble has no cblas_
# xq / qx == x
# sc / cs == c
# zd / dz is the same as z
@@ -251,7 +252,7 @@ precision_mappings = {
_inc = include_directories('.')
# subdir('lapack-netlib')
subdir('interface')
# subdir('kernel')
subdir('kernel')

# _openblas = static_library('openblas',
# link_whole: [ _interface, _kern])

Loading…
Cancel
Save