-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
reduce allocation in a few linalg functions while removing full calls #24137
Conversation
What about having a generic function for this operation? |
As in the present Foremost I wanted to ponder Next I was curious how frequently So given the above I favor your proposition, i.e. I lean towards extending In any case playing with Thoughts? Thanks! :) |
43ce5a5
to
c81411a
Compare
18dc3e8
to
30879bd
Compare
Rebased and extended to the |
|
(The CI failure should be fixed. Thanks |
Thanks all! |
This pull request reduces allocation in a few linalg functions by replacing (allocating)
full
calls with (non-allocating) alternatives. Serves as another small step towards deprecation offull
. Ref. JuliaLang/LinearAlgebra.jl#229, JuliaLang/LinearAlgebra.jl#231, #18850, and linked threads. Best!