[Mlir-commits] [mlir] 9a47900 - [MLIR][SCF] Fix comment in `TestTilingInterface.cpp` (NFC)

Lorenzo Chelini llvmlistbot at llvm.org
Tue Jan 17 09:50:20 PST 2023


Author: Lorenzo Chelini
Date: 2023-01-17T18:50:11+01:00
New Revision: 9a479008d466bbab885e4f7be03a50a1ee547dba

URL: https://github.com/llvm/llvm-project/commit/9a479008d466bbab885e4f7be03a50a1ee547dba
DIFF: https://github.com/llvm/llvm-project/commit/9a479008d466bbab885e4f7be03a50a1ee547dba.diff

LOG: [MLIR][SCF] Fix comment in `TestTilingInterface.cpp` (NFC)

The method is called `tileConsumerAndFuseProducerGreedilyUsingSCFForOp`
and not `tileAndFuseGreedilyUsingSCFForOp`.

Added: 
    

Modified: 
    mlir/test/lib/Interfaces/TilingInterface/TestTilingInterface.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/test/lib/Interfaces/TilingInterface/TestTilingInterface.cpp b/mlir/test/lib/Interfaces/TilingInterface/TestTilingInterface.cpp
index 97fd634ff0836..0fc091368ff1e 100644
--- a/mlir/test/lib/Interfaces/TilingInterface/TestTilingInterface.cpp
+++ b/mlir/test/lib/Interfaces/TilingInterface/TestTilingInterface.cpp
@@ -273,8 +273,8 @@ struct TestTileConsumerFuseAndYieldProducerUsingSCFForOp
     };
 
     // The rest of this method is similar to
-    // scf::tileAndFuseGreedilyUsingSCFForOp, except that also yields
-    // replacements for values of the fused producer.
+    // scf::tileConsumerAndFuseProducerGreedilyUsingSCFForOp, except that also
+    // yields replacements for values of the fused producer.
 
     // 1. Tile the consumer.
     SmallVector<OpResult> yieldedValuesToOrigValues;


        


More information about the Mlir-commits mailing list