[Mlir-commits] [mlir] [mlir][docs] Rename fusion option name in MlirOpt tutorial (PR #184635)
Romain Paquet
llvmlistbot at llvm.org
Wed Mar 4 07:40:54 PST 2026
https://github.com/rpqt created https://github.com/llvm/llvm-project/pull/184635
Options have been renamed in #128405
>From 9395e371494c7d87738fdb34c96aa91c3ee8f30d Mon Sep 17 00:00:00 2001
From: Romain Paquet <rpqt at rpqt.fr>
Date: Wed, 4 Mar 2026 16:30:20 +0100
Subject: [PATCH] [mlir][docs] Rename fusion option name in MlirOpt tutorial
Options have been renamed in #128405
---
mlir/docs/Tutorials/MlirOpt.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mlir/docs/Tutorials/MlirOpt.md b/mlir/docs/Tutorials/MlirOpt.md
index e787f348bd228..83d08078bce48 100644
--- a/mlir/docs/Tutorials/MlirOpt.md
+++ b/mlir/docs/Tutorials/MlirOpt.md
@@ -131,13 +131,13 @@ module {
```
This pass has options that allow the user to configure its behavior.
-For example, the `fusion-compute-tolerance` option
+For example, the `compute-tolerance` option
is described as the "fractional increase in additional computation tolerated while fusing."
If this value is set to zero on the command line,
the pass will not fuse the loops.
```bash
-build/bin/mlir-opt --pass-pipeline="builtin.module(affine-loop-fusion{fusion-compute-tolerance=0})" \
+build/bin/mlir-opt --pass-pipeline="builtin.module(affine-loop-fusion{compute-tolerance=0})" \
mlir/test/Examples/mlir-opt/loop_fusion.mlir
```
More information about the Mlir-commits
mailing list