Skip to content

Commit a2aace5

Browse files
committed
Update liblapack.jl
1 parent c081ccc commit a2aace5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/liblapack.jl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
# cgedmd, cgedmdq, clartg, classq
55
# zgedmd, zgedmdq, zlartg, zlassq
66

7+
function ilaver(major, minor, patch)
8+
return ccall((@blasfunc(ilaver_), libblastrampoline), Cvoid,
9+
(Ptr{BlasInt}, Ptr{BlasInt}, Ptr{BlasInt}),
10+
major, minor, patch)
11+
end
12+
713
function cbbcsd(jobu1, jobu2, jobv1t, jobv2t, trans, m, p, q, theta, phi, u1, ldu1, u2,
814
ldu2, v1t, ldv1t, v2t, ldv2t, b11d, b11e, b12d, b12e, b21d, b21e, b22d,
915
b22e, rwork, lrwork, info)
@@ -7794,7 +7800,7 @@ function ilaclr(m, n, a, lda)
77947800
end
77957801

77967802
function iladiag(diag)
7797-
return ccall((@blasfunc(iladiag_), libblastrampoline), BlasInt, (Ref{UInt8}), diag)
7803+
return ccall((@blasfunc(iladiag_), libblastrampoline), BlasInt, (Ref{UInt8},), diag)
77987804
end
77997805

78007806
function iladlc(m, n, a, lda)

0 commit comments

Comments
 (0)