File tree Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -1038,7 +1038,7 @@ struct AMDGPUDPPLowering : public ConvertOpToLLVMPattern<DPPOp> {
1038
1038
1039
1039
struct ConvertAMDGPUToROCDLPass
1040
1040
: public impl::ConvertAMDGPUToROCDLPassBase<ConvertAMDGPUToROCDLPass> {
1041
- using ConvertAMDGPUToROCDLPassBase::ConvertAMDGPUToROCDLPassBase ;
1041
+ using Base::Base ;
1042
1042
1043
1043
void runOnOperation () override {
1044
1044
MLIRContext *ctx = &getContext ();
Original file line number Diff line number Diff line change @@ -1338,7 +1338,7 @@ void mlir::arith::populateArithToSPIRVPatterns(
1338
1338
namespace {
1339
1339
struct ConvertArithToSPIRVPass
1340
1340
: public impl::ConvertArithToSPIRVPassBase<ConvertArithToSPIRVPass> {
1341
- using ConvertArithToSPIRVPassBase::ConvertArithToSPIRVPassBase ;
1341
+ using Base::Base ;
1342
1342
1343
1343
void runOnOperation () override {
1344
1344
Operation *op = getOperation ();
Original file line number Diff line number Diff line change @@ -1072,7 +1072,7 @@ namespace {
1072
1072
struct ConvertComplexToStandardPass
1073
1073
: public impl::ConvertComplexToStandardPassBase<
1074
1074
ConvertComplexToStandardPass> {
1075
- using ConvertComplexToStandardPassBase::ConvertComplexToStandardPassBase ;
1075
+ using Base::Base ;
1076
1076
1077
1077
void runOnOperation () override ;
1078
1078
};
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ namespace {
28
28
class ConvertControlFlowToSPIRVPass final
29
29
: public impl::ConvertControlFlowToSPIRVPassBase<
30
30
ConvertControlFlowToSPIRVPass> {
31
- using ConvertControlFlowToSPIRVPassBase::ConvertControlFlowToSPIRVPassBase ;
31
+ using Base::Base ;
32
32
void runOnOperation () override ;
33
33
};
34
34
} // namespace
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ namespace {
27
27
// / A pass converting MLIR Func operations into the SPIR-V dialect.
28
28
class ConvertFuncToSPIRVPass
29
29
: public impl::ConvertFuncToSPIRVPassBase<ConvertFuncToSPIRVPass> {
30
- using ConvertFuncToSPIRVPassBase::ConvertFuncToSPIRVPassBase ;
30
+ using Base::Base ;
31
31
void runOnOperation () override ;
32
32
};
33
33
} // namespace
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ namespace {
27
27
// / A pass converting MLIR MemRef operations into the SPIR-V dialect.
28
28
class ConvertMemRefToSPIRVPass
29
29
: public impl::ConvertMemRefToSPIRVPassBase<ConvertMemRefToSPIRVPass> {
30
- using ConvertMemRefToSPIRVPassBase::ConvertMemRefToSPIRVPassBase ;
30
+ using Base::Base ;
31
31
void runOnOperation () override ;
32
32
};
33
33
} // namespace
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ namespace {
34
34
// walk the function recursively to avoid considering nested loops.
35
35
struct ForLoopMapper
36
36
: public impl::ConvertAffineForToGPUPassBase<ForLoopMapper> {
37
- using ConvertAffineForToGPUPassBase::ConvertAffineForToGPUPassBase ;
37
+ using Base::Base ;
38
38
39
39
void runOnOperation () override {
40
40
for (Operation &op : llvm::make_early_inc_range (
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ namespace {
29
29
// / A pass converting MLIR Tensor operations into the SPIR-V dialect.
30
30
class ConvertTensorToSPIRVPass
31
31
: public impl::ConvertTensorToSPIRVPassBase<ConvertTensorToSPIRVPass> {
32
- using ConvertTensorToSPIRVPassBase::ConvertTensorToSPIRVPassBase ;
32
+ using Base::Base ;
33
33
34
34
void runOnOperation () override {
35
35
MLIRContext *context = &getContext ();
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ using namespace tosa;
30
30
31
31
namespace {
32
32
struct TosaToArith : public impl ::TosaToArithPassBase<TosaToArith> {
33
- using TosaToArithPassBase::TosaToArithPassBase ;
33
+ using Base::Base ;
34
34
35
35
void runOnOperation () override {
36
36
RewritePatternSet patterns (&getContext ());
You can’t perform that action at this time.
0 commit comments