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

Commit 765b6f1

Browse files
author
Sven Verdoolaege
committed
Bump isl for fix of isl_multi_*_val and isl_multi_*_multi_val exports
1 parent afba7c1 commit 765b6f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tc/core/polyhedral/schedule_transforms.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ ScheduleTree* bandTile(
358358
if (tileOptions & TileOptions::ShiftPointLoops) {
359359
auto mupa = band.mupa_;
360360
if (!(tileOptions & TileOptions::ScaleTileLoops)) {
361-
mupa = mupa.scale_multi_val(makeMultiVal(mupa.get_space(), ts));
361+
mupa = mupa.scale(makeMultiVal(mupa.get_space(), ts));
362362
}
363363
childBand.mupa_ = childBand.mupa_.sub(mupa);
364364
}
@@ -386,7 +386,7 @@ ScheduleTree* bandScale(ScheduleTree* tree, const vector<size_t>& scales) {
386386
}
387387
auto& mupa = band.mupa_;
388388
auto space = mupa.get_space();
389-
mupa = mupa.scale_multi_val(isl::makeMultiVal(space, s));
389+
mupa = mupa.scale(isl::makeMultiVal(space, s));
390390
return tree;
391391
}
392392

third-party/islpp

Submodule islpp updated from d74282c to 2622ce2

0 commit comments

Comments
 (0)