-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
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
Performance regression in invquad
#99
Comments
|
Not for the duals though. It seems that conversion happens for the generic fallback. |
In https://github.com/JuliaLang/julia/blob/df9210ebfb6d04832a2cbf1f44357c959a0b3457/stdlib/LinearAlgebra/src/triangular.jl#L1881, copying happens. I suppose this is necessary for BLAS calls, but when the |
It seems that copying here can be completely avoided since dispatch happens on |
Hi,
It seems that the
invquad
function is significantly slower on themaster
branch compared to the latest releasev0.9.7
.This slowdown is because the implementation of
invquad
for vectors went from:to
The text was updated successfully, but these errors were encountered: