Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 315ec26

Browse files
author
Sven Verdoolaege
committed
only declare activeDomainPoints in a single header
activeDomainPoints was declared in both schedule_tree.h and schedule_transforms.h. One declaration should suffice. Other than activeDomainPoints, schedule_tree.h only has the declaration of ScheduleTree itself, while all operations are in schedule_transforms.h, so keep the declaration in schedule_transforms.h.
1 parent a3ac28f commit 315ec26

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

tc/core/polyhedral/schedule_isl_conversion.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "tc/external/isl.h"
2323

2424
#include "tc/core/flags.h"
25+
#include "tc/core/polyhedral/schedule_transforms.h"
2526
#include "tc/external/isl.h"
2627

2728
using namespace std;

tc/core/polyhedral/schedule_tree.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -514,10 +514,6 @@ struct ScheduleTree {
514514
};
515515

516516
} // namespace detail
517-
518-
isl::union_set activeDomainPoints(
519-
const detail::ScheduleTree* root,
520-
const detail::ScheduleTree* node);
521517
} // namespace polyhedral
522518
} // namespace tc
523519

0 commit comments

Comments
 (0)