forked from OSchip/llvm-project
[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:
parent
b2e9684fe4
commit
7fc4518f4a
|
@ -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
|
||||
|
|
|
@ -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.
|
Loading…
Reference in New Issue