Skip to content

Ambiguity errors from new matrix multiplication methods in LinearAlgebra #16

@andreasnoack

Description

@andreasnoack

The methods in

function mul!(C::Vector{Float64}, A::Matrix{Float64}, B::Vector{Float64}, α::Number, β::Number)
gemm!('N', 'N', convert(Float64, α), A, B, convert(Float64, β), C)
end
function mul!(C::Vector{Float64}, A::Adjoint{Float64, Matrix{Float64}}, B::Vector{Float64}, α::Number, β::Number)
gemm!('C', 'N', convert(Float64, α), A', B, convert(Float64, β), C)
end
need to be behind a conditions similarly to https://github.com/JuliaLinearAlgebra/GenericLinearAlgebra.jl/blob/1ac7a0f83121849efd76715ee85a115047d6468d/src/juliaBLAS.jl#L87 to avoid breakage in the upcoming Julia version 1.3.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions