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 +0
-18
lines changed
include/tc/core/polyhedral Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -284,13 +284,6 @@ isl::union_set activeDomainPoints(
284
284
const detail::ScheduleTree* root,
285
285
const detail::ScheduleTree* node);
286
286
287
- // Get the set of statement identifiers whose domains have at least one active
288
- // point at the given node, i.e. the statements that were not filtered away on
289
- // the path from root to node.
290
- std::unordered_set<isl::id, isl::IslIdIslHash> activeStatements (
291
- const detail::ScheduleTree* root,
292
- const detail::ScheduleTree* node);
293
-
294
287
// //////////////////////////////////////////////////////////////////////////////
295
288
// Experimental
296
289
// //////////////////////////////////////////////////////////////////////////////
Original file line number Diff line number Diff line change @@ -135,17 +135,6 @@ isl::union_set activeDomainPoints(
135
135
return domain;
136
136
}
137
137
138
- std::unordered_set<isl::id, isl::IslIdIslHash> activeStatements (
139
- const ScheduleTree* root,
140
- const ScheduleTree* tree) {
141
- std::unordered_set<isl::id, isl::IslIdIslHash> ids;
142
- auto domain = activeDomainPoints (root, tree).universe ();
143
- for (auto d : isl::UnionAsVector<isl::union_set>(domain)) {
144
- ids.insert (d.get_tuple_id ());
145
- }
146
- return ids;
147
- }
148
-
149
138
vector<ScheduleTree*> collectScheduleTreesPath (
150
139
std::function<ScheduleTree*(ScheduleTree*)> next,
151
140
ScheduleTree* start) {
You can’t perform that action at this time.
0 commit comments