-
Notifications
You must be signed in to change notification settings - Fork 5
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
Different name for partial-update functions? #2
Comments
I guess I could re-name to The reason for their existence is that hierarchical matrices are defined block-wise and so for a Julia implementation to be on par with C or Fortran, I needed methods that implement (BLAS'ed) arithmetic on input vectors that don't start at the first index, and output to vectors that don't start at the first index either. |
_partial ? you might be incurring a bit of splatting penalty with the local fallback to the base methods |
bit of splatting penalty with the local fallback to the base methods Can you explain this a little more slowly? Do you mean that there may be an extra latency due to finding the right methods in Base's already large hash table for |
splatting can have a non negligible performance cost in some situations, so
might not be zero cost, depending on whether or not the compiler is happy with you. |
The signatures of
A_mul_B!
andscale!
and similar here that take start indices that don't match the signatures used by those functions in base don't really need to use the same name here, do they? It might be clearer to distinguish them by more than just the number of inputs, since Base is never going to lower to or call these signatures.The text was updated successfully, but these errors were encountered: