Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
christiangnrd committed Mar 5, 2025
1 parent 5b94c4f commit acac43f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions src/lowprecarrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ import LinearAlgebra: generic_matmatmul!
function generic_matmatmul!(C::AbstractMatrix{Float32}, ta, tb,
A::Union{LowPrecArray, AbstractMatrix{BFloat16}},
B::Union{LowPrecArray, AbstractMatrix{BFloat16}})
@info "hello"
generic_matmatmul!(C, ta, tb,
MatMulView(A), MatMulView(B))
end
Expand All @@ -47,6 +46,5 @@ end
function LinearAlgebra.BLAS.gemv!(trans::AbstractChar, alpha::Float32,
A::AbstractVecOrMat{Float32}, X::AbstractVector{Float32},
beta::Float32, Y::LowPrecArray)
@info "hello"
LinearAlgebra.BLAS.gemv!(trans, alpha, A, X, beta, Y.storage)
end
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -243,5 +243,6 @@ end

include("structure.jl")
include("mathfuncs.jl")
include("lowprecarrays.jl")

end # @testset "BFloat16s"

0 comments on commit acac43f

Please sign in to comment.