-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add three workflows #37
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportBase: 99.06% // Head: 99.13% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #37 +/- ##
==========================================
+ Coverage 99.06% 99.13% +0.06%
==========================================
Files 6 6
Lines 214 231 +17
==========================================
+ Hits 212 229 +17
Misses 2 2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
@paraynaud You have a lot of ambiguities ( |
I saw ambiguities, but not the invalidations, where should I look?
I redefine many Base, LinearAlgebra and Krylov methods, so nothing unexpected ;) What is the result of these workflows on other modules? (or PartitionedVectors.jl is the first one?) PS: For your information, I will soon release [email protected], it improves a lot the performances. |
The workflow
Do you redefine them or extend them for your type?
The About the invalidations, Krylov.jl I has 0 invalidation, DCISolver.jl has 15 invalidations and your package 532.
Good news! But you will have other improvements if you track and fix some of these invalidations. |
Thanks for the explanation.
For import LinearAlgebra.dot
dot(pv1::PartitionedVector{T}, pv2::PartitionedVector{T}) where {T}
some_stuff(pv1,pv2)
end I think that extends the number of I will try to fix ambiguities and invalidations before [email protected], I opened an issue. |
No description provided.