Branch: refs/heads/release
Home: https://github.com/STEllAR-GROUP/hpx
Commit: 955d2ac1ac5145a55eef2fd05753d4573e7249d7
https://github.com/STEllAR-GROUP/hpx/commit/955d2ac1ac5145a55eef2fd05753d4573e7249d7
Author: Hartmut Kaiser <[email protected]>
Date: 2021-05-31 (Mon, 31 May 2021)
Changed paths:
M libs/core/logging/include/hpx/logging/manipulator.hpp
M libs/core/logging/include/hpx/modules/logging.hpp
M libs/core/logging/src/logging.cpp
M libs/full/init_runtime/CMakeLists.txt
M libs/full/init_runtime/include/hpx/init_runtime/detail/init_logging.hpp
M libs/full/init_runtime/src/hpx_init.cpp
A libs/full/init_runtime/src/init_logging.cpp
M
libs/full/init_runtime_local/include/hpx/init_runtime_local/detail/init_logging.hpp
M libs/full/init_runtime_local/src/init_logging.cpp
M libs/full/init_runtime_local/src/init_runtime_local.cpp
M libs/full/runtime_configuration/src/runtime_configuration.cpp
Log Message:
-----------
Adding enable_logging/disable_logging API functions
- flyby: simplify logging initialization, moving code to source files
Commit: 6ca82259e448d37b6d5eb380fc717c4091846d65
https://github.com/STEllAR-GROUP/hpx/commit/6ca82259e448d37b6d5eb380fc717c4091846d65
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 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: 02601f933a850b1920eaea3824452ade98a324e4
https://github.com/STEllAR-GROUP/hpx/commit/02601f933a850b1920eaea3824452ade98a324e4
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 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: 97e811d28411690069cad8dd267f8f348bc04e62
https://github.com/STEllAR-GROUP/hpx/commit/97e811d28411690069cad8dd267f8f348bc04e62
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 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
Commit: e509f93739c87ccb5c0031e4987bf2eb3efc63fb
https://github.com/STEllAR-GROUP/hpx/commit/e509f93739c87ccb5c0031e4987bf2eb3efc63fb
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 2021)
Changed paths:
M libs/core/threading_base/include/hpx/threading_base/annotated_function.hpp
M libs/core/threading_base/include/hpx/threading_base/register_thread.hpp
M libs/core/threading_base/src/annotated_function.cpp
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/tests/unit/annotation_property.cpp
Log Message:
-----------
Adding support for std::string as argument for annotation property
Commit: 82902a95c650a0b06a1c7917b142a27ee65e6d1f
https://github.com/STEllAR-GROUP/hpx/commit/82902a95c650a0b06a1c7917b142a27ee65e6d1f
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 2021)
Changed paths:
M libs/parallelism/executors/include/hpx/executors/parallel_executor.hpp
Log Message:
-----------
Resolve merge conflicts
Commit: 5ddda5af0fce3b9acd33784629f439c58d3a3a8f
https://github.com/STEllAR-GROUP/hpx/commit/5ddda5af0fce3b9acd33784629f439c58d3a3a8f
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 2021)
Changed paths:
M libs/core/threading_base/include/hpx/threading_base/thread_description.hpp
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: ca2ffdc03ae5b8e79e7ca0768637d7dd1a0088e5
https://github.com/STEllAR-GROUP/hpx/commit/ca2ffdc03ae5b8e79e7ca0768637d7dd1a0088e5
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 2021)
Changed paths:
M libs/core/threading_base/include/hpx/threading_base/thread_description.hpp
Log Message:
-----------
Addressing review comments
- flyby: adding more tests
- flyby: fixing compilation issues
Commit: f335d6ad43aeaec5eed51d9fd1f221c2f988fed5
https://github.com/STEllAR-GROUP/hpx/commit/f335d6ad43aeaec5eed51d9fd1f221c2f988fed5
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 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: 654fe4fd9ddcd430d48bb994cc1e887cd5c671b2
https://github.com/STEllAR-GROUP/hpx/commit/654fe4fd9ddcd430d48bb994cc1e887cd5c671b2
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 2021)
Changed paths:
M
libs/parallelism/executors/include/hpx/executors/execution_policy_annotation.hpp
M libs/parallelism/executors/include/hpx/executors/parallel_executor.hpp
Log Message:
-----------
Adding support for std::string as argument for annotation property
Commit: a52f8d2adea3c5ef0be26cd4ab11e2c58b97c183
https://github.com/STEllAR-GROUP/hpx/commit/a52f8d2adea3c5ef0be26cd4ab11e2c58b97c183
Author: Hartmut Kaiser <[email protected]>
Date: 2021-06-01 (Tue, 01 Jun 2021)
Changed paths:
M libs/core/functional/tests/unit/tag_dispatch.cpp
M libs/core/properties/tests/unit/properties.cpp
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/guided_pool_executor.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
Log Message:
-----------
Fixing merge conflicts
Commit: dd699460195557a36d0b7750d92c06f7d81d99f4
https://github.com/STEllAR-GROUP/hpx/commit/dd699460195557a36d0b7750d92c06f7d81d99f4
Author: Mikael Simberg <[email protected]>
Date: 2021-06-02 (Wed, 02 Jun 2021)
Changed paths:
M .jenkins/cscs/env-clang-cuda.sh
Log Message:
-----------
Update cudatoolkit module name in clang-cuda Jenkins configuration
Commit: 06b66c951779fa9462b8f270fcd6ff9d4b823ecb
https://github.com/STEllAR-GROUP/hpx/commit/06b66c951779fa9462b8f270fcd6ff9d4b823ecb
Author: Mikael Simberg <[email protected]>
Date: 2021-06-02 (Wed, 02 Jun 2021)
Changed paths:
M libs/core/errors/docs/index.rst
M libs/core/io_service/docs/index.rst
M libs/parallelism/futures/docs/index.rst
Log Message:
-----------
Small formatting fixes to documentation
Commit: bf304475a82ddf6d0297c8f58cbb8a1adaa71351
https://github.com/STEllAR-GROUP/hpx/commit/bf304475a82ddf6d0297c8f58cbb8a1adaa71351
Author: Mikael Simberg <[email protected]>
Date: 2021-06-02 (Wed, 02 Jun 2021)
Changed paths:
M .jenkins/cscs/batch.sh
M .jenkins/cscs/env-clang-10.sh
M .jenkins/cscs/env-clang-8.sh
M .jenkins/cscs/env-clang-9.sh
M .jenkins/cscs/env-clang-apex.sh
M .jenkins/cscs/env-clang-cuda.sh
M .jenkins/cscs/env-clang-newest.sh
M .jenkins/cscs/env-clang-oldest.sh
A .jenkins/cscs/env-common.sh
M .jenkins/cscs/env-gcc-10.sh
M .jenkins/cscs/env-gcc-cuda.sh
M .jenkins/cscs/env-gcc-newest.sh
M .jenkins/cscs/env-gcc-oldest.sh
M .jenkins/cscs/env-icc.sh
Log Message:
-----------
Use ccache for Jenkins builds on Piz Daint
Commit: 6419d5becde2c6d12f0cfc6dbec4c71027e1c40a
https://github.com/STEllAR-GROUP/hpx/commit/6419d5becde2c6d12f0cfc6dbec4c71027e1c40a
Author: Mikael Simberg <[email protected]>
Date: 2021-06-02 (Wed, 02 Jun 2021)
Changed paths:
M .jenkins/cscs/env-clang-cuda.sh
Log Message:
-----------
Merge pull request #5363 from msimberg/update-clang-cuda-module
Update cudatoolkit module name in clang-cuda Jenkins configuration
Commit: 9973a98c9f439eab46021671403990e62367e581
https://github.com/STEllAR-GROUP/hpx/commit/9973a98c9f439eab46021671403990e62367e581
Author: Mikael Simberg <[email protected]>
Date: 2021-06-02 (Wed, 02 Jun 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/functional/tests/unit/tag_dispatch.cpp
M libs/core/properties/include/hpx/properties/property.hpp
M libs/core/properties/tests/unit/properties.cpp
M libs/core/threading_base/include/hpx/threading_base/annotated_function.hpp
M libs/core/threading_base/include/hpx/threading_base/register_thread.hpp
M libs/core/threading_base/include/hpx/threading_base/thread_description.hpp
M libs/core/threading_base/src/annotated_function.cpp
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/guided_pool_executor.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/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
M libs/parallelism/executors/tests/unit/p0443_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:
-----------
Merge pull request #5347 from STEllAR-GROUP/fixing_5345
Remove `make_` prefix for executor properties
Commit: eda1ef2c4cf7e45df739df45dea3b311fc73c779
https://github.com/STEllAR-GROUP/hpx/commit/eda1ef2c4cf7e45df739df45dea3b311fc73c779
Author: Mikael Simberg <[email protected]>
Date: 2021-06-02 (Wed, 02 Jun 2021)
Changed paths:
M libs/core/logging/include/hpx/logging/manipulator.hpp
M libs/core/logging/include/hpx/modules/logging.hpp
M libs/core/logging/src/logging.cpp
M libs/full/init_runtime/CMakeLists.txt
M libs/full/init_runtime/include/hpx/init_runtime/detail/init_logging.hpp
M libs/full/init_runtime/src/hpx_init.cpp
A libs/full/init_runtime/src/init_logging.cpp
M
libs/full/init_runtime_local/include/hpx/init_runtime_local/detail/init_logging.hpp
M libs/full/init_runtime_local/src/init_logging.cpp
M libs/full/init_runtime_local/src/init_runtime_local.cpp
M libs/full/runtime_configuration/src/runtime_configuration.cpp
Log Message:
-----------
Merge pull request #5351 from STEllAR-GROUP/enable_disable_logging
Adding enable_logging/disable_logging API functions
Commit: 33ac6e84a993ab1837b1348f9a504eef331d90ee
https://github.com/STEllAR-GROUP/hpx/commit/33ac6e84a993ab1837b1348f9a504eef331d90ee
Author: Mikael Simberg <[email protected]>
Date: 2021-06-02 (Wed, 02 Jun 2021)
Changed paths:
M CMakeLists.txt
Log Message:
-----------
Disable pkgconfig by default again on macOS
Commit: e0ef27f14a5e79aef0d00641e95797168c8e36dc
https://github.com/STEllAR-GROUP/hpx/commit/e0ef27f14a5e79aef0d00641e95797168c8e36dc
Author: Mikael Simberg <[email protected]>
Date: 2021-06-03 (Thu, 03 Jun 2021)
Changed paths:
M CMakeLists.txt
Log Message:
-----------
Merge pull request #5367 from msimberg/disable-macos-pkgbuild-test
Disable pkgconfig by default again on macOS
Commit: 7ac0523a8edbb509218dfbcf151904d121a3872c
https://github.com/STEllAR-GROUP/hpx/commit/7ac0523a8edbb509218dfbcf151904d121a3872c
Author: Mikael Simberg <[email protected]>
Date: 2021-06-03 (Thu, 03 Jun 2021)
Changed paths:
M libs/parallelism/execution/include/hpx/execution/algorithms/just.hpp
M libs/parallelism/execution/tests/unit/algorithm_just.cpp
M libs/parallelism/execution/tests/unit/algorithm_just_on.cpp
Log Message:
-----------
Decay types in just_sender value_types to match stored types
Commit: 89156c0316f5ae8f4041bc2afa5e273b0d528192
https://github.com/STEllAR-GROUP/hpx/commit/89156c0316f5ae8f4041bc2afa5e273b0d528192
Author: Mikael Simberg <[email protected]>
Date: 2021-06-04 (Fri, 04 Jun 2021)
Changed paths:
M libs/parallelism/execution/include/hpx/execution/algorithms/just.hpp
M libs/parallelism/execution/tests/unit/algorithm_just.cpp
M libs/parallelism/execution/tests/unit/algorithm_just_on.cpp
Log Message:
-----------
Merge pull request #5370 from msimberg/just-decay-value-types
Decay types in just_sender value_types to match stored types
Commit: 2e8c72339e1ff829abcf9ddf19a5cce0db5cbab9
https://github.com/STEllAR-GROUP/hpx/commit/2e8c72339e1ff829abcf9ddf19a5cce0db5cbab9
Author: Mikael Simberg <[email protected]>
Date: 2021-06-04 (Fri, 04 Jun 2021)
Changed paths:
M .jenkins/cscs/batch.sh
M .jenkins/cscs/env-clang-10.sh
M .jenkins/cscs/env-clang-8.sh
M .jenkins/cscs/env-clang-9.sh
M .jenkins/cscs/env-clang-apex.sh
M .jenkins/cscs/env-clang-cuda.sh
M .jenkins/cscs/env-clang-newest.sh
M .jenkins/cscs/env-clang-oldest.sh
A .jenkins/cscs/env-common.sh
M .jenkins/cscs/env-gcc-10.sh
M .jenkins/cscs/env-gcc-cuda.sh
M .jenkins/cscs/env-gcc-newest.sh
M .jenkins/cscs/env-gcc-oldest.sh
M .jenkins/cscs/env-icc.sh
Log Message:
-----------
Merge pull request #5365 from msimberg/jenkins-daint-ccache
Use ccache for Jenkins builds on Piz Daint
Commit: 740b68546f9f549e0d3216018386b6265f1912d2
https://github.com/STEllAR-GROUP/hpx/commit/740b68546f9f549e0d3216018386b6265f1912d2
Author: Mikael Simberg <[email protected]>
Date: 2021-06-04 (Fri, 04 Jun 2021)
Changed paths:
M .jenkins/cscs/batch.sh
M .jenkins/cscs/env-clang-10.sh
M .jenkins/cscs/env-clang-8.sh
M .jenkins/cscs/env-clang-9.sh
M .jenkins/cscs/env-clang-apex.sh
M .jenkins/cscs/env-clang-cuda.sh
M .jenkins/cscs/env-clang-newest.sh
M .jenkins/cscs/env-clang-oldest.sh
A .jenkins/cscs/env-common.sh
M .jenkins/cscs/env-gcc-10.sh
M .jenkins/cscs/env-gcc-cuda.sh
M .jenkins/cscs/env-gcc-newest.sh
M .jenkins/cscs/env-gcc-oldest.sh
M .jenkins/cscs/env-icc.sh
M CMakeLists.txt
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/functional/tests/unit/tag_dispatch.cpp
M libs/core/logging/include/hpx/logging/manipulator.hpp
M libs/core/logging/include/hpx/modules/logging.hpp
M libs/core/logging/src/logging.cpp
M libs/core/properties/include/hpx/properties/property.hpp
M libs/core/properties/tests/unit/properties.cpp
M libs/core/threading_base/include/hpx/threading_base/annotated_function.hpp
M libs/core/threading_base/include/hpx/threading_base/register_thread.hpp
M libs/core/threading_base/include/hpx/threading_base/thread_description.hpp
M libs/core/threading_base/src/annotated_function.cpp
M libs/full/init_runtime/CMakeLists.txt
M libs/full/init_runtime/include/hpx/init_runtime/detail/init_logging.hpp
M libs/full/init_runtime/src/hpx_init.cpp
A libs/full/init_runtime/src/init_logging.cpp
M
libs/full/init_runtime_local/include/hpx/init_runtime_local/detail/init_logging.hpp
M libs/full/init_runtime_local/src/init_logging.cpp
M libs/full/init_runtime_local/src/init_runtime_local.cpp
M libs/full/runtime_configuration/src/runtime_configuration.cpp
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/algorithms/just.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
M libs/parallelism/execution/tests/unit/algorithm_just.cpp
M libs/parallelism/execution/tests/unit/algorithm_just_on.cpp
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/guided_pool_executor.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/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
M libs/parallelism/executors/tests/unit/p0443_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:
-----------
Merge remote-tracking branch 'origin/master' into release
Compare:
https://github.com/STEllAR-GROUP/hpx/compare/dd1bd3d327e8...740b68546f9f
_______________________________________________
hpx-commits mailing list
[email protected]
https://mail.cct.lsu.edu/mailman/listinfo/hpx-commits