Fix typo in VectorOps.td

PiperOrigin-RevId: 275025323
Change-Id: I2f396fca296e5a273dfec9676ff24b19c5078fe3
This commit is contained in:
Nicolas Vasilache 2019-10-16 07:14:06 -07:00 committed by TensorFlower Gardener
parent 1f84bd0d3b
commit 77b175ecad

View File

@ -85,10 +85,10 @@ def OuterProductOp :
Examples Examples
%2 = vector.extractelement %0, %1: vector<4xf32>, vector<8xf32> %2 = vector.outerproduct %0, %1: vector<4xf32>, vector<8xf32>
return %2: vector<4x8xf32> return %2: vector<4x8xf32>
%3 = vector.extractelement %0, %1, %2: %3 = vector.outerproduct %0, %1, %2:
vector<4xf32>, vector<8xf32>, vector<4x8xf32> vector<4xf32>, vector<8xf32>, vector<4x8xf32>
return %3: vector<4x8xf32> return %3: vector<4x8xf32>
}]; }];