[MLIR] Rename FusePadOpWithLinalgConsumer -> FusePadOpWithLinalgProducer (NFC)

Follow up after D128978, where I mistakenly rename the file. The linalg op is
fused with its producer, not the consumer.
This commit is contained in:
lorenzo chelini 2022-07-01 20:21:09 +02:00
parent b2e9684fe4
commit 7fc4518f4a
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ add_mlir_dialect_library(MLIRLinalgTransforms
DropUnitDims.cpp
ElementwiseOpFusion.cpp
ElementwiseToLinalg.cpp
FusePadOpWithLinalgConsumer.cpp
FusePadOpWithLinalgProducer.cpp
Fusion.cpp
FusionOnTensors.cpp
Generalization.cpp

View File

@ -1,4 +1,4 @@
//===- FusePadOpWithLinalgConsumer.cpp ---- Fuse pad with linalg producer -===//
//===- FusePadOpWithLinalgProducer.cpp ---- Fuse pad with linalg producer -===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.