Fix typo in VectorOps.td
authorNicolas Vasilache <ntv@google.com>
Wed, 16 Oct 2019 14:14:06 +0000 (07:14 -0700)
committerA. Unique TensorFlower <gardener@tensorflow.org>
Wed, 16 Oct 2019 14:14:37 +0000 (07:14 -0700)
PiperOrigin-RevId: 275025323

mlir/include/mlir/Dialect/VectorOps/VectorOps.td

index 6b5f74d..f63660d 100644 (file)
@@ -85,10 +85,10 @@ def OuterProductOp :
 
     Examples
 
-      %2 = vector.extractelement %0, %1: vector<4xf32>, vector<8xf32>
+      %2 = vector.outerproduct %0, %1: vector<4xf32>, vector<8xf32>
       return %2: vector<4x8xf32>
 
-      %3 = vector.extractelement %0, %1, %2:
+      %3 = vector.outerproduct %0, %1, %2:
         vector<4xf32>, vector<8xf32>, vector<4x8xf32>
       return %3: vector<4x8xf32>
   }];