[libc++][PSTL] Implement std::merge
authorNikolas Klauser <nikolasklauser@berlin.de>
Tue, 30 May 2023 16:27:10 +0000 (09:27 -0700)
committerNikolas Klauser <nikolasklauser@berlin.de>
Tue, 30 May 2023 22:07:06 +0000 (15:07 -0700)
commitbf63b15bd4bf4ca0b0d56319af74eb259e0b6d3e
tree7cd39b72f3f0ecd0ca86790207b881fa96f3e2a3
parent48e5f704c55f406e0bdbd989434c8b3777b27fe4
[libc++][PSTL] Implement std::merge

Reviewed By: ldionne, #libc

Spies: pcwang-thead, libcxx-commits

Differential Revision: https://reviews.llvm.org/D151375
14 files changed:
libcxx/include/CMakeLists.txt
libcxx/include/__algorithm/pstl_backend.h
libcxx/include/__algorithm/pstl_backends/cpu_backend.h
libcxx/include/__algorithm/pstl_backends/cpu_backends/merge.h [new file with mode: 0644]
libcxx/include/__algorithm/pstl_backends/cpu_backends/serial.h
libcxx/include/__algorithm/pstl_backends/cpu_backends/thread.h
libcxx/include/__algorithm/pstl_merge.h [new file with mode: 0644]
libcxx/include/__pstl/internal/algorithm_impl.h
libcxx/include/__pstl/internal/glue_algorithm_impl.h
libcxx/include/__pstl/internal/parallel_backend_serial.h
libcxx/include/algorithm
libcxx/include/module.modulemap.in
libcxx/test/libcxx/private_headers.verify.cpp
libcxx/test/std/algorithms/alg.sorting/alg.merge/pstl.merge.pass.cpp [new file with mode: 0644]