From 9bf5cf26046823f88e3edd76f56078ceefa00ece Mon Sep 17 00:00:00 2001 From: Rohit Goswami Date: Sat, 20 Apr 2024 18:02:56 +0000 Subject: [PATCH] DOC: Fix types, add note --- meson.build | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 82b894c73..bfea9218a 100644 --- a/meson.build +++ b/meson.build @@ -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])