Branch: refs/heads/master
Home: https://github.com/STEllAR-GROUP/hpx
Commit: 4d06d257149f2b867bf86bea3a860b704856727b
https://github.com/STEllAR-GROUP/hpx/commit/4d06d257149f2b867bf86bea3a860b704856727b
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M
libs/core/algorithms/include/hpx/parallel/algorithms/detail/advance_and_get_distance.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/detail/distance.hpp
M
libs/core/algorithms/include/hpx/parallel/algorithms/detail/upper_lower_bound.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/include/hpx/parallel/util/transfer.hpp
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/schedulers/include/hpx/schedulers/thread_queue.hpp
Log Message:
-----------
Adding specializations for merge that don't use projections
- flyby: make hpx::merge use executor parameters for num_cores and chunk_size
- flyby: fixing #6721
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 4ae7e592e1090dbc279d89199768b5e7b1d69ff4
https://github.com/STEllAR-GROUP/hpx/commit/4ae7e592e1090dbc279d89199768b5e7b1d69ff4
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/transform.hpp
M libs/core/algorithms/include/hpx/parallel/util/foreach_partitioner.hpp
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/algorithms/tests/unit/algorithms/merge.cpp
M libs/core/algorithms/tests/unit/algorithms/merge_tests.hpp
M libs/core/algorithms/tests/unit/algorithms/test_utils.hpp
Log Message:
-----------
Reimplement merge to use foreach_partitioner
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: a27abbdca36b62cf0d322245532eb5e475fc8b77
https://github.com/STEllAR-GROUP/hpx/commit/a27abbdca36b62cf0d322245532eb5e475fc8b77
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/include/hpx/parallel/util/transfer.hpp
Log Message:
-----------
Removing the need for reshaping the partitions
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 4ef99bbbe03afca89c2d1634a2dd1da8b2f84ff3
https://github.com/STEllAR-GROUP/hpx/commit/4ef99bbbe03afca89c2d1634a2dd1da8b2f84ff3
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/unit/algorithms/test_utils.hpp
M libs/core/thread_pools/include/hpx/thread_pools/scheduling_loop.hpp
Log Message:
-----------
Fixing build errors
- flyby: remove unneeded function call from scheduler loop
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 8ec97a1ec75d8c122a00a2b67663389af6bdb90a
https://github.com/STEllAR-GROUP/hpx/commit/8ec97a1ec75d8c122a00a2b67663389af6bdb90a
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/itt_notify/include/hpx/modules/itt_notify.hpp
M libs/core/itt_notify/src/itt_notify.cpp
Log Message:
-----------
Adding pause and resume to ITT module
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: ebda9f18dc04f4471fea201867701b504be88e54
https://github.com/STEllAR-GROUP/hpx/commit/ebda9f18dc04f4471fea201867701b504be88e54
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/execution/CMakeLists.txt
A libs/core/execution/include/hpx/execution/executors/max_num_chunks.hpp
Log Message:
-----------
Adding max_num_chunks executor parameters object
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 5ef21971233f544b29807908ec430a20f933865c
https://github.com/STEllAR-GROUP/hpx/commit/5ef21971233f544b29807908ec430a20f933865c
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
Log Message:
-----------
Remove the need for separate sequential_merge overload
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 494b97c42e82a818df9b628f26ae008ddafd9c8f
https://github.com/STEllAR-GROUP/hpx/commit/494b97c42e82a818df9b628f26ae008ddafd9c8f
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/executors/include/hpx/executors/detail/index_queue_spawning.hpp
Log Message:
-----------
Minor tweaking of various pieces of the merge benchmark
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 9a207d667a55e6637f0035e04c3a63c11f9b31d6
https://github.com/STEllAR-GROUP/hpx/commit/9a207d667a55e6637f0035e04c3a63c11f9b31d6
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/executors/include/hpx/executors/detail/index_queue_spawning.hpp
M libs/core/executors/include/hpx/executors/fork_join_executor.hpp
Log Message:
-----------
Fixing yield interval for fork_join_executor
- flyby: change default scheduling mode for fork_join_executor to dynamic
- flyby: add missing header file
Commit: f459b96f9aa54edd9f79018b46b8baeb08448996
https://github.com/STEllAR-GROUP/hpx/commit/f459b96f9aa54edd9f79018b46b8baeb08448996
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
Log Message:
-----------
Measuring fork_join_executor with vtune
Commit: 353691b75644b48797b5d209b78fb3040d481a3e
https://github.com/STEllAR-GROUP/hpx/commit/353691b75644b48797b5d209b78fb3040d481a3e
Author: Agustin Berge <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
Log Message:
-----------
Rewrite as series of loops
Commit: cbe06a5116c6313da6e0caead9e97d2c42847245
https://github.com/STEllAR-GROUP/hpx/commit/cbe06a5116c6313da6e0caead9e97d2c42847245
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/unit/container_algorithms/merge_range.cpp
M libs/core/executors/include/hpx/executors/detail/index_queue_spawning.hpp
M libs/core/executors/include/hpx/executors/thread_pool_scheduler_bulk.hpp
Log Message:
-----------
More improvements to merge algorithm
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 7e36a626e62ca3a69a4a0a35c1f63b6bc0ebf536
https://github.com/STEllAR-GROUP/hpx/commit/7e36a626e62ca3a69a4a0a35c1f63b6bc0ebf536
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/algorithms/tests/performance/utils.hpp
M libs/core/compute_local/include/hpx/compute_local/vector.hpp
Log Message:
-----------
Unwrapping iterators to pointers, if possible
- flyby: adding numa-aware benchmarks
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 4cb4e9eee7d118e4f80502b1c2bfbd231036397d
https://github.com/STEllAR-GROUP/hpx/commit/4cb4e9eee7d118e4f80502b1c2bfbd231036397d
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M docs/sphinx/releases/whats_new_1_9_0.rst
M
libs/core/algorithms/include/hpx/parallel/algorithms/detail/advance_and_get_distance.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/include/hpx/parallel/util/loop.hpp
M libs/core/algorithms/include/hpx/parallel/util/transform_loop.hpp
M libs/core/iterator_support/CMakeLists.txt
A
libs/core/iterator_support/include/hpx/iterator_support/unwrap_iterator.hpp
M libs/core/type_support/include/hpx/type_support/is_contiguous_iterator.hpp
Log Message:
-----------
Unwrapping iterators to pointers for all algorithms based on loop and
transform-loop
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: e696df6a62da416969bd7bbc38db87f85d427942
https://github.com/STEllAR-GROUP/hpx/commit/e696df6a62da416969bd7bbc38db87f85d427942
Author: Agustin Berge <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
Log Message:
-----------
Support proxy reference types
Commit: 2f3363a5e6deb7588a3a8778b767480f0d2f1547
https://github.com/STEllAR-GROUP/hpx/commit/2f3363a5e6deb7588a3a8778b767480f0d2f1547
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/unit/algorithms/merge_tests.hpp
M
libs/core/iterator_support/include/hpx/iterator_support/unwrap_iterator.hpp
Log Message:
-----------
Reimplement pointer unwrapping using std::address_to. Add non-random-access
implementations to merge
Commit: de531aeb53c5bac465e2d8bace5101cecb2b51f2
https://github.com/STEllAR-GROUP/hpx/commit/de531aeb53c5bac465e2d8bace5101cecb2b51f2
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/util/transform_loop.hpp
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/algorithms/tests/unit/algorithms/merge_tests.hpp
M libs/core/execution/include/hpx/execution/executors/default_parameters.hpp
M libs/core/execution/include/hpx/execution/executors/static_chunk_size.hpp
Log Message:
-----------
Fixing partitioning
Commit: 27c3990f69e95be96249b4e244fce5cbbbbe9440
https://github.com/STEllAR-GROUP/hpx/commit/27c3990f69e95be96249b4e244fce5cbbbbe9440
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/util/loop.hpp
M libs/core/algorithms/include/hpx/parallel/util/transform_loop.hpp
Log Message:
-----------
Cleaning up iterator unwrapping
Commit: 46f3bbe165c30c3f8d46079fa173b0e5e9348ae1
https://github.com/STEllAR-GROUP/hpx/commit/46f3bbe165c30c3f8d46079fa173b0e5e9348ae1
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/datastructures/include/hpx/datastructures/tuple.hpp
Log Message:
-----------
Fixing hpx::tuple to always being usable with structured bindings
Commit: 927a03380ec6ae885faaab0dc855b1cba93c5bc8
https://github.com/STEllAR-GROUP/hpx/commit/927a03380ec6ae885faaab0dc855b1cba93c5bc8
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/execution/include/hpx/execution/algorithms/sync_wait.hpp
M libs/core/execution/include/hpx/execution/executors/default_parameters.hpp
M libs/core/execution/include/hpx/execution/executors/static_chunk_size.hpp
M libs/core/executors/include/hpx/executors/detail/index_queue_spawning.hpp
M libs/core/futures/include/hpx/futures/detail/future_data.hpp
Log Message:
-----------
More experimentation with the merge algorithm
flyby: fixing partitioners
Commit: 901750fb380069ba4e0fcfa8b4dfbb09497f77c0
https://github.com/STEllAR-GROUP/hpx/commit/901750fb380069ba4e0fcfa8b4dfbb09497f77c0
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/coroutines/include/hpx/coroutines/thread_enums.hpp
M libs/core/executors/include/hpx/executors/detail/index_queue_spawning.hpp
M
libs/core/schedulers/include/hpx/schedulers/local_priority_queue_scheduler.hpp
M tools/inspect/include_check.cpp
Log Message:
-----------
Reimplement partitioning for merge
- flyby: add --entropy and --num_chunks option to merge benchmark
- flyby: adding more contructors to thread_schedule_hint
- flyby (experimental): new threads that have placement hint defined are
initially scheduled with bound priority
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: e04dc5d297cfb3768e8ab24fa5e752eaac315620
https://github.com/STEllAR-GROUP/hpx/commit/e04dc5d297cfb3768e8ab24fa5e752eaac315620
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M
libs/core/algorithms/include/hpx/parallel/algorithms/detail/upper_lower_bound.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/executors/include/hpx/executors/detail/index_queue_spawning.hpp
Log Message:
-----------
Unwrapping iterators for lower_bound
Commit: 9f7952667c589ceda6c594f6ff46c35dd81f5374
https://github.com/STEllAR-GROUP/hpx/commit/9f7952667c589ceda6c594f6ff46c35dd81f5374
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/tests/performance/CMakeLists.txt
A libs/core/algorithms/tests/performance/benchmark_merge_sweep.cpp
Log Message:
-----------
Adding merge parameter sweep
Commit: d1f91a25517161fb8d35c8418a5e9551b706bd11
https://github.com/STEllAR-GROUP/hpx/commit/d1f91a25517161fb8d35c8418a5e9551b706bd11
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M
libs/core/algorithms/include/hpx/parallel/algorithms/detail/upper_lower_bound.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/performance/benchmark_merge_sweep.cpp
Log Message:
-----------
More cleanup for the merge implementation
Commit: 271e09700eeb8787516ee7fd606889961498e75a
https://github.com/STEllAR-GROUP/hpx/commit/271e09700eeb8787516ee7fd606889961498e75a
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/util/detail/chunk_size.hpp
M libs/core/algorithms/tests/performance/benchmark_merge_sweep.cpp
M libs/core/execution/CMakeLists.txt
A
libs/core/execution/include/hpx/execution/executors/collect_chunking_parameters.hpp
M
libs/core/execution/include/hpx/execution/executors/execution_parameters.hpp
M
libs/core/execution/include/hpx/execution/executors/execution_parameters_fwd.hpp
M libs/core/execution/include/hpx/execution/executors/num_cores.hpp
M libs/core/execution/tests/unit/executor_parameters.cpp
Log Message:
-----------
Adding collect_chunking_parameters parameters object and corresponding
customization points
Commit: 1ba4430455353b3b613fe8cfaa3182cdf78afcf6
https://github.com/STEllAR-GROUP/hpx/commit/1ba4430455353b3b613fe8cfaa3182cdf78afcf6
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M
libs/core/algorithms/include/hpx/parallel/algorithms/detail/upper_lower_bound.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/tests/performance/benchmark_merge_sweep.cpp
M libs/core/executors/include/hpx/executors/fork_join_executor.hpp
Log Message:
-----------
Adding adaptive chunking to the parameter sweep benchmark
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: b64c8c821a77eff68a4f3fb4a2b8dda938752cfd
https://github.com/STEllAR-GROUP/hpx/commit/b64c8c821a77eff68a4f3fb4a2b8dda938752cfd
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/include/hpx/parallel/run_on_all.hpp
M libs/core/algorithms/include/hpx/parallel/util/loop.hpp
M libs/core/algorithms/include/hpx/parallel/util/transfer.hpp
M libs/core/algorithms/tests/performance/benchmark_merge_sweep.cpp
Log Message:
-----------
Using execution context for yielding
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 4fbec95e677befe56caa933b96a074304009e6ec
https://github.com/STEllAR-GROUP/hpx/commit/4fbec95e677befe56caa933b96a074304009e6ec
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
M libs/core/algorithms/tests/performance/benchmark_merge_sweep.cpp
M libs/core/coroutines/include/hpx/coroutines/thread_enums.hpp
M
libs/core/schedulers/include/hpx/schedulers/local_priority_queue_scheduler.hpp
M libs/core/schedulers/include/hpx/schedulers/local_queue_scheduler.hpp
M
libs/core/schedulers/include/hpx/schedulers/local_workrequesting_scheduler.hpp
M libs/core/schedulers/include/hpx/schedulers/queue_holder_thread.hpp
Log Message:
-----------
Revert initial bound priority for threads with defined hint
- introduce thread_priority::initially_bound to make this setting explicit
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 9c274805652d0242b0fcf8c69080290b2939ce5b
https://github.com/STEllAR-GROUP/hpx/commit/9c274805652d0242b0fcf8c69080290b2939ce5b
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M libs/core/algorithms/include/hpx/parallel/util/detail/sender_util.hpp
Log Message:
-----------
Go back to HPX_CONCEPT_REQUIRES_ to avoid circular requires dependencies
Signed-off-by: Hartmut Kaiser <[email protected]>
Commit: 9b94c9f83678135ee4af5b066efaf7c62180b55f
https://github.com/STEllAR-GROUP/hpx/commit/9b94c9f83678135ee4af5b066efaf7c62180b55f
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-16 (Sat, 16 Aug 2025)
Changed paths:
M .github/workflows/macos_debug.yml
M .github/workflows/macos_debug_fetch_hwloc.yml
M cmake/HPX_SetupCUDA.cmake
M docs/sphinx/manual/prerequisites.rst
Log Message:
-----------
More C++20 fixes for build system
Commit: 91736ac2c4a17cebdf39a1f8afd35b70b69f097b
https://github.com/STEllAR-GROUP/hpx/commit/91736ac2c4a17cebdf39a1f8afd35b70b69f097b
Author: Hartmut Kaiser <[email protected]>
Date: 2025-08-17 (Sun, 17 Aug 2025)
Changed paths:
M .github/workflows/macos_debug.yml
M .github/workflows/macos_debug_fetch_hwloc.yml
M cmake/HPX_SetupCUDA.cmake
M docs/sphinx/manual/prerequisites.rst
M docs/sphinx/releases/whats_new_1_9_0.rst
M
libs/core/algorithms/include/hpx/parallel/algorithms/detail/advance_and_get_distance.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/detail/distance.hpp
M
libs/core/algorithms/include/hpx/parallel/algorithms/detail/upper_lower_bound.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/merge.hpp
M libs/core/algorithms/include/hpx/parallel/algorithms/transform.hpp
M libs/core/algorithms/include/hpx/parallel/run_on_all.hpp
M libs/core/algorithms/include/hpx/parallel/util/detail/chunk_size.hpp
M libs/core/algorithms/include/hpx/parallel/util/detail/sender_util.hpp
M libs/core/algorithms/include/hpx/parallel/util/foreach_partitioner.hpp
M libs/core/algorithms/include/hpx/parallel/util/loop.hpp
M libs/core/algorithms/include/hpx/parallel/util/transfer.hpp
M libs/core/algorithms/include/hpx/parallel/util/transform_loop.hpp
M libs/core/algorithms/tests/performance/CMakeLists.txt
M libs/core/algorithms/tests/performance/benchmark_merge.cpp
A libs/core/algorithms/tests/performance/benchmark_merge_sweep.cpp
M libs/core/algorithms/tests/performance/utils.hpp
M libs/core/algorithms/tests/unit/algorithms/merge.cpp
M libs/core/algorithms/tests/unit/algorithms/merge_tests.hpp
M libs/core/algorithms/tests/unit/algorithms/test_utils.hpp
M libs/core/algorithms/tests/unit/container_algorithms/merge_range.cpp
M libs/core/compute_local/include/hpx/compute_local/vector.hpp
M libs/core/coroutines/include/hpx/coroutines/thread_enums.hpp
M libs/core/datastructures/include/hpx/datastructures/tuple.hpp
M libs/core/execution/CMakeLists.txt
M libs/core/execution/include/hpx/execution/algorithms/sync_wait.hpp
A
libs/core/execution/include/hpx/execution/executors/collect_chunking_parameters.hpp
M libs/core/execution/include/hpx/execution/executors/default_parameters.hpp
M
libs/core/execution/include/hpx/execution/executors/execution_parameters.hpp
M
libs/core/execution/include/hpx/execution/executors/execution_parameters_fwd.hpp
A libs/core/execution/include/hpx/execution/executors/max_num_chunks.hpp
M libs/core/execution/include/hpx/execution/executors/num_cores.hpp
M libs/core/execution/include/hpx/execution/executors/static_chunk_size.hpp
M libs/core/execution/tests/unit/executor_parameters.cpp
M libs/core/executors/include/hpx/executors/detail/index_queue_spawning.hpp
M libs/core/executors/include/hpx/executors/fork_join_executor.hpp
M libs/core/executors/include/hpx/executors/thread_pool_scheduler_bulk.hpp
M libs/core/futures/include/hpx/futures/detail/future_data.hpp
M libs/core/iterator_support/CMakeLists.txt
A
libs/core/iterator_support/include/hpx/iterator_support/unwrap_iterator.hpp
M libs/core/itt_notify/include/hpx/modules/itt_notify.hpp
M libs/core/itt_notify/src/itt_notify.cpp
M
libs/core/schedulers/include/hpx/schedulers/local_priority_queue_scheduler.hpp
M libs/core/schedulers/include/hpx/schedulers/local_queue_scheduler.hpp
M
libs/core/schedulers/include/hpx/schedulers/local_workrequesting_scheduler.hpp
M libs/core/schedulers/include/hpx/schedulers/queue_holder_thread.hpp
M libs/core/schedulers/include/hpx/schedulers/thread_queue.hpp
M libs/core/thread_pools/include/hpx/thread_pools/scheduling_loop.hpp
M libs/core/type_support/include/hpx/type_support/is_contiguous_iterator.hpp
M tools/inspect/include_check.cpp
Log Message:
-----------
Merge pull request #6723 from STEllAR-GROUP/merge
Optimize `hpx::merge`
Compare:
https://github.com/STEllAR-GROUP/hpx/compare/a6e71e1e141f...91736ac2c4a1
To unsubscribe from these emails, change your notification settings at
https://github.com/STEllAR-GROUP/hpx/settings/notifications
_______________________________________________
hpx-commits mailing list
[email protected]
https://mail.cct.lsu.edu/mailman/listinfo/hpx-commits