-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Transform] mlir: named op layout propagation #101
Open
yifeizh2
wants to merge
26
commits into
main
Choose a base branch
from
yifei/layout_propagation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
db2399e
Support named op layout propagation and pack processing
yifeizh2 966fc8f
fix layout propagation on expand shape
yifeizh2 8bbf601
update debug info
yifeizh2 5af47a3
update to OpOperand, adapt to latest llvm main
yifeizh2 c31ca21
fix getPackedAxes
yifeizh2 4967daf
extend to collapse shape
yifeizh2 2f4a9af
replace empty inner pos pack with transpose
yifeizh2 df32b62
add transpose canonicalization
yifeizh2 8330630
update
yifeizh2 a24db0a
updatee pack matmul and pack vnni
yifeizh2 e6e78fd
Merge remote-tracking branch 'origin/main' into layout_propagation
yifeizh2 a61b414
Merge remote-tracking branch 'origin/main' into HEAD
yifeizh2 2e538e0
sync with mlp benching
yifeizh2 aa9da9f
fix liense
yifeizh2 9238ad0
fix clang tidy
yifeizh2 5d37aab
fix test
yifeizh2 2e3e377
fix license
yifeizh2 4b07acf
temp fix correctness check
yifeizh2 9584638
fix ci
yifeizh2 e979fe2
refactor 1
yifeizh2 65ac7ef
update test
yifeizh2 6d12650
refactor 2
yifeizh2 69a37a4
remove test
yifeizh2 effb132
refactor 3
yifeizh2 383047a
Merge remote-tracking branch 'origin/main' into layout_propagation
yifeizh2 6dc7c74
update blocking acktivation test
yifeizh2 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
//===- GlobalAnalysis.h - Graph Compiler analysis pass ----------*- C++ -*-===// | ||
// | ||
// This file is licensed 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef MLIR_ANALYSIS_GLOBALANALYSIS_H | ||
#define MLIR_ANALYSIS_GLOBALANALYSIS_H | ||
|
||
#include <numeric> | ||
|
||
#include "mlir/Dialect/Linalg/IR/Linalg.h" | ||
#include "mlir/Dialect/Tensor/IR/Tensor.h" | ||
#include "mlir/Pass/Pass.h" | ||
#include "mlir/Support/LLVM.h" | ||
#include "llvm/ADT/DenseMap.h" | ||
#include "llvm/Support/Debug.h" | ||
|
||
namespace mlir { | ||
namespace gc { | ||
|
||
using namespace mlir; | ||
|
||
class TensorLayout { | ||
public: | ||
TensorLayout(ArrayRef<int64_t> outerAxis, ArrayRef<int64_t> innerAxis, | ||
ArrayRef<OpFoldResult> tileSizes) | ||
: outerAxis(outerAxis), innerAxis(innerAxis), tileSizes(tileSizes) { | ||
assert(innerAxis.size() == tileSizes.size()); | ||
} | ||
|
||
static bool isPlainOuterAxis(ArrayRef<int64_t> outerAxis) { | ||
for (int64_t i = 0; i < static_cast<int64_t>(outerAxis.size()); ++i) { | ||
if (i != outerAxis[i]) | ||
return false; | ||
} | ||
return true; | ||
} | ||
|
||
bool isPlain() const { | ||
if (isPlainOuterAxis(outerAxis)) | ||
return tileSizes.empty() && innerAxis.empty(); | ||
return false; | ||
} | ||
|
||
bool isBlocking() const { return !tileSizes.empty() && !innerAxis.empty(); } | ||
|
||
static TensorLayout createPlainLayout(int64_t rank) { | ||
SmallVector<int64_t> outerAxis(rank, 0); | ||
std::iota(outerAxis.begin(), outerAxis.end(), 0); | ||
return TensorLayout(outerAxis, SmallVector<int64_t>{}, | ||
SmallVector<OpFoldResult>{}); | ||
} | ||
|
||
DenseMap<int64_t, SmallVector<int64_t>> getPlainToPackedAxisMapping() { | ||
DenseMap<int64_t, SmallVector<int64_t>> axisMapping; | ||
int64_t outerAxisSize = outerAxis.size(); | ||
for (int64_t i = 0; i < outerAxisSize; ++i) { | ||
axisMapping[outerAxis[i]].push_back(i); | ||
} | ||
for (int64_t i = 0; i < static_cast<int64_t>(innerAxis.size()); ++i) { | ||
axisMapping[innerAxis[i]].push_back(outerAxisSize + i); | ||
} | ||
return axisMapping; | ||
} | ||
|
||
int64_t getPlainAxis(int64_t idx) { | ||
int64_t totalRank = outerAxis.size() + innerAxis.size(); | ||
assert(idx >= 0 && idx < totalRank && "Provided plain axis out of bound"); | ||
if (idx >= static_cast<int64_t>(outerAxis.size())) { | ||
return innerAxis[idx - outerAxis.size()]; | ||
} else { | ||
return outerAxis[idx]; | ||
} | ||
} | ||
|
||
size_t getRank() const { return outerAxis.size(); } | ||
|
||
SmallVector<int64_t> getOuterAxis() const { return outerAxis; } | ||
|
||
SmallVector<int64_t> getInnerAxis() const { return innerAxis; } | ||
|
||
SmallVector<OpFoldResult> getTileSizes() const { return tileSizes; } | ||
|
||
friend llvm::raw_ostream &operator<<(llvm::raw_ostream &ss, | ||
const TensorLayout &layout); | ||
|
||
bool operator==(const TensorLayout &other) const; | ||
|
||
bool operator!=(const TensorLayout &other) const; | ||
|
||
private: | ||
SmallVector<int64_t> outerAxis; | ||
SmallVector<int64_t> innerAxis; | ||
SmallVector<OpFoldResult> tileSizes; | ||
}; | ||
|
||
class OperatorLayout { | ||
public: | ||
OperatorLayout() {} | ||
|
||
OperatorLayout(SmallVector<TensorLayout> inputLayouts, | ||
SmallVector<TensorLayout> outputLayouts) { | ||
supportedInputLayouts = inputLayouts; | ||
supportedOutputLayouts = outputLayouts; | ||
} | ||
|
||
SmallVector<TensorLayout> getSupportedInputLayouts() const { | ||
return supportedInputLayouts; | ||
} | ||
|
||
SmallVector<TensorLayout> getSupportedOutputLayouts() const { | ||
return supportedOutputLayouts; | ||
} | ||
|
||
TensorLayout getOutputLayout(int64_t idx) const { | ||
assert(idx < static_cast<int64_t>(supportedOutputLayouts.size())); | ||
return supportedOutputLayouts[idx]; | ||
} | ||
|
||
bool isPlain() const { | ||
for (const auto &layout : llvm::concat<const TensorLayout>( | ||
supportedInputLayouts, supportedOutputLayouts)) { | ||
if (!layout.isPlain()) | ||
return false; | ||
} | ||
return true; | ||
} | ||
|
||
friend llvm::raw_ostream &operator<<(llvm::raw_ostream &ss, | ||
const OperatorLayout &opLayout); | ||
|
||
private: | ||
SmallVector<TensorLayout> supportedInputLayouts; | ||
SmallVector<TensorLayout> supportedOutputLayouts; | ||
}; | ||
|
||
class GlobalAnalysis { | ||
public: | ||
explicit GlobalAnalysis(Operation *root); | ||
|
||
FailureOr<OperatorLayout> getOpLayout(Operation *op) { | ||
if (layoutCache.find(op) != layoutCache.end()) | ||
return layoutCache[op]; | ||
else | ||
return failure(); | ||
} | ||
|
||
private: | ||
DenseMap<Operation *, OperatorLayout> layoutCache; | ||
}; | ||
|
||
namespace utils { | ||
bool isSupportedContractionNamedOp(const linalg::LinalgOp &linalgOp); | ||
|
||
bool isPackableOp(Operation *op); | ||
|
||
bool hasAllTensorSemantics(linalg::LinalgOp linalgOp); | ||
} // namespace utils | ||
} // namespace gc | ||
} // namespace mlir | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
//===-- Transforms.h - transformation utilities -----------------*- C++ -*-===// | ||
// | ||
// This file is licensed 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef GC_TRANSFORMS_TRANSFORMS_H | ||
#define GC_TRANSFORMS_TRANSFORMS_H | ||
|
||
#include "gc/Analysis/GlobalAnalysis.h" | ||
#include "mlir/Dialect/Linalg/IR/Linalg.h" | ||
#include "mlir/Dialect/Linalg/Transforms/Transforms.h" | ||
|
||
namespace mlir { | ||
namespace gc { | ||
LogicalResult packLinalgOp(RewriterBase &rewriter, linalg::LinalgOp linalgOp, | ||
const OperatorLayout &opLayout); | ||
|
||
LogicalResult namedOpLayoutPropagation(RewriterBase &rewriter, | ||
linalg::LinalgOp linalgOp, | ||
OperatorLayout opLayout); | ||
} // namespace gc | ||
} // namespace mlir | ||
|
||
#endif // GC_TRANSFORMS_TRANSFORMS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ gc_set_mlir_link_components(MLIR_LINK_COMPONENTS | |
gc_add_mlir_library(GcAnalysis | ||
TargetDescriptionAnalysis.cpp | ||
MatmulConfigAnalysis.cpp | ||
GlobalAnalysis.cpp | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please give it a more descriptive name? |
||
|
||
DEPENDS | ||
GraphCompilerPassIncGen | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it need to be a separate pass if it is a post-processing?