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
Vector dialect have options VectorTransformOptions to control the lowering of different vector ops(vector.contract, vector.multi_reduction, vector.transpose, etc.).
For example, a vector.contract representing a m-n-k matrix mutiply can be lowered to either a naive loop implementation, or to vector.matmul (finally to llvm.matrix.multiply), or to vector.outerproduct.
It may be worthwhile to explore these lowering options to obtain better performance.
The text was updated successfully, but these errors were encountered:
Vector dialect have options VectorTransformOptions to control the lowering of different vector ops(vector.contract, vector.multi_reduction, vector.transpose, etc.).
For example, a vector.contract representing a m-n-k matrix mutiply can be lowered to either a naive loop implementation, or to vector.matmul (finally to llvm.matrix.multiply), or to vector.outerproduct.
It may be worthwhile to explore these lowering options to obtain better performance.
The text was updated successfully, but these errors were encountered: