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
let summary = "Linear-algebraic multiply of matrix X vector.";
119
+
120
+
let description = [{
121
+
Result Type must be a vector of floating-point type.
122
+
123
+
Matrix must be an OpTypeMatrix whose Column Type is Result Type.
124
+
125
+
Vector must be a vector with the same Component Type as the Component Type in Result Type. Its number of components must equal the number of columns in Matrix.
126
+
127
+
#### Example:
128
+
129
+
```mlir
130
+
%0 = spirv.MatrixTimesVector %matrix, %vector :
131
+
!spirv.matrix<3 x vector<2xf32>>, vector<3xf32> -> vector<2xf32>
0 commit comments