forked from OSchip/llvm-project
Fix typo in the documentation for tensor_cast (NFC)
PiperOrigin-RevId: 267650411
This commit is contained in:
parent
b78410fd81
commit
06398f32f6
|
@ -881,7 +881,7 @@ def TensorCastOp : CastOp<"tensor_cast"> {
|
||||||
operation is invalid if converting to a mismatching constant dimension.
|
operation is invalid if converting to a mismatching constant dimension.
|
||||||
|
|
||||||
Convert from unknown rank to rank 2 with unknown dimension sizes.
|
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);
|
let arguments = (ins AnyTensor);
|
||||||
|
|
Loading…
Reference in New Issue