From acac43fa69043da71a4e7546a933832faef64072 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Wed, 5 Mar 2025 19:57:41 -0400 Subject: [PATCH] Fix --- src/lowprecarrays.jl | 2 -- test/runtests.jl | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lowprecarrays.jl b/src/lowprecarrays.jl index f376cd5..833f4c9 100644 --- a/src/lowprecarrays.jl +++ b/src/lowprecarrays.jl @@ -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 @@ -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 diff --git a/test/runtests.jl b/test/runtests.jl index 6579f5a..a97e714 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -243,5 +243,6 @@ end include("structure.jl") include("mathfuncs.jl") +include("lowprecarrays.jl") end # @testset "BFloat16s"