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

Commit 1da2537

Browse files
Sven Verdoolaegenicolasvasilache
authored andcommitted
Bump isl for change of isl_ast_build_node_from_schedule export
1 parent 0edfb22 commit 1da2537

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/core/polyhedral/codegen_cuda.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ string emitCudaKernel(
923923
astBuild = isl::manage(isl_ast_build_set_at_each_domain(
924924
astBuild.release(), collect, &iteratorMaps));
925925
astBuild = astBuild.set_iterators(Codegen::makeLoopIterators(ctx, maxDepth));
926-
auto astNode = astBuild.node_from_schedule(schedule);
926+
auto astNode = astBuild.node_from(schedule);
927927
AstPrinter(CodegenContext(ss, mscop, iteratorMaps)).emit(astNode);
928928
ss << "}" << endl;
929929

src/core/polyhedral/codegen_llvm.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ IslCodegenRes codegenISL(const Scop& scop) {
773773
astBuild = isl::manage(
774774
isl_ast_build_set_at_each_domain(astBuild.release(), collect, &t));
775775
astBuild = astBuild.set_iterators(Codegen::makeLoopIterators(ctx, maxDepth));
776-
auto astNode = astBuild.node_from_schedule(schedule);
776+
auto astNode = astBuild.node_from(schedule);
777777
return {
778778
std::move(iteratorMaps), std::move(stmtSubscripts), std::move(astNode)};
779779
}

third-party/islpp

Submodule islpp updated from 175224b to d50c6fc

0 commit comments

Comments
 (0)