Skip to content

Commit 480ab13

Browse files
authored
Merge pull request #20 from potocpav/master
Fix the dsbevx signature: Q is an array
2 parents 27fb0e9 + 558ff4e commit 480ab13

File tree

2 files changed

+143
-141
lines changed

2 files changed

+143
-141
lines changed

bin/generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def is_scalar(name, cty, f):
4040
"n_err_bnds",
4141
"nb",
4242
"nrhs",
43-
"q",
4443
"rank",
4544
"rcond",
4645
"rowcnd",
@@ -49,6 +48,7 @@ def is_scalar(name, cty, f):
4948
"tryrac",
5049
"vu",
5150
] or
51+
name == "q" and 'lapack_int' in cty or
5252
not (
5353
'geev' in f.name or
5454
'tgsna' in f.name or

0 commit comments

Comments
 (0)