File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
mlir/lib/Dialect/Linalg/EDSC Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -88,14 +88,16 @@ operator()(std::function<void(void)> fun) {
88
88
}
89
89
90
90
template <>
91
- GenericLoopNestRangeBuilder<loop::ForOp>::GenericLoopNestRangeBuilder(
92
- ArrayRef<edsc::ValueHandle *> ivs, ArrayRef<Value> ranges) {
91
+ mlir::edsc::GenericLoopNestRangeBuilder<
92
+ loop::ForOp>::GenericLoopNestRangeBuilder(ArrayRef<edsc::ValueHandle *> ivs,
93
+ ArrayRef<Value> ranges) {
93
94
builder = std::make_unique<LoopNestRangeBuilder>(ivs, ranges);
94
95
}
95
96
96
97
template <>
97
- GenericLoopNestRangeBuilder<AffineForOp>::GenericLoopNestRangeBuilder(
98
- ArrayRef<ValueHandle *> ivs, ArrayRef<Value> ranges) {
98
+ mlir::edsc::GenericLoopNestRangeBuilder<
99
+ AffineForOp>::GenericLoopNestRangeBuilder(ArrayRef<ValueHandle *> ivs,
100
+ ArrayRef<Value> ranges) {
99
101
SmallVector<ValueHandle, 4 > lbs;
100
102
SmallVector<ValueHandle, 4 > ubs;
101
103
SmallVector<int64_t , 4 > steps;
You can’t perform that action at this time.
0 commit comments