Skip to content

Commit

Permalink
Add the prefix LinearAlgebra.
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Dec 7, 2023
1 parent d4a021c commit 0fd4800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/host/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ end
## copy a triangular part of a matrix to another matrix

if isdefined(LinearAlgebra, :copytrito!)
function copytrito!(B::AbstractGPUMatrix, A::AbstractGPUMatrix, uplo::AbstractChar)
function LinearAlgebra.copytrito!(B::AbstractGPUMatrix, A::AbstractGPUMatrix, uplo::AbstractChar)
LinearAlgebra.BLAS.chkuplo(uplo)
m,n = size(A)
m1,n1 = size(B)
Expand Down

0 comments on commit 0fd4800

Please sign in to comment.