From e5fbcec465c71017c44d1792cfb20b54dddf5879 Mon Sep 17 00:00:00 2001 From: River Riddle Date: Mon, 22 Jul 2019 11:28:04 -0700 Subject: [PATCH] NFC: Update usage of multi-threading flags. The multi-threading flags have changed as the feature is on by default and not experimental. PiperOrigin-RevId: 259369313 --- mlir/g3doc/WritingAPass.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mlir/g3doc/WritingAPass.md b/mlir/g3doc/WritingAPass.md index 1237c5641bba..3ce12abe9708 100644 --- a/mlir/g3doc/WritingAPass.md +++ b/mlir/g3doc/WritingAPass.md @@ -417,7 +417,7 @@ pipeline. This display mode is available in mlir-opt via `-pass-timing-display=list`. ```shell -$ mlir-opt foo.mlir -cse -canonicalize -lower-to-llvm -pass-timing -pass-timing-display=list +$ mlir-opt foo.mlir -disable-pass-threading -cse -canonicalize -lower-to-llvm -pass-timing -pass-timing-display=list ===-------------------------------------------------------------------------=== ... Pass execution timing report ... @@ -443,7 +443,7 @@ the most time, and can also be used to identify when analyses are being invalidated and recomputed. This is the default display mode. ```shell -$ mlir-opt foo.mlir -cse -canonicalize -lower-to-llvm -pass-timing +$ mlir-opt foo.mlir -disable-pass-threading -cse -canonicalize -lower-to-llvm -pass-timing ===-------------------------------------------------------------------------=== ... Pass execution timing report ... @@ -474,7 +474,7 @@ perceived time, or clock time, whereas the `User Time` will display the total cpu time. ```shell -$ mlir-opt foo.mlir -experimental-mt-pm -cse -canonicalize -lower-to-llvm -pass-timing +$ mlir-opt foo.mlir -cse -canonicalize -lower-to-llvm -pass-timing ===-------------------------------------------------------------------------=== ... Pass execution timing report ...