Skip to content

Commit

Permalink
Fix an error in support.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Mar 31, 2024
1 parent 460e85f commit 9531fc0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions res/support.toml
Original file line number Diff line number Diff line change
Expand Up @@ -523,8 +523,8 @@ use_ccall_macro = true

[api.onemklCgesvd.argtypes]
6 = "ZePtr{ComplexF32}"
8 = "ZePtr{ComplexF32}"
9 = "ZePtr{Float32}"
8 = "ZePtr{Float32}"
9 = "ZePtr{ComplexF32}"
11 = "ZePtr{ComplexF32}"
13 = "ZePtr{ComplexF32}"

Expand Down
3 changes: 2 additions & 1 deletion test/onemkl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,8 @@ end
for (uplo, diag, wrapper) in [('L', 'N', LowerTriangular), ('L', 'U', UnitLowerTriangular),
('U', 'N', UpperTriangular), ('U', 'U', UnitUpperTriangular)]
(transa == 'N') || continue
A = rand(T, 10, 10) |> sparse
A = rand(T, 10, 10) + I
A = sparse(A)
x = rand(T, 10)
y = rand(T, 10)

Expand Down

0 comments on commit 9531fc0

Please sign in to comment.