diff options
| author | shanshanpt <dev.pengtao@gmail.com> | 2019-12-09 12:43:39 -0800 |
|---|---|---|
| committer | A. Unique TensorFlower <gardener@tensorflow.org> | 2019-12-09 12:45:20 -0800 |
| commit | 56da74476c48cfb6af1eb32ad191c3463a7e10e3 (patch) | |
| tree | 78aa275ab79bf93a6e62be91318f72c80f35c114 /mlir | |
| parent | 34265dad65122f4520bd62685c56d8d5f79f3430 (diff) | |
| download | bcm5719-llvm-56da74476c48cfb6af1eb32ad191c3463a7e10e3.tar.gz bcm5719-llvm-56da74476c48cfb6af1eb32ad191c3463a7e10e3.zip | |
Fix minor spelling tweaks.
Closes tensorflow/mlir#306
COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/mlir/pull/306 from shanshanpt:master 11430c2131281d84a432f45e854e29917b336e8d
PiperOrigin-RevId: 284613648
Diffstat (limited to 'mlir')
| -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. |

