forked from OSchip/llvm-project
Fix typo (transpose -> reshape).
-- PiperOrigin-RevId: 244270801
This commit is contained in:
parent
75be1fe82b
commit
7977e62b96
|
@ -255,7 +255,7 @@ public:
|
|||
/// Reshape operation is transforming its input array into a new array with the
|
||||
/// same number of elements but different shapes. For example:
|
||||
///
|
||||
/// %0 = "toy.transpose"(%arg1) : (!toy.array<10>) -> !toy.array<5, 2>
|
||||
/// %0 = "toy.reshape"(%arg1) : (!toy.array<10>) -> !toy.array<5, 2>
|
||||
///
|
||||
class ReshapeOp : public mlir::Op<ReshapeOp, mlir::OpTrait::OneOperand,
|
||||
mlir::OpTrait::OneResult> {
|
||||
|
|
|
@ -261,7 +261,7 @@ public:
|
|||
/// Reshape operation is transforming its input array into a new array with the
|
||||
/// same number of elements but different shapes. For example:
|
||||
///
|
||||
/// %0 = "toy.transpose"(%arg1) : (!toy.array<10>) -> !toy.array<5, 2>
|
||||
/// %0 = "toy.reshape"(%arg1) : (!toy.array<10>) -> !toy.array<5, 2>
|
||||
///
|
||||
class ReshapeOp : public mlir::Op<ReshapeOp, mlir::OpTrait::OneOperand,
|
||||
mlir::OpTrait::OneResult,
|
||||
|
|
Loading…
Reference in New Issue