aboutsummaryrefslogtreecommitdiff
path: root/pstl
AgeCommit message (Collapse)AuthorFilesLines
2019-01-15Update year in license filesHans Wennborg1-2/+2
In last year's update (D48219) it was suggested that the release manager might want to do this, so here we go. llvm-svn: 351194
2019-01-10[pstl] Fix compile errors when PARALLEL_POLICIES is disabledLouis Dionne2-1/+111
Reviewed as https://reviews.llvm.org/D56139. Thanks to @jerryct for the patch. llvm-svn: 350813
2019-01-10[pstl] Fix CMake configuration when parallel policies are disabledLouis Dionne1-1/+1
llvm-svn: 350812
2019-01-09[pstl] A fix of __pstl namespace usage for ↵Louis Dionne1-99/+99
include/pstl/internal/glue_algorithm_defs.h Reviewed as https://reviews.llvm.org/D55920 llvm-svn: 350723
2019-01-07[pstl] Avoid shadowing explicit lambda capture with lambda parameterLouis Dionne1-24/+24
Summary: Recent Clangs give an error for this. Note that the size of this diff is caused by running clang-format on the result of removing the captures. I guess we'll see how well that works for us. Reviewers: jfb, rodgert Subscribers: jkorous, dexonsmith, libcxx-commits, mclow.lists Differential Revision: https://reviews.llvm.org/D55945 llvm-svn: 350544
2019-01-07[NFC] Fix formatting of README.md for better renderingLouis Dionne1-26/+20
Reviewed as https://reviews.llvm.org/D56051. llvm-svn: 350539
2018-12-21[pstl] Initial integration with LLVM's CMakeLouis Dionne3-17/+41
Summary: This commit adds a check-pstl CMake target that will run the tests we currently have for pstl. Those tests are not using LLVM lit yet, but switching them over should be a transparent change. With this change, we can start relying on the `check-pstl` target for workflows and CI. Note that this commit purposefully does not support the pre-monorepo layout (with subprojects in projects/), since LLVM is moving towards the monorepo layout anyway. Reviewers: jfb Subscribers: mgorny, jkorous, dexonsmith, libcxx-commits, mclow.lists, rodgert Differential Revision: https://reviews.llvm.org/D55963 llvm-svn: 349919
2018-12-20[NFC][pstl] Re-run Clang-format on the whole repositoryLouis Dionne1-2/+2
llvm-svn: 349814
2018-12-19Initial PSTL commitJF Bastien101-0/+18755
The initial commit of the Parallel STL upstream (under LLVM umbrella) based on Parallel STL 20181204 open source release, which is available by https://github.com/intel/parallelstl Author: Mikhail Dvorskiy <mikhail.dvorskiy@intel.com> Differential Revision: https://reviews.llvm.org/D55889 llvm-svn: 349653