diff options
| -rw-r--r-- | mlir/examples/toy/Ch2/include/toy/Ops.td | 2 | ||||
| -rw-r--r-- | mlir/examples/toy/Ch3/include/toy/Ops.td | 2 | ||||
| -rw-r--r-- | mlir/examples/toy/Ch4/include/toy/Ops.td | 2 | ||||
| -rw-r--r-- | mlir/examples/toy/Ch5/include/toy/Ops.td | 2 | ||||
| -rw-r--r-- | mlir/examples/toy/Ch6/include/toy/Ops.td | 2 | ||||
| -rw-r--r-- | mlir/examples/toy/Ch7/include/toy/Ops.td | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/mlir/examples/toy/Ch2/include/toy/Ops.td b/mlir/examples/toy/Ch2/include/toy/Ops.td index f6e34d0e845..f7c011915ff 100644 --- a/mlir/examples/toy/Ch2/include/toy/Ops.td +++ b/mlir/examples/toy/Ch2/include/toy/Ops.td @@ -43,7 +43,7 @@ class Toy_Op<string mnemonic, list<OpTrait> traits = []> : // Toy Operations //===----------------------------------------------------------------------===// -// We define a toy operation by inherting from our base 'Toy_Op' class above. +// We define a toy operation by inheriting from our base 'Toy_Op' class above. // Here we provide the mnemonic and a list of traits for the operation. The // constant operation is marked as 'NoSideEffect' as it is a pure operation // and may be removed if dead. diff --git a/mlir/examples/toy/Ch3/include/toy/Ops.td b/mlir/examples/toy/Ch3/include/toy/Ops.td index e64bc5d52fc..921e503e416 100644 --- a/mlir/examples/toy/Ch3/include/toy/Ops.td +++ b/mlir/examples/toy/Ch3/include/toy/Ops.td @@ -43,7 +43,7 @@ class Toy_Op<string mnemonic, list<OpTrait> traits = []> : // Toy Operations //===----------------------------------------------------------------------===// -// We define a toy operation by inherting from our base 'Toy_Op' class above. +// We define a toy operation by inheriting from our base 'Toy_Op' class above. // Here we provide the mnemonic and a list of traits for the operation. The // constant operation is marked as 'NoSideEffect' as it is a pure operation // and may be removed if dead. diff --git a/mlir/examples/toy/Ch4/include/toy/Ops.td b/mlir/examples/toy/Ch4/include/toy/Ops.td index 8cfbe90fc30..aec1cc3cfc9 100644 --- a/mlir/examples/toy/Ch4/include/toy/Ops.td +++ b/mlir/examples/toy/Ch4/include/toy/Ops.td @@ -44,7 +44,7 @@ class Toy_Op<string mnemonic, list<OpTrait> traits = []> : // Toy Operations //===----------------------------------------------------------------------===// -// We define a toy operation by inherting from our base 'Toy_Op' class above. +// We define a toy operation by inheriting from our base 'Toy_Op' class above. // Here we provide the mnemonic and a list of traits for the operation. The // constant operation is marked as 'NoSideEffect' as it is a pure operation // and may be removed if dead. diff --git a/mlir/examples/toy/Ch5/include/toy/Ops.td b/mlir/examples/toy/Ch5/include/toy/Ops.td index 4e6ce18ff29..e40b661fd34 100644 --- a/mlir/examples/toy/Ch5/include/toy/Ops.td +++ b/mlir/examples/toy/Ch5/include/toy/Ops.td @@ -44,7 +44,7 @@ class Toy_Op<string mnemonic, list<OpTrait> traits = []> : // Toy Operations //===----------------------------------------------------------------------===// -// We define a toy operation by inherting from our base 'Toy_Op' class above. +// We define a toy operation by inheriting from our base 'Toy_Op' class above. // Here we provide the mnemonic and a list of traits for the operation. The // constant operation is marked as 'NoSideEffect' as it is a pure operation // and may be removed if dead. diff --git a/mlir/examples/toy/Ch6/include/toy/Ops.td b/mlir/examples/toy/Ch6/include/toy/Ops.td index 4e6ce18ff29..e40b661fd34 100644 --- a/mlir/examples/toy/Ch6/include/toy/Ops.td +++ b/mlir/examples/toy/Ch6/include/toy/Ops.td @@ -44,7 +44,7 @@ class Toy_Op<string mnemonic, list<OpTrait> traits = []> : // Toy Operations //===----------------------------------------------------------------------===// -// We define a toy operation by inherting from our base 'Toy_Op' class above. +// We define a toy operation by inheriting from our base 'Toy_Op' class above. // Here we provide the mnemonic and a list of traits for the operation. The // constant operation is marked as 'NoSideEffect' as it is a pure operation // and may be removed if dead. diff --git a/mlir/examples/toy/Ch7/include/toy/Ops.td b/mlir/examples/toy/Ch7/include/toy/Ops.td index aab8c2603b2..0d48f74e9fe 100644 --- a/mlir/examples/toy/Ch7/include/toy/Ops.td +++ b/mlir/examples/toy/Ch7/include/toy/Ops.td @@ -52,7 +52,7 @@ def Toy_Type : AnyTypeOf<[F64Tensor, Toy_StructType]>; // Toy Operations //===----------------------------------------------------------------------===// -// We define a toy operation by inherting from our base 'Toy_Op' class above. +// We define a toy operation by inheriting from our base 'Toy_Op' class above. // Here we provide the mnemonic and a list of traits for the operation. The // constant operation is marked as 'NoSideEffect' as it is a pure operation // and may be removed if dead. |

