Branch: refs/heads/fixing_5345
Home: https://github.com/STEllAR-GROUP/hpx
Commit: c49b81ef530aad08134e8e8ef4677bbf0be6a003
https://github.com/STEllAR-GROUP/hpx/commit/c49b81ef530aad08134e8e8ef4677bbf0be6a003
Author: Hartmut Kaiser <[email protected]>
Date: 2021-05-28 (Fri, 28 May 2021)
Changed paths:
M libs/core/functional/include/hpx/functional/bind.hpp
M libs/core/functional/include/hpx/functional/bind_back.hpp
M libs/core/functional/include/hpx/functional/bind_front.hpp
M libs/core/functional/include/hpx/functional/deferred_call.hpp
M libs/core/functional/include/hpx/functional/function.hpp
M libs/core/functional/include/hpx/functional/function_ref.hpp
M libs/core/functional/include/hpx/functional/one_shot.hpp
M
libs/core/functional/include/hpx/functional/traits/get_function_address.hpp
M
libs/core/functional/include/hpx/functional/traits/get_function_annotation.hpp
M libs/core/functional/include/hpx/functional/unique_function.hpp
M libs/core/threading_base/include/hpx/threading_base/annotated_function.hpp
M libs/core/threading_base/include/hpx/threading_base/thread_description.hpp
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/for_each.hpp
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/for_loop.hpp
M libs/parallelism/algorithms/include/hpx/parallel/algorithms/transform.hpp
M
libs/parallelism/algorithms/include/hpx/parallel/algorithms/transform_reduce.hpp
M
libs/parallelism/algorithms/include/hpx/parallel/util/detail/partitioner_iteration.hpp
M
libs/parallelism/execution/include/hpx/execution/detail/async_launch_policy_dispatch.hpp
M
libs/parallelism/execution/include/hpx/execution/detail/post_policy_dispatch.hpp
M
libs/parallelism/execution/include/hpx/execution/executors/execution_parameters.hpp
M
libs/parallelism/execution/include/hpx/execution/executors/rebind_executor.hpp
M libs/parallelism/execution/tests/unit/CMakeLists.txt
R libs/parallelism/execution/tests/unit/created_executor.cpp
R libs/parallelism/execution/tests/unit/parallel_executor.cpp
R libs/parallelism/execution/tests/unit/parallel_fork_executor.cpp
R libs/parallelism/execution/tests/unit/parallel_policy_executor.cpp
R libs/parallelism/execution/tests/unit/polymorphic_executor.cpp
R libs/parallelism/execution/tests/unit/shared_parallel_executor.cpp
R libs/parallelism/execution/tests/unit/standalone_thread_pool_executor.cpp
M libs/parallelism/executors/CMakeLists.txt
M libs/parallelism/executors/include/hpx/executors/dataflow.hpp
M
libs/parallelism/executors/include/hpx/executors/detail/hierarchical_spawning.hpp
M libs/parallelism/executors/include/hpx/executors/execution_policy.hpp
A
libs/parallelism/executors/include/hpx/executors/execution_policy_annotation.hpp
M libs/parallelism/executors/include/hpx/executors/fork_join_executor.hpp
M libs/parallelism/executors/include/hpx/executors/parallel_executor.hpp
M
libs/parallelism/executors/include/hpx/executors/restricted_thread_pool_executor.hpp
M libs/parallelism/executors/tests/unit/CMakeLists.txt
A libs/parallelism/executors/tests/unit/annotation_property.cpp
A libs/parallelism/executors/tests/unit/created_executor.cpp
A libs/parallelism/executors/tests/unit/parallel_executor.cpp
A libs/parallelism/executors/tests/unit/parallel_fork_executor.cpp
A libs/parallelism/executors/tests/unit/parallel_policy_executor.cpp
A libs/parallelism/executors/tests/unit/polymorphic_executor.cpp
A libs/parallelism/executors/tests/unit/shared_parallel_executor.cpp
A libs/parallelism/executors/tests/unit/standalone_thread_pool_executor.cpp
Log Message:
-----------
Adding make_with_annotation and get_annotation properties
- this adds an implementation of the new properties for all execution policies
and for the parallel_executor
- adding thread_description to async_launch_policy_dispatch
- flyby: adding constexpr to get_function_address and get_function_name traits
- flyby: fixing annotated_function to rely on annotate_function
- flyby: moving executor tests from execution to executors module
- flyby: modernized implementation of execution policies
Commit: 7a7bd1eafdaa65ee388040d0739c839750766e95
https://github.com/STEllAR-GROUP/hpx/commit/7a7bd1eafdaa65ee388040d0739c839750766e95
Author: Hartmut Kaiser <[email protected]>
Date: 2021-05-28 (Fri, 28 May 2021)
Changed paths:
M libs/core/properties/include/hpx/properties/property.hpp
M libs/core/threading_base/include/hpx/threading_base/thread_description.hpp
M
libs/parallelism/execution/include/hpx/execution/executors/rebind_executor.hpp
M
libs/parallelism/executors/include/hpx/executors/detail/hierarchical_spawning.hpp
M libs/parallelism/executors/include/hpx/executors/execution_policy.hpp
M
libs/parallelism/executors/include/hpx/executors/execution_policy_annotation.hpp
M libs/parallelism/executors/include/hpx/executors/parallel_executor.hpp
M
libs/parallelism/executors/include/hpx/executors/restricted_thread_pool_executor.hpp
M libs/parallelism/executors/tests/unit/annotation_property.cpp
Log Message:
-----------
Addressing review comments
- flyby: adding more tests
- flyby: fixing compilation issues
Commit: 0947bd11f4dabcc39487c368cf1405c362b07765
https://github.com/STEllAR-GROUP/hpx/commit/0947bd11f4dabcc39487c368cf1405c362b07765
Author: Hartmut Kaiser <[email protected]>
Date: 2021-05-28 (Fri, 28 May 2021)
Changed paths:
M
libs/parallelism/execution/include/hpx/execution/executors/execution_parameters.hpp
M
libs/parallelism/executors/include/hpx/executors/execution_policy_annotation.hpp
M libs/parallelism/executors/include/hpx/executors/p0443_executor.hpp
M libs/parallelism/executors/include/hpx/executors/parallel_executor.hpp
M libs/parallelism/executors/tests/unit/annotation_property.cpp
M libs/parallelism/executors/tests/unit/p0443_executor.cpp
Log Message:
-----------
Remove `make_` prefix from properties
- flyby: improve error messages for properties that are not supported
Commit: 8b1525d80423b249268ae6fb2f2e54d1ad53c765
https://github.com/STEllAR-GROUP/hpx/commit/8b1525d80423b249268ae6fb2f2e54d1ad53c765
Author: Hartmut Kaiser <[email protected]>
Date: 2021-05-28 (Fri, 28 May 2021)
Changed paths:
M libs/core/threading_base/include/hpx/threading_base/register_thread.hpp
Log Message:
-----------
Resetting description after thread exits to avoid dangling pointers
Compare:
https://github.com/STEllAR-GROUP/hpx/compare/abdbbc5ff908...8b1525d80423
_______________________________________________
hpx-commits mailing list
[email protected]
https://mail.cct.lsu.edu/mailman/listinfo/hpx-commits