[PATCH] D99971: [Polly] Refactoring isExecutedInParallel() isReductionParallel() getSchedule() getBrokenReductions() getReferencesInSubtree() getScheduleForAstNode() getBrokenReductionsStr() to use isl++

Riccardo Mori via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 6 09:47:49 PDT 2021


patacca created this revision.
patacca added a reviewer: Meinersbur.
Herald added a reviewer: bollu.
patacca requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

[Polly] Refactoring isExecutedInParallel() isReductionParallel() getSchedule() getBrokenReductions() getReferencesInSubtree() getScheduleForAstNode() getBrokenReductionsStr() to use the C++ bindings for isl

Polly use algorithms from the Integer Set Library (isl), which is a library written in C and which is incompatible with the rest of the LLVM as it is written in C++.

Changes made:

- Refactoring isExecutedInParallel() isReductionParallel() getSchedule() getBrokenReductions() getReferencesInSubtree() getScheduleForAstNode() getBrokenReductionsStr() to take C++ bindings instead of the plain isl C api.
- Fixed the mismatching function declaration for getScheduleForAstNode()


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D99971

Files:
  polly/include/polly/CodeGen/IslAst.h
  polly/include/polly/CodeGen/IslNodeBuilder.h
  polly/lib/CodeGen/IslAst.cpp
  polly/lib/CodeGen/IslNodeBuilder.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D99971.335560.patch
Type: text/x-patch
Size: 7129 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210406/a088c273/attachment.bin>


More information about the llvm-commits mailing list