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"