MAINT,BLD: Add a note for later

Generate less non-standard cblas_ symbols
This commit is contained in:
Rohit Goswami 2024-04-18 14:26:39 +00:00 committed by Mateusz Sokół
parent ea55287038
commit 36c53a6841
1 changed files with 5 additions and 0 deletions

View File

@ -407,6 +407,11 @@ foreach conf : _blas_roots
# If it's a CBLAS symbol, also create that # If it's a CBLAS symbol, also create that
if conf.get('cblas', false) if conf.get('cblas', false)
if 'q' in type
# There are no cblas_q symbols
# TODO: Handle edge cases around dz zd sc
continue
endif
cblas_lib = static_library( cblas_lib = static_library(
cblas_sym_name, cblas_sym_name,
sources: conf['fname'], sources: conf['fname'],