Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mlir/docs/Tools/mlir-reduce.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ results and different time complexity. You can run as
As mentioned, you need to provide a command to `mlir-reduce` which identifies
cases you're interested in. For each intermediate output generated during
reduction, `mlir-reduce` will run the command over the it, the script should
returns 1 for interesting case, 0 otherwise. The sample script,
returns 0 for an interesting case, 1 otherwise. The sample script,
Copy link
Collaborator

@joker-eph joker-eph Jun 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't quite get the change, can you elaborate? The existing sentence seems correct with respect to the code sample below.


```shell
mlir-opt -convert-vector-to-spirv $1 | grep "failed to materialize"
Expand Down
Loading