We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Writing X'*y can lead to performance warnings. Looks like it's using the generic fallback.
X'*y
julia> m = Model(); julia> @defVar(m, X[1:3,1:3]); julia> @defVar(m, y[1:3]); julia> @which X*y *[...] at /home/mlubin/.julia/v0.4/JuMP/src/operators.jl:390 julia> @which X'*y Ac_mul_B{T,S}(A::Union{DenseArray{T,2},SubArray{T,2,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}, x::Union{DenseArray{S,1},SubArray{S,1,A<:DenseArray{T,N},I<:Tuple{Vararg{Union{Colon,Int64,Range{Int64}}}},LD}}) at linalg/matmul.jl:119
The text was updated successfully, but these errors were encountered:
I really didn't want to get in the business of overloading A_mul_B and friends, but maybe it's inevitable.
A_mul_B
Sorry, something went wrong.
There are likely still performance issues in the overloads, but this is stale because all of the linear algebra has been rewritten.
No branches or pull requests
Writing
X'*y
can lead to performance warnings. Looks like it's using the generic fallback.The text was updated successfully, but these errors were encountered: