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

Commit a10ebf8

Browse files
author
Sven Verdoolaege
committed
emitRegisterAccess: use isl::multi_pw_aff::get_range_tuple_id
This removes a use of isl::dim_type, which will not be exported in mainline isl.
1 parent 0ec5785 commit a10ebf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tc/core/polyhedral/cuda/codegen.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ void emitRegisterAccess(
438438
void emitGlobalAccess(
439439
isl::multi_pw_aff access,
440440
const CodegenStatementContext& context) {
441-
LdgWrapper ldgWrapper(context, access.get_tuple_id(isl::dim_type::out));
441+
LdgWrapper ldgWrapper(context, access.get_range_tuple_id());
442442
emitAccess(access, context);
443443
}
444444
} // namespace

0 commit comments

Comments
 (0)