Fix typo in the documentation for tensor_cast (NFC)

PiperOrigin-RevId: 267650411
This commit is contained in:
Mehdi Amini 2019-09-06 12:30:06 -07:00 committed by A. Unique TensorFlower
parent b78410fd81
commit 06398f32f6
1 changed files with 1 additions and 1 deletions

View File

@ -881,7 +881,7 @@ def TensorCastOp : CastOp<"tensor_cast"> {
operation is invalid if converting to a mismatching constant dimension.
Convert from unknown rank to rank 2 with unknown dimension sizes.
%2 = tensor_cast %1 : tensor<??f32> to tensor<?x?xf32>
%2 = tensor_cast %1 : tensor<*xf32> to tensor<?x?xf32>
}];
let arguments = (ins AnyTensor);