You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was thinking maybe we might want an assume_a property on dot? It could be hidden from the user and only used in rewrites, or maybe not. I had mentioned the possibility of something similar for lu_factor to @ricardoV94, since there are many specialized algorithms for that as well that can be useful for certain types of graphs.
The only wrinkle is that this would break API parity with numpy/scipy
We should benchmark to see if it indeed buys us anything for regular use cases. Sometimes the general functions still bit the specialized just because they have been tuned way more.
The idea being that calling assume_a provides a hint about the type of input we have. Rewrites should be able to exploit this information regardless of where it originated. If an input is marked as symmetric for dot it should also be considered symmetric for a solve, even if the solve was called with the default assume_a="general".
This way the user can also wrap their inputs with an Hint without having to worry about assume_a. This of course goes in hand with machinery to propagate types over Ops.
I would probably call it specify_type instead of hint, and be precise about what are the possible hints available.
Summary: symmetrical stuff seems like it's not worth it. Triangular matrix-vector shows speedup for big matrices, but not for small matrices. Triangular matrix-matrix is a ~2x speedup. Tridiagonal matrix-vector is a huge speedup, we should definitely do that one.
Description
BLAS/LAPACK offer a number of specialized dot products when matrices have special structure:
We can implement these as non-user facing ops, and rewrite into them when we can infer the special structure of matrices in a dot Op.
The text was updated successfully, but these errors were encountered: