RFC: consider adding the specialized methods for missing matrix products #877
Labels
RFC
Request for comments. Feature requests and proposed changes.
topic: Linear Algebra
Linear algebra.
Background
The
matmul
function. combines seven cases of matrix products in one function. These seven cases can be cleanly organized as examples of four possibly-vectorized operations:vector_dot
covers this perfectly)Unfortunately, the decomposition isn't clean and the last two have operations have missing vectorization cases. For example,
These would subsume cases 3 and 4.
Proposal
Consider adding
matrix_vector_mul
andvector_matrix_mul
?The text was updated successfully, but these errors were encountered: