[Mlir-commits] [mlir] 2f7707d - [mlir][toy][docs] Reword for better sentence flow. NFC
Jonathan Roelofs
llvmlistbot at llvm.org
Sat Apr 11 08:12:15 PDT 2020
Author: Jonathan Roelofs
Date: 2020-04-11T09:11:34-06:00
New Revision: 2f7707db025547737314f60f937d885629b13bc5
URL: https://github.com/llvm/llvm-project/commit/2f7707db025547737314f60f937d885629b13bc5
DIFF: https://github.com/llvm/llvm-project/commit/2f7707db025547737314f60f937d885629b13bc5.diff
LOG: [mlir][toy][docs] Reword for better sentence flow. NFC
Added:
Modified:
mlir/docs/Tutorials/Toy/Ch-5.md
Removed:
################################################################################
diff --git a/mlir/docs/Tutorials/Toy/Ch-5.md b/mlir/docs/Tutorials/Toy/Ch-5.md
index 8f32a7289a61..fd0341a26ea5 100644
--- a/mlir/docs/Tutorials/Toy/Ch-5.md
+++ b/mlir/docs/Tutorials/Toy/Ch-5.md
@@ -13,8 +13,8 @@ transformations: `Affine`. This dialect is tailored to the computation-heavy
part of the program and is limited: it doesn't support representing our
`toy.print` builtin, for instance, neither should it! Instead, we can target
`Affine` for the computation heavy part of Toy, and in the
-[next chapter](Ch-6.md) directly the `LLVM IR` dialect for lowering `print`. As
-part of this lowering, we will be lowering from the
+[next chapter](Ch-6.md) directly target the `LLVM IR` dialect for lowering
+`print`. As part of this lowering, we will be lowering from the
[TensorType](../../LangRef.md#tensor-type) that `Toy` operates on to the
[MemRefType](../../LangRef.md#memref-type) that is indexed via an affine
loop-nest. Tensors represent an abstract value-typed sequence of data, meaning
More information about the Mlir-commits
mailing list