Skip to content

Commit

Permalink
[MLIR][Linalg] Update filename to reflect implementation (NFC)
Browse files Browse the repository at this point in the history
Reviewed By: nicolasvasilache

Differential Revision: https://reviews.llvm.org/D128978
  • Loading branch information
chelini committed Jul 1, 2022
1 parent 690db16 commit cc2a614
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mlir/lib/Dialect/Linalg/Transforms/CMakeLists.txt
Expand Up @@ -8,6 +8,7 @@ add_mlir_dialect_library(MLIRLinalgTransforms
DropUnitDims.cpp
ElementwiseOpFusion.cpp
ElementwiseToLinalg.cpp
FusePadOpWithLinalgConsumer.cpp
Fusion.cpp
FusionOnTensors.cpp
Generalization.cpp
Expand All @@ -19,7 +20,6 @@ add_mlir_dialect_library(MLIRLinalgTransforms
Loops.cpp
LinalgStrategyPasses.cpp
NamedOpConversions.cpp
PadOpInterchange.cpp
Promotion.cpp
SparseTensorRewriting.cpp
SplitReduction.cpp
Expand Down
@@ -1,13 +1,13 @@
//===- PadOpInterchange.cpp - Interchange tensor.pad with linalg producer -===//
//===- FusePadOpWithLinalgConsumer.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.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file implements patterns that intechanges a linalg.generic -> tensor.pad
// op chain into a tensor.extract_slice -> linalg.generic -> tensor.insert_slice
// This file implements patterns that fuses a linalg.generic -> tensor.pad op
// chain into a tensor.extract_slice -> linalg.generic -> tensor.insert_slice
// op chain.
//
//===----------------------------------------------------------------------===//
Expand Down

0 comments on commit cc2a614

Please sign in to comment.