This repository was archived by the owner on Apr 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ isl::map TensorReferenceGroup::approximateScopedAccesses() const {
136
136
return accessed;
137
137
}
138
138
139
- isl::multi_aff ScopedFootprint::lowerBounds () const {
139
+ isl::MultiAff<Scope, Tensor> ScopedFootprint::lowerBounds () const {
140
140
if (dim () == 0 ) {
141
141
throw promotion::PromotionNYI (" promotion for scalars" );
142
142
}
Original file line number Diff line number Diff line change @@ -48,21 +48,21 @@ struct ScopedFootprint {
48
48
isl::val size (size_t pos) const {
49
49
return box.get_size ().get_val (pos);
50
50
}
51
- isl::aff lowerBound (size_t pos) const {
51
+ isl::AffOn<Scope> lowerBound (size_t pos) const {
52
52
return box.get_offset ().get_aff (pos);
53
53
}
54
54
isl::val stride (size_t pos) const {
55
55
return strideValues.get_val (pos);
56
56
}
57
- isl::aff strideOffset (size_t pos) const {
57
+ isl::AffOn<Scope> strideOffset (size_t pos) const {
58
58
return strideOffsets.get_aff (pos);
59
59
}
60
60
61
- isl::fixed_box box;
61
+ isl::FixedBox<Scope, Tensor> box;
62
62
isl::MultiVal<Tensor> strideValues;
63
63
isl::MultiAff<Scope, Tensor> strideOffsets;
64
64
65
- isl::multi_aff lowerBounds () const ;
65
+ isl::MultiAff<Scope, Tensor> lowerBounds () const ;
66
66
};
67
67
68
68
// Descriptor of tensor reference in a Scop.
You can’t perform that action at this time.
0 commit comments