From e1c672ee4281596e7592259521f6aacc77307a2f Mon Sep 17 00:00:00 2001 From: Katharine Hyatt Date: Thu, 20 Aug 2026 11:16:52 -0400 Subject: [PATCH] Tighten signatures to avoid method ambiguitity with CUBLAS --- src/host/linalg.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host/linalg.jl b/src/host/linalg.jl index 63bac9dd..d442a482 100644 --- a/src/host/linalg.jl +++ b/src/host/linalg.jl @@ -969,7 +969,7 @@ end function LinearAlgebra.generic_mattrimul!(C::AbstractGPUMatrix, uploc, isunitc, tfun::Function, A::AbstractGPUMatrix, B::AbstractGPUMatrix) generic_mattrimul!(C, uploc, isunitc, tfun, A, B) end -function LinearAlgebra.generic_trimatdiv!(C::AbstractGPUVecOrMat, uploc, isunitc, tfun::Function, A::AbstractGPUMatrix, B::AbstractGPUVecOrMat) +function LinearAlgebra.generic_trimatdiv!(C::AnyStridedGPUMatrix, uploc, isunitc, tfun::Function, A::AnyStridedGPUMatrix, B::AbstractMatrix) generic_trimatdiv!(C, uploc, isunitc, tfun, A, B) end function LinearAlgebra.generic_mattridiv!(C::AbstractGPUMatrix, uploc, isunitc, tfun::Function, A::AbstractGPUMatrix, B::AbstractGPUMatrix)