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

Commit 4fd6453

Browse files
author
Sven Verdoolaege
committed
tc/core/halide2isl.cc: fix merge conflict between #536 and #510
1 parent 4e83a3c commit 4fd6453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tc/core/halide2isl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ isl::schedule makeScheduleTreeHelper(
441441
isl::id id(set.get_ctx(), kStatementLabel + std::to_string(stmtIndex));
442442
statements->emplace(id, op);
443443
auto tupleSpace = isl::space(set.get_ctx(), 0);
444-
tupleSpace = tupleSpace.named_set_from_params_id(id, outer.n());
444+
tupleSpace = tupleSpace.named_set_from_params_id(id, outer.size());
445445
IterationDomain iterationDomain;
446446
iterationDomain.paramSpace = set.get_space();
447447
iterationDomain.tuple = isl::multi_id(tupleSpace, outer);

0 commit comments

Comments
 (0)