Skip to content

Commit 9531fc0

Browse files
committed
Fix an error in support.toml
1 parent 460e85f commit 9531fc0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

res/support.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,8 +523,8 @@ use_ccall_macro = true
523523

524524
[api.onemklCgesvd.argtypes]
525525
6 = "ZePtr{ComplexF32}"
526-
8 = "ZePtr{ComplexF32}"
527-
9 = "ZePtr{Float32}"
526+
8 = "ZePtr{Float32}"
527+
9 = "ZePtr{ComplexF32}"
528528
11 = "ZePtr{ComplexF32}"
529529
13 = "ZePtr{ComplexF32}"
530530

test/onemkl.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1169,7 +1169,8 @@ end
11691169
for (uplo, diag, wrapper) in [('L', 'N', LowerTriangular), ('L', 'U', UnitLowerTriangular),
11701170
('U', 'N', UpperTriangular), ('U', 'U', UnitUpperTriangular)]
11711171
(transa == 'N') || continue
1172-
A = rand(T, 10, 10) |> sparse
1172+
A = rand(T, 10, 10) + I
1173+
A = sparse(A)
11731174
x = rand(T, 10)
11741175
y = rand(T, 10)
11751176

0 commit comments

Comments
 (0)