Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/polly/www
AgeCommit message (Collapse)Author
2015-06-03[doc] Rename -polly-detect-only= to -polly-only-func=Tobias Grosser
llvm-svn: 238930
2015-04-21Rename 'scattering' to 'schedule'Tobias Grosser
In Polly we used both the term 'scattering' and the term 'schedule' to describe the execution order of a statement without actually distinguishing between them. We now uniformly use the term 'schedule' for the execution order. This corresponds to the terminology of isl. History: CLooG introduced the term scattering as the generated code can be used as a sequential execution order (schedule) or as a parallel dimension enumerating different threads of execution (placement). In Polly and/or isl the term placement was never used, but we uniformly refer to an execution order as a schedule and only later introduce parallelism. When doing so we do not talk about about specific placement dimensions. llvm-svn: 235380
2015-04-10Drop ISL_INSTALL pathTobias Grosser
There is no need for an isl install path anymore. isl is now part of Polly. llvm-svn: 234605
2015-04-09Do not recommend -polly-vectorizer=pollyTobias Grosser
Instead, we recommend -polly-vectorizer=stripmine, which pre-vectorizers outer loops for the LoopVectorizer to take over. llvm-svn: 234478
2015-04-05Adjust documentation to old -enable-polly-openmp -> -polly-parallel renameTobias Grosser
Reported-by: Tomofumi Yuki <tomofumi.yuki@gmail.com> llvm-svn: 234124
2015-03-30Delete some leftovers from scoplibTobias Grosser
llvm-svn: 233571
2015-03-30Drop libpluto supportTobias Grosser
We do not have buildbots or anything that tests this functionality, hence it most likely bitrots. People interested to use this functionality can always recover it from svn history. llvm-svn: 233570
2015-02-28Format non-affine subregions news itemJohannes Doerfert
llvm-svn: 230852
2015-02-28Add non-affine subregions to the newsJohannes Doerfert
llvm-svn: 230851
2015-02-26Add the IMPACT2015 publicationsJohannes Doerfert
It is important we add more publications with/about Polly so people can see that work and research is actually ongoing. llvm-svn: 230552
2015-02-26Add myself to the contributors of PollyJohannes Doerfert
llvm-svn: 230546
2015-02-26Add non-affine subregions to the TODO listJohannes Doerfert
llvm-svn: 230545
2015-02-15www: update installation instructions to not include gmp/islTobias Grosser
llvm-svn: 229305
2015-02-15Remove isl/cloog build scriptsTobias Grosser
isl is not distributed as part of Polly. llvm-svn: 229304
2015-02-15www: Add code coverage and scan-build results againTobias Grosser
Sylvestre Ledru (re)enabled them after the import of isl into polly significantly simplified the build. llvm-svn: 229303
2015-02-11Update TODO list.Johannes Doerfert
llvm-svn: 228858
2015-02-09isl is now distributed with pollyTobias Grosser
llvm-svn: 228575
2015-01-08todo: Remove some redundant topicsTobias Grosser
llvm-svn: 225395
2015-01-08www: Make sure the main content pane does not overlap with the menuTobias Grosser
llvm-svn: 225391
2015-01-08todo: Adding native OpenSCoP support to Polly does not seem desirableTobias Grosser
This would add another library dependency to Polly. In many cases the JSCoP interface we have should be enough and an external JSCoP <> OpenSCoP converter could be written. We can reconsider this if new use cases show up. llvm-svn: 225390
2015-01-08Add updated TODO listTobias Grosser
llvm-svn: 225388
2015-01-06www: Draft changelog for the upcoming release.Tobias Grosser
llvm-svn: 225264
2015-01-06Fix htmlTobias Grosser
llvm-svn: 225263
2015-01-06We currently do not create these result for pollyTobias Grosser
We should reconsider this after having switched to imath (instead of gmp) as the default isl backend, as this would allow us to keep a copy of isl in the polly svn and to consequently make it easier to distribute Polly. llvm-svn: 225262
2014-12-07www-todo: No need to directly integrate with the basic block vectorizerTobias Grosser
llvm-svn: 223606
2014-12-07www-todo: We assume accesses to fixed-size arrays are in-boundsTobias Grosser
llvm-svn: 223605
2014-12-02Drop Cloog supportJohannes Doerfert
This commit drops the Cloog support for Polly. The scripts and documentation are changed to only use isl as prerequisity. In the code all Cloog specific parts have been removed and all relevant tests have been ported to the isl backend when it was created. llvm-svn: 223141
2014-11-19todo: We can support modifiable memory access functionsTobias Grosser
llvm-svn: 222366
2014-11-19todo: We now have OpenMP support in isl backendTobias Grosser
llvm-svn: 222365
2014-11-19Change states in the www/todo.html listJohannes Doerfert
llvm-svn: 222362
2014-09-22[www] Update formatting of news feedTobias Grosser
llvm-svn: 218238
2014-09-22[www] Unbreak the newsfeed from polyhedral.infoTobias Grosser
llvm-svn: 218237
2014-08-18Added arcanist linters and cleaned errors and warningsJohannes Doerfert
Arcanist (arc) will now always run linters before uploading any new commit to Phabricator. All errors/warnings (or their absence) will be shown in the web interface together with a explanation by the commiter (arcanist will ask the commiter if the build was not clean). The linters include: - clang-format - spelling check - permissions check (aka. chmod) - filename check - merge conflict marker check Note, that their scope is sometimes limited (see .arclint for details). This commit also fixes all errors and warnings these linters reported, namely: - spelling mistakes and typos - executable permissions for various text files Differential Revision: http://reviews.llvm.org/D4916 llvm-svn: 215871
2014-08-13[Polly] Remove the PoCC and ScopLib supportJohannes Doerfert
Remove the PoCC and ScopLib support from Polly as we do not have a user/maintainer for it. Differential Revision: http://reviews.llvm.org/D4871 llvm-svn: 215563
2014-06-11www: Fix grammar.Tobias Grosser
Reported-by: Jules Gagnon-Marchand <jules_gagnonm@hotmail.com> llvm-svn: 210576
2014-06-04www: Polly can be built without any GPLed softwareTobias Grosser
Thanks to Sebastian Pop and David Peixotto. llvm-svn: 210176
2014-04-23www: Reference phone call notesTobias Grosser
llvm-svn: 207006
2014-04-17Link to notes of our last phone callTobias Grosser
llvm-svn: 206488
2014-04-11Remove OpenScopTobias Grosser
We only supported a very old version of OpenScop that was entirely different to what OpenScop is today. To not confuse people, we remove this old and unusable support. If anyone is interested to add OpenScop support back in, the relevant patches are available in version control. llvm-svn: 206026
2014-04-10todo: Update todo listTobias Grosser
llvm-svn: 205985
2014-04-10www: Fix typoTobias Grosser
llvm-svn: 205984
2014-04-10todo: Building against an installed LLVM worksTobias Grosser
We only care about cmake and the buildbots test that it works. llvm-svn: 205983
2014-04-10www: We have no interest in FORTRAN support in test suiteTobias Grosser
llvm-svn: 205982
2014-04-10Add link to meeting notesTobias Grosser
llvm-svn: 205980
2014-04-03Add another hint for fixing check-polly errors to get_started.htmlTobias Grosser
Reversed the order in which LD_LIBRARY_PATH is defined in order to make sure the ${CLOOG_INSTALL} prefix is found first. Contributed-by: Christian Bielert <cib123@googlemail.com> llvm-svn: 205556
2014-04-03Note of last Polly phone callTobias Grosser
llvm-svn: 205553
2014-04-03Add a paragraph describing how to configure the python interpreter.Tobias Grosser
Contributed-by: cib123@googlemail.com llvm-svn: 205549
2014-03-21www: More formatting improvementsTobias Grosser
llvm-svn: 204466
2014-03-21www: Remove warning about the implementation statusTobias Grosser
It does not seem to add a lot of value, as it leaves unclear which parts are mature and whichs not. Adding this informatin also does not make sense, as it changes rapidly. llvm-svn: 204447
2014-03-21www: Rewrite the intro about PollyTobias Grosser
llvm-svn: 204446