Branch: refs/heads/master
Home: https://github.com/STEllAR-GROUP/hpx
Commit: 657f340be1415194d7e64ee7f8eb3f3f87ccf99f
https://github.com/STEllAR-GROUP/hpx/commit/657f340be1415194d7e64ee7f8eb3f3f87ccf99f
Author: aurianer <[email protected]>
Date: 2020-12-10 (Thu, 10 Dec 2020)
Changed paths:
M docs/sphinx/api/public_api.rst
M docs/sphinx/manual/writing_single_node_hpx_applications.rst
M libs/full/include/include/hpx/algorithm.hpp
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/search.hpp
M
libs/parallelism/algorithms/include/hpx/parallel/container_algorithms/search.hpp
M libs/parallelism/algorithms/tests/regressions/search_zerolength.cpp
M libs/parallelism/algorithms/tests/unit/algorithms/search.cpp
M libs/parallelism/algorithms/tests/unit/algorithms/searchn.cpp
M
libs/parallelism/algorithms/tests/unit/container_algorithms/search_range.cpp
M
libs/parallelism/algorithms/tests/unit/container_algorithms/searchn_range.cpp
Log Message:
-----------
Add CPOs for existing overloads of search and search_n
Commit: 92815a89ea8ec98d3675c08b22c5a579ed95f9f9
https://github.com/STEllAR-GROUP/hpx/commit/92815a89ea8ec98d3675c08b22c5a579ed95f9f9
Author: aurianer <[email protected]>
Date: 2020-12-10 (Thu, 10 Dec 2020)
Changed paths:
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/search.hpp
M
libs/parallelism/algorithms/include/hpx/parallel/container_algorithms/search.hpp
M libs/parallelism/algorithms/tests/unit/algorithms/search.cpp
M libs/parallelism/algorithms/tests/unit/algorithms/searchn.cpp
M
libs/parallelism/algorithms/tests/unit/container_algorithms/search_range.cpp
M
libs/parallelism/algorithms/tests/unit/container_algorithms/searchn_range.cpp
Log Message:
-----------
Add overload without ExPolicy and associated tests
Commit: ddd12464ccab3263c016f7cab53da0f194f8e216
https://github.com/STEllAR-GROUP/hpx/commit/ddd12464ccab3263c016f7cab53da0f194f8e216
Author: aurianer <[email protected]>
Date: 2020-12-10 (Thu, 10 Dec 2020)
Changed paths:
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/search.hpp
M
libs/parallelism/algorithms/include/hpx/parallel/container_algorithms/search.hpp
Log Message:
-----------
Add FwdIter-Sentinel overloads for search and search_n
Commit: 6cb937660bce83de106bce8e98ff29ee00ec5953
https://github.com/STEllAR-GROUP/hpx/commit/6cb937660bce83de106bce8e98ff29ee00ec5953
Author: aurianer <[email protected]>
Date: 2020-12-10 (Thu, 10 Dec 2020)
Changed paths:
M libs/parallelism/algorithms/CMakeLists.txt
A
libs/parallelism/algorithms/include/hpx/parallel/algorithms/detail/search.hpp
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/search.hpp
M
libs/parallelism/algorithms/include/hpx/parallel/container_algorithms/search.hpp
Log Message:
-----------
Add sequential implementation of search supporting sentinels
based on cppreference possible implementation
https://en.cppreference.com/w/cpp/algorithm/ranges/search
Commit: 02d23560ff3f1eb76af3e8fa219fedd311722a8a
https://github.com/STEllAR-GROUP/hpx/commit/02d23560ff3f1eb76af3e8fa219fedd311722a8a
Author: aurianer <[email protected]>
Date: 2020-12-10 (Thu, 10 Dec 2020)
Changed paths:
M
libs/parallelism/algorithms/include/hpx/parallel/algorithms/detail/search.hpp
Log Message:
-----------
Adapt parallel implementation of search to sentinels
Commit: 61efa4d251bb74b3f1875fdcc7b7d9f3ad8cc530
https://github.com/STEllAR-GROUP/hpx/commit/61efa4d251bb74b3f1875fdcc7b7d9f3ad8cc530
Author: aurianer <[email protected]>
Date: 2020-12-10 (Thu, 10 Dec 2020)
Changed paths:
M
libs/parallelism/algorithms/tests/unit/container_algorithms/search_range.cpp
M libs/parallelism/algorithms/tests/unit/container_algorithms/test_utils.hpp
Log Message:
-----------
Add tests for sentinel overloads + sentinels in test_utils
Commit: 1960e8e7380dcf6773aed0f0be55367720656727
https://github.com/STEllAR-GROUP/hpx/commit/1960e8e7380dcf6773aed0f0be55367720656727
Author: aurianer <[email protected]>
Date: 2020-12-10 (Thu, 10 Dec 2020)
Changed paths:
M
libs/parallelism/algorithms/include/hpx/parallel/container_algorithms/search.hpp
Log Message:
-----------
Add sentinel support in the ranges overloads
Commit: 41e024a2af496954544b98ecd74273af8e800081
https://github.com/STEllAR-GROUP/hpx/commit/41e024a2af496954544b98ecd74273af8e800081
Author: aurianer <[email protected]>
Date: 2020-12-10 (Thu, 10 Dec 2020)
Changed paths:
M
libs/parallelism/algorithms/include/hpx/parallel/algorithms/detail/search.hpp
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/search.hpp
M
libs/parallelism/algorithms/include/hpx/parallel/container_algorithms/search.hpp
Log Message:
-----------
Move the detail search_n implementation in detail
Commit: 9f840b249afcedbaafbe77f2d8bb2a2e26e7d182
https://github.com/STEllAR-GROUP/hpx/commit/9f840b249afcedbaafbe77f2d8bb2a2e26e7d182
Author: Auriane R <[email protected]>
Date: 2020-12-11 (Fri, 11 Dec 2020)
Changed paths:
M docs/sphinx/api/public_api.rst
M docs/sphinx/manual/writing_single_node_hpx_applications.rst
M libs/full/include/include/hpx/algorithm.hpp
M libs/parallelism/algorithms/CMakeLists.txt
A
libs/parallelism/algorithms/include/hpx/parallel/algorithms/detail/search.hpp
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/search.hpp
M
libs/parallelism/algorithms/include/hpx/parallel/container_algorithms/search.hpp
M libs/parallelism/algorithms/tests/regressions/search_zerolength.cpp
M libs/parallelism/algorithms/tests/unit/algorithms/search.cpp
M libs/parallelism/algorithms/tests/unit/algorithms/searchn.cpp
M
libs/parallelism/algorithms/tests/unit/container_algorithms/search_range.cpp
M
libs/parallelism/algorithms/tests/unit/container_algorithms/searchn_range.cpp
M libs/parallelism/algorithms/tests/unit/container_algorithms/test_utils.hpp
Log Message:
-----------
Merge pull request #5066 from aurianer/adapt_search_cpp20
Adapt `search` to C++20 and Range TS
Compare:
https://github.com/STEllAR-GROUP/hpx/compare/74a5b7935778...9f840b249afc
_______________________________________________
hpx-commits mailing list
[email protected]
https://mail.cct.lsu.edu/mailman/listinfo/hpx-commits