This is an archive of the discontinued LLVM Phabricator instance.

[libc++][PSTL] Implement std::stable_sort
ClosedPublic

Authored by philnik on May 26 2023, 10:50 AM.

Details

Reviewers
ldionne
Group Reviewers
Restricted Project
Commits
rGd51a84b4059c: [libc++][PSTL] Implement std::stable_sort

Diff Detail

Event Timeline

philnik created this revision.May 26 2023, 10:50 AM
Herald added a project: Restricted Project. · View Herald TranscriptMay 26 2023, 10:50 AM
philnik requested review of this revision.May 26 2023, 10:50 AM
Herald added a project: Restricted Project. · View Herald TranscriptMay 26 2023, 10:50 AM
Herald added a reviewer: Restricted Project. · View Herald Transcript
ldionne accepted this revision.May 26 2023, 11:47 AM
ldionne added a subscriber: ldionne.
ldionne added inline comments.
libcxx/include/CMakeLists.txt
74

Missing docs for __pstl_stable_sort too.

libcxx/include/__algorithm/pstl_backends/cpu_backend.h
46

Missing docs?

libcxx/include/__algorithm/pstl_backends/cpu_backends/serial.h
34

Let's remove the size_t = 0 unless it has a purpose.

libcxx/include/__algorithm/pstl_backends/cpu_backends/thread.h
38

Same here for = 0.

This revision is now accepted and ready to land.May 26 2023, 11:47 AM
philnik updated this revision to Diff 526729.May 30 2023, 11:28 AM
philnik marked 4 inline comments as done.

Address comments

philnik updated this revision to Diff 527255.May 31 2023, 6:26 PM

Try to fix CI

philnik updated this revision to Diff 527443.Jun 1 2023, 8:55 AM

Try to fix CI

This revision was automatically updated to reflect the committed changes.