Skip to content

Commit

Permalink
Update src/appleaccelerate.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Elliot Saba <staticfloat@gmail.com>
  • Loading branch information
ChrisRackauckas and staticfloat authored Aug 7, 2023
1 parent 6e9bdfa commit 2ea5488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appleaccelerate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function aa_getrf!(A::AbstractMatrix{<:Float64}; ipiv = similar(A, BlasInt, min(
chkstride1(A)
m, n = size(A)
lda = max(1,stride(A, 2))
ccall(("dgemm\$NEWLAPACK\$ILP64", libacc), Cvoid,
ccall(("dgetrf\$NEWLAPACK\$ILP64", libacc), Cvoid,

Check warning on line 33 in src/appleaccelerate.jl

View check run for this annotation

Codecov / codecov/patch

src/appleaccelerate.jl#L27-L33

Added lines #L27 - L33 were not covered by tests
(Ref{BlasInt}, Ref{BlasInt}, Ptr{Float64},
Ref{BlasInt}, Ptr{BlasInt}, Ptr{BlasInt}),
m, n, A, lda, ipiv, info)
Expand Down

0 comments on commit 2ea5488

Please sign in to comment.