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

Commit e87bede

Browse files
author
Sven Verdoolaege
committed
tmp
1 parent a67767d commit e87bede

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tc/core/polyhedral/memory_promotion.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,9 @@ isl::set tensorElementsSet(const Scop& scop, isl::id tensorId) {
418418
auto tensorElements = isl::set::universe(tensorSpace);
419419
auto identity = isl::multi_aff::identity(tensorSpace.map_from_set());
420420
for (int i = 0; i < nDim; ++i) {
421-
auto minAff = halide2isl::makeIslAffFromExpr(
421+
isl::aff minAff = halide2isl::makeIslAffFromExpr(
422422
space, halideParameter.min_constraint(i));
423-
auto extentAff = halide2isl::makeIslAffFromExpr(
423+
isl::aff extentAff = halide2isl::makeIslAffFromExpr(
424424
space, halideParameter.extent_constraint(i));
425425
minAff = minAff.unbind_params_insert_domain(tensorTuple);
426426
extentAff = extentAff.unbind_params_insert_domain(tensorTuple);

0 commit comments

Comments
 (0)