├── .circleci ├── config.yml ├── conv.xsl ├── tests.examples1.targets ├── tests.examples2.targets ├── tests.regressions1.targets ├── tests.regressions2.targets ├── tests.unit1.algorithms ├── tests.unit1.container_algorithms ├── tests.unit1.segmented_algorithms ├── tests.unit1.targets ├── tests.unit2.algorithms ├── tests.unit2.container_algorithms ├── tests.unit2.segmented_algorithms ├── tests.unit2.targets ├── tests.unit3.algorithms ├── tests.unit3.targets ├── tests.unit4.algorithms ├── tests.unit4.targets └── tests.unit5.targets ├── .clang-format ├── .clang-tidy ├── .cmake-format.py ├── .codacy.yml ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── SUPPORT.md ├── dependabot.yml ├── hpx-no-inspect ├── stale.yml └── workflows │ ├── cff-validator.yml │ ├── codeql.yml │ ├── linux_crosscompile_arm_eve_sve_release.yml │ ├── linux_crosscompile_arm_sve_release.yml │ ├── linux_debug.yml │ ├── linux_debug_fetch_boost.yml │ ├── linux_debug_fetch_hwloc.yml │ ├── linux_debug_modules.yml │ ├── linux_hip.yml │ ├── linux_release_fetchcontent.yml │ ├── linux_release_static.yml │ ├── linux_sanitizers.yml │ ├── linux_with_bench_test.yml │ ├── linux_with_nanobench_test.yml │ ├── macos_debug.yml │ ├── macos_debug_fetch_boost.yml │ ├── macos_debug_fetch_hwloc.yml │ ├── msvc_analysis.yml │ ├── tests.examples.targets │ ├── windows_clang_debug.yml │ ├── windows_clang_release.yml │ ├── windows_debug_vs2022.yml │ ├── windows_debug_vs2022_fetch_boost.yml │ ├── windows_debug_vs2022_fetch_hwloc.yml │ ├── windows_debug_vs2022_modules.yml │ ├── windows_release_2022.yml │ ├── windows_release_gcc_mingw.yml │ └── windows_release_static.yml ├── .gitignore ├── .jenkins ├── common │ └── set_github_status.sh ├── lsu-perftests │ ├── Jenkinsfile │ ├── batch.sh │ ├── comment_github.sh │ ├── ctest.cmake │ ├── entry.sh │ ├── env-perftests.sh │ ├── launch_perftests.sh │ └── slurm-constraint-perftests.sh ├── lsu-test-coverage │ ├── Jenkinsfile │ ├── batch.sh │ ├── entry.sh │ ├── env-test-coverage.sh │ └── slurm-constraint-test-coverage.sh └── lsu │ ├── Jenkinsfile │ ├── batch.sh │ ├── ctest.cmake │ ├── entry.sh │ ├── env-clang-16.sh │ ├── env-clang-17-apex.sh │ ├── env-clang-17.sh │ ├── env-clang-18.sh │ ├── env-clang-19.sh │ ├── env-clang-20.sh │ ├── env-common.sh │ ├── env-gcc-12-cuda-12-dgx.sh │ ├── env-gcc-12-cuda-12.sh │ ├── env-gcc-12.sh │ ├── env-gcc-13.sh │ ├── env-gcc-14.sh │ ├── env-gcc-15.sh │ ├── env-hipcc.sh │ ├── slurm-configuration-clang-16.sh │ ├── slurm-configuration-clang-17-apex.sh │ ├── slurm-configuration-clang-17.sh │ ├── slurm-configuration-clang-18.sh │ ├── slurm-configuration-clang-19.sh │ ├── slurm-configuration-clang-20.sh │ ├── slurm-configuration-gcc-12-cuda-12-dgx.sh │ ├── slurm-configuration-gcc-12-cuda-12.sh │ ├── slurm-configuration-gcc-12.sh │ ├── slurm-configuration-gcc-13.sh │ ├── slurm-configuration-gcc-14.sh │ ├── slurm-configuration-gcc-15.sh │ └── slurm-configuration-hipcc.sh ├── CITATION.cff ├── CMakeLists.txt ├── CTestConfig.cmake ├── LICENSE_1_0.txt ├── README.rst ├── cmake ├── CacheLineSize.cmake ├── FindAmplifier.cmake ├── FindAsio.cmake ├── FindBreathe.cmake ├── FindGasnet.cmake ├── FindHwloc.cmake ├── FindJemalloc.cmake ├── FindLibSigSegv.cmake ├── FindLibfabric.cmake ├── FindMSR.cmake ├── FindOrangeFS.cmake ├── FindPWR.cmake ├── FindPapi.cmake ├── FindQThreads.cmake ├── FindRDMA_CM.cmake ├── FindRdmacm.cmake ├── FindSnappy.cmake ├── FindSphinx.cmake ├── FindStdexec.cmake ├── FindTBB.cmake ├── FindTBBmalloc.cmake ├── FindTCMalloc.cmake ├── FindValgrind.cmake ├── HPX_AddCompileFlag.cmake ├── HPX_AddCompileTest.cmake ├── HPX_AddComponent.cmake ├── HPX_AddConfigTest.cmake ├── HPX_AddDefinitions.cmake ├── HPX_AddExecutable.cmake ├── HPX_AddLibrary.cmake ├── HPX_AddLibraryHeaders.cmake ├── HPX_AddLibrarySources.cmake ├── HPX_AddLinkFlag.cmake ├── HPX_AddModule.cmake ├── HPX_AddParcelport.cmake ├── HPX_AddPseudoDependencies.cmake ├── HPX_AddPseudoTarget.cmake ├── HPX_AddSourceGroup.cmake ├── HPX_AddTest.cmake ├── HPX_AppendProperty.cmake ├── HPX_CXXModules.cmake ├── HPX_CXXOverrides.cmake ├── HPX_CheckCXXStandard.cmake ├── HPX_CollectStdHeaders.cmake ├── HPX_CompilerFlagsTargets.cmake ├── HPX_Documentation.cmake ├── HPX_ExportTargets.cmake ├── HPX_FindHwloc.cmake ├── HPX_ForceOutOfTreeBuild.cmake ├── HPX_ForwardCacheVariables.cmake ├── HPX_GenerateDependencyReport.cmake ├── HPX_GeneratePackage.cmake ├── HPX_GeneratePackageUtils.cmake ├── HPX_GitCommit.cmake ├── HPX_HandleComponentDependencies.cmake ├── HPX_Include.cmake ├── HPX_Message.cmake ├── HPX_Option.cmake ├── HPX_ParcelPorts.cmake ├── HPX_PerformCxxFeatureTests.cmake ├── HPX_PrintSummary.cmake ├── HPX_SetCMakePolicy.cmake ├── HPX_SetFullRPATH.cmake ├── HPX_SetLibName.cmake ├── HPX_SetOutputPaths.cmake ├── HPX_SetPlatform.cmake ├── HPX_SetupAllocator.cmake ├── HPX_SetupApex.cmake ├── HPX_SetupAsio.cmake ├── HPX_SetupBoost.cmake ├── HPX_SetupBoostFilesystem.cmake ├── HPX_SetupBoostIostreams.cmake ├── HPX_SetupBoostRegex.cmake ├── HPX_SetupCUDA.cmake ├── HPX_SetupDatapar.cmake ├── HPX_SetupEve.cmake ├── HPX_SetupGasnet.cmake ├── HPX_SetupHIP.cmake ├── HPX_SetupHwloc.cmake ├── HPX_SetupLCI.cmake ├── HPX_SetupLibCDS.cmake ├── HPX_SetupMPI.cmake ├── HPX_SetupNanobench.cmake ├── HPX_SetupPapi.cmake ├── HPX_SetupSVE.cmake ├── HPX_SetupSYCL.cmake ├── HPX_SetupStdexec.cmake ├── HPX_SetupTarget.cmake ├── HPX_SetupThreads.cmake ├── HPX_SetupValgrind.cmake ├── HPX_SetupVc.cmake ├── HPX_ShortenPseudoTarget.cmake ├── HPX_UpdateGitDocs.cmake ├── HPX_Utils.cmake ├── TargetArch.cmake ├── installed_hpx.cmake ├── packaging │ └── rpm │ │ ├── CMakeLists.txt │ │ ├── Changelog.txt │ │ └── hpx-no-inspect ├── templates │ ├── HPXCacheVariables.cmake.in │ ├── HPXConfig.cmake.in │ ├── HPXMacros.cmake.in │ ├── cmake_variables.rst.in │ ├── compatibility_header.hpp.in │ ├── conf.py.in │ ├── config_defines_entries_for_modules.cpp.in │ ├── config_defines_strings.hpp.in │ ├── global_module_header.hpp.in │ ├── global_module_header_modules.hpp.in │ ├── global_module_header_modules_separate.hpp.in │ ├── hpx.ixx.in │ ├── hpx_application.pc.in │ ├── hpx_component.pc.in │ ├── hpxcxx.in │ ├── hpxdep_index.html.in │ ├── hpxrun.py.in │ ├── modules_enabled.hpp.in │ └── std_headers.hpp.in ├── tests │ ├── builtin_forward_move.cpp │ ├── builtin_frame_address.cpp │ ├── c11_aligned_alloc.cpp │ ├── contracts.cpp │ ├── cpuid.cpp │ ├── cxx11_atomic_init_flag.cpp │ ├── cxx11_std_atomic.cpp │ ├── cxx11_std_atomic_128bit.cpp │ ├── cxx11_std_quick_exit.cpp │ ├── cxx11_std_shared_ptr_lwg3018.cpp │ ├── cxx14_delete_operator_with_size.cpp │ ├── cxx17_aligned_new.cpp │ ├── cxx17_copy_elision.cpp │ ├── cxx17_filesystem.cpp │ ├── cxx17_hardware_destructive_interference_size.cpp │ ├── cxx17_noexcept_function.cpp │ ├── cxx17_optional_copy_elision.cpp │ ├── cxx17_shared_ptr_array.cpp │ ├── cxx17_std_aligned_alloc.cpp │ ├── cxx17_std_execution_policies.cpp │ ├── cxx17_std_scan_algorithms.cpp │ ├── cxx17_std_transform_scan_algorithms.cpp │ ├── cxx20_constexpr_destructor.cpp │ ├── cxx20_coroutines.cpp │ ├── cxx20_experimental_simd.cpp │ ├── cxx20_lambda_capture.cpp │ ├── cxx20_no_unique_address_attribute.cpp │ ├── cxx20_paren_initialization_of_aggregates.cpp │ ├── cxx20_perfect_pack_capture.cpp │ ├── cxx20_source_location.cpp │ ├── cxx20_std_bit_cast.cpp │ ├── cxx20_std_construct_at.cpp │ ├── cxx20_std_default_sentinel.cpp │ ├── cxx20_std_disable_sized_sentinel_for.cpp │ ├── cxx20_std_endian.cpp │ ├── cxx20_std_execution_policies.cpp │ ├── cxx20_std_identity.cpp │ ├── cxx20_std_ranges_iter_swap.cpp │ ├── cxx20_trivial_virtual_destructor.cpp │ ├── cxx23_deprecated_std_aligned_storage.cpp │ ├── cxx23_std_generator.cpp │ ├── cxx26_contracts.cpp │ ├── cxx26_experimental_scope.cpp │ ├── cxx_lambda_capture_decltype.cpp │ ├── mm_prefetch.cpp │ ├── set_thread_name.cpp │ ├── stable_inplace_merge.cpp │ └── unistd_h.cpp └── toolchains │ ├── ARM-gcc.cmake │ ├── BGION-gcc.cmake │ ├── BGQ.cmake │ ├── Cray.cmake │ ├── CrayKNL.cmake │ ├── CrayKNLStatic.cmake │ ├── CrayStatic.cmake │ └── XeonPhi.cmake ├── components ├── CMakeLists.txt ├── README.rst ├── component_storage │ ├── CMakeLists.txt │ ├── examples │ │ └── CMakeLists.txt │ ├── include │ │ └── hpx │ │ │ ├── components │ │ │ └── component_storage │ │ │ │ ├── component_storage.hpp │ │ │ │ ├── export_definitions.hpp │ │ │ │ ├── migrate_from_storage.hpp │ │ │ │ ├── migrate_to_storage.hpp │ │ │ │ └── server │ │ │ │ ├── component_storage.hpp │ │ │ │ ├── migrate_from_storage.hpp │ │ │ │ └── migrate_to_storage.hpp │ │ │ └── include │ │ │ └── component_storage.hpp │ ├── src │ │ ├── component_module.cpp │ │ ├── component_storage.cpp │ │ └── server │ │ │ └── component_storage_server.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── performance │ │ └── CMakeLists.txt │ │ ├── regressions │ │ └── CMakeLists.txt │ │ └── unit │ │ ├── CMakeLists.txt │ │ └── migrate_component_to_storage.cpp ├── containers │ ├── CMakeLists.txt │ ├── partitioned_vector │ │ ├── CMakeLists.txt │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── components │ │ │ │ └── containers │ │ │ │ │ ├── coarray │ │ │ │ │ └── coarray.hpp │ │ │ │ │ └── partitioned_vector │ │ │ │ │ ├── detail │ │ │ │ │ └── view_element.hpp │ │ │ │ │ ├── export_definitions.hpp │ │ │ │ │ ├── partitioned_vector.hpp │ │ │ │ │ ├── partitioned_vector_component.hpp │ │ │ │ │ ├── partitioned_vector_component_decl.hpp │ │ │ │ │ ├── partitioned_vector_component_impl.hpp │ │ │ │ │ ├── partitioned_vector_decl.hpp │ │ │ │ │ ├── partitioned_vector_fwd.hpp │ │ │ │ │ ├── partitioned_vector_impl.hpp │ │ │ │ │ ├── partitioned_vector_local_view.hpp │ │ │ │ │ ├── partitioned_vector_local_view_iterator.hpp │ │ │ │ │ ├── partitioned_vector_predef.hpp │ │ │ │ │ ├── partitioned_vector_segmented_iterator.hpp │ │ │ │ │ ├── partitioned_vector_view.hpp │ │ │ │ │ ├── partitioned_vector_view_iterator.hpp │ │ │ │ │ └── serialization │ │ │ │ │ └── partitioned_vector.hpp │ │ │ │ └── include │ │ │ │ ├── partitioned_vector.hpp │ │ │ │ ├── partitioned_vector_predef.hpp │ │ │ │ └── partitioned_vector_view.hpp │ │ ├── src │ │ │ ├── partitioned_vector_component.cpp │ │ │ ├── partitioned_vector_component_double.cpp │ │ │ ├── partitioned_vector_component_int.cpp │ │ │ └── partitioned_vector_component_std_string.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── partitioned_vector_2201.cpp │ │ │ └── partitioned_vector_constructor_6650.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── coarray.cpp │ │ │ ├── coarray_all_reduce.cpp │ │ │ ├── is_iterator_partitioned_vector.cpp │ │ │ ├── partitioned_vector_subview.cpp │ │ │ ├── partitioned_vector_view.cpp │ │ │ ├── partitioned_vector_view_iterator.cpp │ │ │ └── serialization_partitioned_vector.cpp │ └── unordered │ │ ├── CMakeLists.txt │ │ ├── examples │ │ └── CMakeLists.txt │ │ ├── include │ │ └── hpx │ │ │ ├── components │ │ │ └── containers │ │ │ │ └── unordered │ │ │ │ ├── partition_unordered_map_component.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ └── unordered_map_segmented_iterator.hpp │ │ │ └── include │ │ │ └── unordered_map.hpp │ │ ├── src │ │ └── partition_unordered_map_component.cpp │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── performance │ │ └── CMakeLists.txt │ │ ├── regressions │ │ ├── CMakeLists.txt │ │ └── unordered_compilation_4685.cpp │ │ └── unit │ │ ├── CMakeLists.txt │ │ └── unordered_map.cpp ├── create_component_skeleton.py ├── iostreams │ ├── CMakeLists.txt │ ├── examples │ │ └── CMakeLists.txt │ ├── include │ │ └── hpx │ │ │ ├── components │ │ │ └── iostreams │ │ │ │ ├── export_definitions.hpp │ │ │ │ ├── manipulators.hpp │ │ │ │ ├── ostream.hpp │ │ │ │ ├── server │ │ │ │ ├── buffer.hpp │ │ │ │ ├── order_output.hpp │ │ │ │ └── output_stream.hpp │ │ │ │ ├── standard_streams.hpp │ │ │ │ └── write_functions.hpp │ │ │ ├── include │ │ │ └── iostreams.hpp │ │ │ └── iostream.hpp │ ├── src │ │ ├── component_module.cpp │ │ ├── manipulators.cpp │ │ ├── server │ │ │ └── output_stream.cpp │ │ └── standard_streams.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── performance │ │ └── CMakeLists.txt │ │ ├── regressions │ │ ├── CMakeLists.txt │ │ ├── lost_output_2236.cpp │ │ └── no_output_1173.cpp │ │ └── unit │ │ └── CMakeLists.txt ├── parcel_plugins │ ├── CMakeLists.txt │ ├── binary_filter │ │ ├── CMakeLists.txt │ │ ├── bzip2 │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── hpx │ │ │ │ │ ├── binary_filter │ │ │ │ │ ├── bzip2_serialization_filter.hpp │ │ │ │ │ └── bzip2_serialization_filter_registration.hpp │ │ │ │ │ └── include │ │ │ │ │ └── compression_bzip2.hpp │ │ │ ├── src │ │ │ │ └── bzip2_serialization_filter.cpp │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── performance │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── regressions │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── function_serialization_728_bzip2.cpp │ │ │ │ └── unit │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── put_parcels_with_compression_bzip2.cpp │ │ ├── snappy │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ └── hpx │ │ │ │ │ ├── binary_filter │ │ │ │ │ ├── snappy_serialization_filter.hpp │ │ │ │ │ └── snappy_serialization_filter_registration.hpp │ │ │ │ │ └── include │ │ │ │ │ └── compression_snappy.hpp │ │ │ ├── src │ │ │ │ └── snappy_serialization_filter.cpp │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── performance │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── regressions │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── function_serialization_728_snappy.cpp │ │ │ │ └── unit │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── put_parcels_with_compression_snappy.cpp │ │ └── zlib │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── binary_filter │ │ │ │ ├── zlib_serialization_filter.hpp │ │ │ │ └── zlib_serialization_filter_registration.hpp │ │ │ │ └── include │ │ │ │ └── compression_zlib.hpp │ │ │ ├── src │ │ │ └── zlib_serialization_filter.cpp │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ └── function_serialization_728_zlib.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── put_parcels_with_compression_zlib.cpp │ └── coalescing │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── hpx │ │ │ ├── include │ │ │ └── parcel_coalescing.hpp │ │ │ └── parcel_coalescing │ │ │ ├── counter_registry.hpp │ │ │ ├── message_buffer.hpp │ │ │ └── message_handler.hpp │ │ ├── src │ │ ├── coalescing_counter_registry.cpp │ │ ├── coalescing_message_handler.cpp │ │ └── performance_counters.cpp │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── performance │ │ └── CMakeLists.txt │ │ ├── regressions │ │ ├── CMakeLists.txt │ │ └── function_serialization_728.cpp │ │ └── unit │ │ ├── CMakeLists.txt │ │ └── put_parcels_with_coalescing.cpp ├── performance_counters │ ├── CMakeLists.txt │ ├── io │ │ ├── CMakeLists.txt │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── components │ │ │ │ └── performance_counters │ │ │ │ └── io │ │ │ │ └── io_counters.hpp │ │ ├── src │ │ │ └── io_counters.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── memory_counters │ │ ├── CMakeLists.txt │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── components │ │ │ │ └── performance_counters │ │ │ │ └── memory_counters │ │ │ │ └── mem_counter.hpp │ │ ├── src │ │ │ ├── mem_counter_linux.cpp │ │ │ ├── mem_counter_macosx.cpp │ │ │ ├── mem_counter_windows.cpp │ │ │ └── memory.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── papi │ │ ├── CMakeLists.txt │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── components │ │ │ │ └── performance_counters │ │ │ │ └── papi │ │ │ │ ├── server │ │ │ │ └── papi.hpp │ │ │ │ └── util │ │ │ │ └── papi.hpp │ │ ├── src │ │ │ ├── papi_startup.cpp │ │ │ ├── server │ │ │ │ └── papi.cpp │ │ │ └── util │ │ │ │ └── papi.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── papi_counters_active_interface.cpp │ │ │ ├── papi_counters_basic_functions.cpp │ │ │ └── papi_counters_segfault_1890.cpp │ │ │ └── unit │ │ │ └── CMakeLists.txt │ └── power │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── hpx │ │ │ └── components │ │ │ └── performance_counters │ │ │ └── power │ │ │ └── power_counter.hpp │ │ ├── src │ │ ├── power.cpp │ │ └── power_counter.cpp │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── performance │ │ └── CMakeLists.txt │ │ ├── regressions │ │ └── CMakeLists.txt │ │ └── unit │ │ ├── CMakeLists.txt │ │ └── power_counter.cpp └── process │ ├── CMakeLists.txt │ ├── examples │ └── CMakeLists.txt │ ├── include │ └── hpx │ │ ├── components │ │ └── process │ │ │ ├── child.hpp │ │ │ ├── export_definitions.hpp │ │ │ ├── process.hpp │ │ │ ├── server │ │ │ └── child.hpp │ │ │ └── util │ │ │ ├── child.hpp │ │ │ ├── create_pipe.hpp │ │ │ ├── execute.hpp │ │ │ ├── executor.hpp │ │ │ ├── initializers.hpp │ │ │ ├── mitigate.hpp │ │ │ ├── pipe.hpp │ │ │ ├── posix │ │ │ ├── child.hpp │ │ │ ├── create_pipe.hpp │ │ │ ├── execute.hpp │ │ │ ├── executor.hpp │ │ │ ├── initializers.hpp │ │ │ ├── initializers │ │ │ │ ├── bind_fd.hpp │ │ │ │ ├── bind_stderr.hpp │ │ │ │ ├── bind_stdin.hpp │ │ │ │ ├── bind_stdout.hpp │ │ │ │ ├── close_fd.hpp │ │ │ │ ├── close_fds.hpp │ │ │ │ ├── close_fds_if.hpp │ │ │ │ ├── close_stderr.hpp │ │ │ │ ├── close_stdin.hpp │ │ │ │ ├── close_stdout.hpp │ │ │ │ ├── hide_console.hpp │ │ │ │ ├── inherit_env.hpp │ │ │ │ ├── initializer_base.hpp │ │ │ │ ├── notify_io_service.hpp │ │ │ │ ├── on_exec_error.hpp │ │ │ │ ├── on_exec_setup.hpp │ │ │ │ ├── on_fork_error.hpp │ │ │ │ ├── on_fork_setup.hpp │ │ │ │ ├── on_fork_success.hpp │ │ │ │ ├── run_exe.hpp │ │ │ │ ├── set_args.hpp │ │ │ │ ├── set_cmd_line.hpp │ │ │ │ ├── set_env.hpp │ │ │ │ ├── start_in_dir.hpp │ │ │ │ ├── throw_on_error.hpp │ │ │ │ └── wait_on_latch.hpp │ │ │ ├── pipe.hpp │ │ │ ├── search_path.hpp │ │ │ ├── shell_path.hpp │ │ │ ├── terminate.hpp │ │ │ └── wait_for_exit.hpp │ │ │ ├── search_path.hpp │ │ │ ├── shell_path.hpp │ │ │ ├── terminate.hpp │ │ │ ├── wait_for_exit.hpp │ │ │ └── windows │ │ │ ├── child.hpp │ │ │ ├── create_pipe.hpp │ │ │ ├── execute.hpp │ │ │ ├── executor.hpp │ │ │ ├── initializers.hpp │ │ │ ├── initializers │ │ │ ├── bind_stderr.hpp │ │ │ ├── bind_stdin.hpp │ │ │ ├── bind_stdout.hpp │ │ │ ├── close_stderr.hpp │ │ │ ├── close_stdin.hpp │ │ │ ├── close_stdout.hpp │ │ │ ├── hide_console.hpp │ │ │ ├── inherit_env.hpp │ │ │ ├── initializer_base.hpp │ │ │ ├── on_CreateProcess_error.hpp │ │ │ ├── on_CreateProcess_setup.hpp │ │ │ ├── on_CreateProcess_success.hpp │ │ │ ├── run_exe.hpp │ │ │ ├── set_args.hpp │ │ │ ├── set_cmd_line.hpp │ │ │ ├── set_env.hpp │ │ │ ├── show_window.hpp │ │ │ ├── start_in_dir.hpp │ │ │ ├── throw_on_error.hpp │ │ │ └── wait_on_latch.hpp │ │ │ ├── pipe.hpp │ │ │ ├── search_path.hpp │ │ │ ├── shell_path.hpp │ │ │ ├── terminate.hpp │ │ │ └── wait_for_exit.hpp │ │ └── include │ │ └── process.hpp │ ├── src │ ├── process.cpp │ ├── server │ │ └── child_component.cpp │ └── util │ │ ├── posix │ │ ├── create_pipe_u.cpp │ │ ├── search_path_u.cpp │ │ └── shell_path_u.cpp │ │ └── windows │ │ ├── create_pipe_w.cpp │ │ ├── search_path_w.cpp │ │ └── shell_path_w.cpp │ └── tests │ ├── CMakeLists.txt │ ├── performance │ └── CMakeLists.txt │ ├── regressions │ └── CMakeLists.txt │ └── unit │ └── CMakeLists.txt ├── docs ├── CMakeLists.txt ├── index.html ├── joss_paper │ ├── hpx-no-inspect │ ├── hpx_architecture.pdf │ ├── paper.bib │ └── paper.md └── sphinx │ ├── _static │ ├── custom.css │ └── images │ │ ├── 1d_stencil_program_flow.png │ │ ├── HPX_STELLAR_blue.png │ │ ├── affinities.png │ │ ├── cmake_settings1.png │ │ ├── cmake_settings2.png │ │ ├── emails │ │ ├── aberge.png │ │ ├── akemp.png │ │ ├── alemoine.png │ │ ├── anagelberg.png │ │ ├── antbikineev.png │ │ ├── atrantan.png │ │ ├── bhumitattarde.png │ │ ├── biddisco.png │ │ ├── blelbach.png │ │ ├── dbour27.png │ │ ├── dkaratza.png │ │ ├── dstark.png │ │ ├── ggonidelis.png │ │ ├── hkaiser.png │ │ ├── jhabraken.png │ │ ├── manderson.png │ │ ├── martinhstumpf.png │ │ ├── mbrodowicz.png │ │ ├── msimberg.png │ │ ├── rstobaugh.png │ │ ├── sbrandt.png │ │ ├── syang16.png │ │ ├── theller.png │ │ └── vamatya.png │ │ ├── favicon.png │ │ ├── future_schematics.png │ │ ├── hpx_the_api.png │ │ ├── lulesh_fork_join.png │ │ ├── lulesh_parallel.png │ │ ├── lulesh_speedup_comparison.png │ │ ├── vs_build_output.png │ │ └── vs_targets_install.png │ ├── _templates │ └── footer.html │ ├── about_hpx.rst │ ├── about_hpx │ ├── history.rst │ └── people.rst │ ├── additional_material.rst │ ├── api.rst │ ├── api │ ├── full_api.rst │ ├── public_api.rst │ └── public_distributed_api.rst │ ├── citing.rst │ ├── contributing.rst │ ├── contributing │ ├── contributing.rst │ ├── docker_image.rst │ ├── documentation.rst │ ├── governance.rst │ ├── modules.rst │ ├── release_procedure.rst │ └── testing_hpx.rst │ ├── examples.rst │ ├── examples │ ├── 1d_stencil.rst │ ├── accumulator.rst │ ├── fibonacci.rst │ ├── fibonacci_local.rst │ ├── hello_world.rst │ ├── interest_calculator.rst │ ├── matrix_multiplication.rst │ └── serialization.rst │ ├── extensions │ └── sphinx-hpx.py │ ├── index.rst │ ├── manual.rst │ ├── manual │ ├── building_hpx.rst │ ├── building_tests_examples.rst │ ├── cmake_variables.rst │ ├── creating_hpx_projects.rst │ ├── debugging_hpx_applications.rst │ ├── executors.rst │ ├── getting_hpx.rst │ ├── hpx_runtime_and_resources.rst │ ├── launching_and_configuring_hpx_applications.rst │ ├── migration_guide.rst │ ├── miscellaneous.rst │ ├── optimizing_hpx_applications.rst │ ├── prerequisites.rst │ ├── running_on_batch_systems.rst │ ├── starting_the_hpx_runtime.rst │ ├── troubleshooting.rst │ ├── using_the_lci_parcelport.rst │ ├── writing_distributed_hpx_applications.rst │ └── writing_single_node_hpx_applications.rst │ ├── quickstart.rst │ ├── references.bib │ ├── releases.rst │ ├── releases │ ├── new_namespaces_1_9_0.rst │ ├── whats_new_0_7_0.rst │ ├── whats_new_0_8_0.rst │ ├── whats_new_0_8_1.rst │ ├── whats_new_0_9_0.rst │ ├── whats_new_0_9_10.rst │ ├── whats_new_0_9_11.rst │ ├── whats_new_0_9_5.rst │ ├── whats_new_0_9_6.rst │ ├── whats_new_0_9_7.rst │ ├── whats_new_0_9_8.rst │ ├── whats_new_0_9_9.rst │ ├── whats_new_0_9_99.rst │ ├── whats_new_1_0_0.rst │ ├── whats_new_1_10_0.rst │ ├── whats_new_1_11_0.rst │ ├── whats_new_1_1_0.rst │ ├── whats_new_1_2_0.rst │ ├── whats_new_1_2_1.rst │ ├── whats_new_1_3_0.rst │ ├── whats_new_1_4_0.rst │ ├── whats_new_1_4_1.rst │ ├── whats_new_1_5_0.rst │ ├── whats_new_1_5_1.rst │ ├── whats_new_1_6_0.rst │ ├── whats_new_1_7_0.rst │ ├── whats_new_1_7_1.rst │ ├── whats_new_1_8_0.rst │ ├── whats_new_1_8_1.rst │ ├── whats_new_1_9_0.rst │ ├── whats_new_1_9_1.rst │ └── whats_new_2_0_0.rst │ ├── terminology.rst │ ├── users.rst │ └── why_hpx.rst ├── examples ├── 1d_stencil │ ├── 1d_stencil_1.cpp │ ├── 1d_stencil_1_omp.cpp │ ├── 1d_stencil_2.cpp │ ├── 1d_stencil_3.cpp │ ├── 1d_stencil_3_omp.cpp │ ├── 1d_stencil_4.cpp │ ├── 1d_stencil_4_parallel.cpp │ ├── 1d_stencil_4_repart.cpp │ ├── 1d_stencil_4_throttle.cpp │ ├── 1d_stencil_5.cpp │ ├── 1d_stencil_6.cpp │ ├── 1d_stencil_7.cpp │ ├── 1d_stencil_8.cpp │ ├── 1d_stencil_channel.cpp │ ├── CMakeLists.txt │ ├── README.APEX │ ├── communicator.hpp │ ├── print_time_results.hpp │ └── stencil.hpp ├── CMakeLists.txt ├── accumulators │ ├── CMakeLists.txt │ ├── accumulator.cpp │ ├── accumulator.hpp │ ├── accumulator_client.cpp │ ├── server │ │ ├── accumulator.hpp │ │ ├── template_accumulator.hpp │ │ └── template_function_accumulator.hpp │ ├── template_accumulator.cpp │ ├── template_accumulator.hpp │ ├── template_accumulator_client.cpp │ ├── template_function_accumulator.cpp │ ├── template_function_accumulator.hpp │ └── template_function_accumulator_client.cpp ├── apex │ ├── CMakeLists.txt │ ├── apex_balance.cpp │ ├── apex_fibonacci.cpp │ ├── apex_policy_engine_active_thread_count.cpp │ ├── apex_policy_engine_events.cpp │ └── apex_policy_engine_periodic.cpp ├── async_io │ ├── CMakeLists.txt │ ├── async_io_action.cpp │ ├── async_io_external.cpp │ ├── async_io_low_level.cpp │ └── async_io_simple.cpp ├── balancing │ ├── CMakeLists.txt │ ├── hpx_thread_phase.cpp │ └── os_thread_num.cpp ├── cancelable_action │ ├── CMakeLists.txt │ ├── cancelable_action │ │ ├── CMakeLists.txt │ │ ├── cancelable_action.cpp │ │ ├── cancelable_action.hpp │ │ └── server │ │ │ └── cancelable_action.hpp │ └── cancelable_action_client.cpp ├── future_reduce │ ├── CMakeLists.txt │ └── rnd_future_reduce.cpp ├── gtest_emulation │ ├── CMakeLists.txt │ ├── hpx_main_ext_main.cpp │ └── static_main.cpp ├── heartbeat │ ├── CMakeLists.txt │ ├── heartbeat.cpp │ ├── heartbeat.man │ ├── heartbeat_console.cpp │ ├── hpx_counters.hpp │ ├── hpx_counters.rc │ ├── win_perf_counters.cpp │ └── win_perf_counters.hpp ├── hello_world_component │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.rst │ ├── hello.sh │ ├── hello_world_client.cpp │ ├── hello_world_component.cpp │ └── hello_world_component.hpp ├── interpolate1d │ ├── CMakeLists.txt │ ├── create_testdata.cpp │ ├── interpolate1d │ │ ├── CMakeLists.txt │ │ ├── dimension.cpp │ │ ├── dimension.hpp │ │ ├── interpolate1d.cpp │ │ ├── interpolate1d.hpp │ │ ├── partition.hpp │ │ ├── read_values.cpp │ │ ├── read_values.hpp │ │ └── server │ │ │ ├── partition.cpp │ │ │ └── partition.hpp │ ├── interpolate1d_client.cpp │ └── sine.h5 ├── jacobi │ ├── CMakeLists.txt │ ├── jacobi.cpp │ └── jacobi_component │ │ ├── CMakeLists.txt │ │ ├── grid.cpp │ │ ├── grid.hpp │ │ ├── jacobi_component.cpp │ │ ├── row.cpp │ │ ├── row.hpp │ │ ├── row_range.hpp │ │ ├── server │ │ ├── row.cpp │ │ ├── row.hpp │ │ ├── solver.cpp │ │ ├── solver.hpp │ │ ├── stencil_iterator.cpp │ │ └── stencil_iterator.hpp │ │ ├── solver.hpp │ │ ├── stencil_iterator.cpp │ │ └── stencil_iterator.hpp ├── jacobi_smp │ ├── CMakeLists.txt │ ├── Readme.md │ ├── grid.cpp │ ├── jacobi.cpp │ ├── jacobi.hpp │ ├── jacobi_hpx.cpp │ ├── jacobi_nonuniform.cpp │ ├── jacobi_nonuniform.hpp │ ├── jacobi_nonuniform_hpx.cpp │ ├── jacobi_nonuniform_omp.hpp │ ├── jacobi_nonuniform_omp_dynamic.cpp │ ├── jacobi_nonuniform_omp_static.cpp │ ├── jacobi_omp.hpp │ ├── jacobi_omp_dynamic.cpp │ └── jacobi_omp_static.cpp ├── nqueen │ ├── CMakeLists.txt │ ├── nqueen.cpp │ ├── nqueen.hpp │ ├── nqueen_client.cpp │ └── server │ │ └── nqueen.hpp ├── performance_counters │ ├── CMakeLists.txt │ ├── access_counter_set.cpp │ ├── simplest_performance_counter.cpp │ └── sine │ │ ├── CMakeLists.txt │ │ ├── server │ │ ├── sine.cpp │ │ └── sine.hpp │ │ ├── sine.cpp │ │ └── sine_client.cpp ├── pipeline │ ├── CMakeLists.txt │ ├── Readme.md │ ├── collector.cpp │ ├── emitter.cpp │ └── worker.cpp ├── qt │ ├── CMakeLists.txt │ ├── README.rst │ ├── qt.cpp │ ├── widget.cpp │ └── widget.hpp ├── quickstart │ ├── 1d_wave_equation.cpp │ ├── CMakeLists.txt │ ├── allow_unknown_options.cpp │ ├── barrier_docs.cpp │ ├── channel_docs.cpp │ ├── command_line_handling.cpp │ ├── component_ctors.cpp │ ├── component_in_executable.cpp │ ├── component_inheritance.cpp │ ├── component_with_custom_heap.cpp │ ├── component_with_executor.cpp │ ├── composable_guard.cpp │ ├── condition_variable_docs.cpp │ ├── counting_semaphore_docs.cpp │ ├── custom_serialization.cpp │ ├── customize_async.cpp │ ├── data_actions.cpp │ ├── enumerate_threads.cpp │ ├── error_handling.cpp │ ├── event_synchronization.cpp │ ├── factorial.cpp │ ├── fibonacci.cpp │ ├── fibonacci_await.cpp │ ├── fibonacci_dataflow.cpp │ ├── fibonacci_futures.cpp │ ├── fibonacci_futures_distributed.cpp │ ├── fibonacci_local.cpp │ ├── fibonacci_one.cpp │ ├── file_serialization.cpp │ ├── for_each_docs.cpp │ ├── hello_world_1.cpp │ ├── hello_world_2.cpp │ ├── hello_world_3.cpp │ ├── hello_world_distributed.cpp │ ├── init_globally.cpp │ ├── interest_calculator.cpp │ ├── interval_timer.cpp │ ├── latch_local.cpp │ ├── latch_remote.cpp │ ├── local_channel.cpp │ ├── local_channel_docs.cpp │ ├── matrix_multiplication.cpp │ ├── mutex_docs.cpp │ ├── partitioned_vector_spmd_foreach.cpp │ ├── pingpong.cpp │ ├── pipeline1.cpp │ ├── potpourri.cpp │ ├── print_to_console.cpp │ ├── receive_buffer.cpp │ ├── safe_object.cpp │ ├── shared_mutex.cpp │ ├── sierpinski.cpp │ ├── simple_future_continuation.cpp │ ├── simple_master_slave.cpp │ ├── sort_by_key_demo.cpp │ ├── task_group_docs.cpp │ ├── timed_futures.cpp │ ├── timed_wake.cpp │ ├── use_main_thread.cpp │ ├── vector_counting_dotproduct.cpp │ ├── vector_zip_dotproduct.cpp │ ├── wait_composition.cpp │ └── zerocopy_rdma.cpp ├── random_mem_access │ ├── CMakeLists.txt │ ├── README │ ├── random_mem_access │ │ ├── CMakeLists.txt │ │ ├── random_mem_access.cpp │ │ ├── random_mem_access.hpp │ │ └── server │ │ │ └── random_mem_access.hpp │ └── random_mem_access_client.cpp ├── sheneos │ ├── CMakeLists.txt │ ├── README.rst │ ├── sheneos │ │ ├── CMakeLists.txt │ │ ├── dimension.cpp │ │ ├── dimension.hpp │ │ ├── interpolator.cpp │ │ ├── interpolator.hpp │ │ ├── partition3d.hpp │ │ ├── read_values.cpp │ │ ├── read_values.hpp │ │ └── server │ │ │ ├── configuration.cpp │ │ │ ├── configuration.hpp │ │ │ ├── partition3d.cpp │ │ │ └── partition3d.hpp │ ├── sheneos_client.cpp │ └── sheneos_test.cpp ├── spell_check │ ├── 5desk.txt │ ├── CMakeLists.txt │ ├── example_text.txt │ ├── hpx-no-inspect │ ├── spell_check_file.cpp │ └── spell_check_simple.cpp ├── startup_shutdown │ ├── CMakeLists.txt │ ├── server │ │ ├── startup_shutdown.cpp │ │ └── startup_shutdown.hpp │ └── startup_shutdown.cpp ├── throttle │ ├── CMakeLists.txt │ ├── spin.cpp │ ├── throttle │ │ ├── CMakeLists.txt │ │ ├── server │ │ │ ├── throttle.cpp │ │ │ └── throttle.hpp │ │ ├── stubs │ │ │ └── throttle.hpp │ │ ├── throttle.cpp │ │ └── throttle.hpp │ └── throttle_client.cpp ├── transpose │ ├── CMakeLists.txt │ ├── transpose_await.cpp │ ├── transpose_block.cpp │ ├── transpose_serial.cpp │ ├── transpose_serial_block.cpp │ ├── transpose_serial_vector.cpp │ ├── transpose_smp.cpp │ └── transpose_smp_block.cpp └── tuplespace │ ├── CMakeLists.txt │ ├── central_tuplespace │ ├── CMakeLists.txt │ ├── server │ │ ├── simple_central_tuplespace.hpp │ │ ├── tuple.hpp │ │ └── tuples_warehouse.hpp │ ├── simple_central_tuplespace.cpp │ ├── simple_central_tuplespace.hpp │ └── stubs │ │ └── simple_central_tuplespace.hpp │ ├── simple_central_tuplespace_client.cpp │ └── small_big_object.hpp ├── hpx.spdx ├── init ├── CMakeLists.txt ├── include │ └── hpx │ │ ├── hpx_main_impl.hpp │ │ └── manage_runtime.hpp └── src │ ├── hpx_init.cpp │ ├── hpx_main.cpp │ ├── hpx_main_argc_argv.cpp │ ├── hpx_main_variables_map.cpp │ ├── hpx_user_main.cpp │ ├── hpx_user_main_argc_argv.cpp │ ├── main.cpp │ └── manage_runtime.cpp ├── libs ├── CMakeLists.txt ├── README.rst ├── core │ ├── CMakeLists.txt │ ├── affinity │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── include │ │ │ └── hpx │ │ │ │ └── affinity │ │ │ │ ├── affinity_data.hpp │ │ │ │ ├── detail │ │ │ │ ├── parse_mappings.hpp │ │ │ │ └── partlit.hpp │ │ │ │ └── parse_affinity_options.hpp │ │ ├── src │ │ │ ├── affinity_data.cpp │ │ │ └── parse_affinity_options.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── parse_affinity_options.cpp │ ├── algorithms │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ └── run_on_all.cpp │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── algorithms │ │ │ │ └── traits │ │ │ │ │ ├── is_pair.hpp │ │ │ │ │ ├── is_value_proxy.hpp │ │ │ │ │ ├── pointer_category.hpp │ │ │ │ │ ├── projected.hpp │ │ │ │ │ ├── projected_range.hpp │ │ │ │ │ └── segmented_iterator_traits.hpp │ │ │ │ └── parallel │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── algorithms │ │ │ │ ├── adjacent_difference.hpp │ │ │ │ ├── adjacent_find.hpp │ │ │ │ ├── all_any_none.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── count.hpp │ │ │ │ ├── destroy.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── accumulate.hpp │ │ │ │ │ ├── adjacent_difference.hpp │ │ │ │ │ ├── adjacent_find.hpp │ │ │ │ │ ├── advance_and_get_distance.hpp │ │ │ │ │ ├── advance_to_sentinel.hpp │ │ │ │ │ ├── contains.hpp │ │ │ │ │ ├── dispatch.hpp │ │ │ │ │ ├── distance.hpp │ │ │ │ │ ├── equal.hpp │ │ │ │ │ ├── fill.hpp │ │ │ │ │ ├── find.hpp │ │ │ │ │ ├── generate.hpp │ │ │ │ │ ├── indirect.hpp │ │ │ │ │ ├── insertion_sort.hpp │ │ │ │ │ ├── is_sorted.hpp │ │ │ │ │ ├── mismatch.hpp │ │ │ │ │ ├── parallel_stable_sort.hpp │ │ │ │ │ ├── pivot.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── reduce_deterministic.hpp │ │ │ │ │ ├── replace.hpp │ │ │ │ │ ├── rfa.hpp │ │ │ │ │ ├── rotate.hpp │ │ │ │ │ ├── sample_sort.hpp │ │ │ │ │ ├── search.hpp │ │ │ │ │ ├── set_operation.hpp │ │ │ │ │ ├── spin_sort.hpp │ │ │ │ │ ├── transfer.hpp │ │ │ │ │ └── upper_lower_bound.hpp │ │ │ │ ├── ends_with.hpp │ │ │ │ ├── equal.hpp │ │ │ │ ├── exclusive_scan.hpp │ │ │ │ ├── fill.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_loop.hpp │ │ │ │ ├── for_loop_induction.hpp │ │ │ │ ├── for_loop_reduction.hpp │ │ │ │ ├── for_loop_reduction_base.hpp │ │ │ │ ├── for_loop_reduction_bit_and.hpp │ │ │ │ ├── for_loop_reduction_bit_or.hpp │ │ │ │ ├── for_loop_reduction_bit_xor.hpp │ │ │ │ ├── for_loop_reduction_max.hpp │ │ │ │ ├── for_loop_reduction_min.hpp │ │ │ │ ├── for_loop_reduction_multiplies.hpp │ │ │ │ ├── for_loop_reduction_plus.hpp │ │ │ │ ├── generate.hpp │ │ │ │ ├── includes.hpp │ │ │ │ ├── inclusive_scan.hpp │ │ │ │ ├── is_heap.hpp │ │ │ │ ├── is_partitioned.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── lexicographical_compare.hpp │ │ │ │ ├── make_heap.hpp │ │ │ │ ├── merge.hpp │ │ │ │ ├── minmax.hpp │ │ │ │ ├── mismatch.hpp │ │ │ │ ├── move.hpp │ │ │ │ ├── nth_element.hpp │ │ │ │ ├── partial_sort.hpp │ │ │ │ ├── partial_sort_copy.hpp │ │ │ │ ├── partition.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── reduce_by_key.hpp │ │ │ │ ├── reduce_deterministic.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── remove_copy.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── rotate.hpp │ │ │ │ ├── search.hpp │ │ │ │ ├── set_difference.hpp │ │ │ │ ├── set_intersection.hpp │ │ │ │ ├── set_symmetric_difference.hpp │ │ │ │ ├── set_union.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── sort.hpp │ │ │ │ ├── sort_by_key.hpp │ │ │ │ ├── stable_sort.hpp │ │ │ │ ├── starts_with.hpp │ │ │ │ ├── swap_ranges.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform_exclusive_scan.hpp │ │ │ │ ├── transform_inclusive_scan.hpp │ │ │ │ ├── transform_reduce.hpp │ │ │ │ ├── transform_reduce_binary.hpp │ │ │ │ ├── uninitialized_copy.hpp │ │ │ │ ├── uninitialized_default_construct.hpp │ │ │ │ ├── uninitialized_fill.hpp │ │ │ │ ├── uninitialized_move.hpp │ │ │ │ ├── uninitialized_relocate.hpp │ │ │ │ ├── uninitialized_value_construct.hpp │ │ │ │ └── unique.hpp │ │ │ │ ├── container_algorithms.hpp │ │ │ │ ├── container_algorithms │ │ │ │ ├── adjacent_difference.hpp │ │ │ │ ├── adjacent_find.hpp │ │ │ │ ├── all_any_none.hpp │ │ │ │ ├── contains.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── count.hpp │ │ │ │ ├── destroy.hpp │ │ │ │ ├── ends_with.hpp │ │ │ │ ├── equal.hpp │ │ │ │ ├── exclusive_scan.hpp │ │ │ │ ├── fill.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_loop.hpp │ │ │ │ ├── generate.hpp │ │ │ │ ├── includes.hpp │ │ │ │ ├── inclusive_scan.hpp │ │ │ │ ├── is_heap.hpp │ │ │ │ ├── is_partitioned.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── lexicographical_compare.hpp │ │ │ │ ├── make_heap.hpp │ │ │ │ ├── merge.hpp │ │ │ │ ├── minmax.hpp │ │ │ │ ├── mismatch.hpp │ │ │ │ ├── move.hpp │ │ │ │ ├── nth_element.hpp │ │ │ │ ├── partial_sort.hpp │ │ │ │ ├── partial_sort_copy.hpp │ │ │ │ ├── partition.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── remove_copy.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── rotate.hpp │ │ │ │ ├── search.hpp │ │ │ │ ├── set_difference.hpp │ │ │ │ ├── set_intersection.hpp │ │ │ │ ├── set_symmetric_difference.hpp │ │ │ │ ├── set_union.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── sort.hpp │ │ │ │ ├── stable_sort.hpp │ │ │ │ ├── starts_with.hpp │ │ │ │ ├── swap_ranges.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform_exclusive_scan.hpp │ │ │ │ ├── transform_inclusive_scan.hpp │ │ │ │ ├── transform_reduce.hpp │ │ │ │ ├── uninitialized_copy.hpp │ │ │ │ ├── uninitialized_default_construct.hpp │ │ │ │ ├── uninitialized_fill.hpp │ │ │ │ ├── uninitialized_move.hpp │ │ │ │ ├── uninitialized_value_construct.hpp │ │ │ │ └── unique.hpp │ │ │ │ ├── container_memory.hpp │ │ │ │ ├── container_numeric.hpp │ │ │ │ ├── datapar.hpp │ │ │ │ ├── datapar │ │ │ │ ├── adjacent_difference.hpp │ │ │ │ ├── adjacent_find.hpp │ │ │ │ ├── equal.hpp │ │ │ │ ├── fill.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── generate.hpp │ │ │ │ ├── handle_local_exceptions.hpp │ │ │ │ ├── iterator_helpers.hpp │ │ │ │ ├── loop.hpp │ │ │ │ ├── mismatch.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── transfer.hpp │ │ │ │ ├── transform_loop.hpp │ │ │ │ └── zip_iterator.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── numeric.hpp │ │ │ │ ├── run_on_all.hpp │ │ │ │ ├── spmd_block.hpp │ │ │ │ ├── task_block.hpp │ │ │ │ ├── task_group.hpp │ │ │ │ ├── unseq.hpp │ │ │ │ ├── unseq │ │ │ │ ├── loop.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── reduce_helpers.hpp │ │ │ │ ├── simd_helpers.hpp │ │ │ │ └── transform_loop.hpp │ │ │ │ └── util │ │ │ │ ├── adapt_placement_mode.hpp │ │ │ │ ├── adapt_sharing_mode.hpp │ │ │ │ ├── adapt_thread_priority.hpp │ │ │ │ ├── cancellation_token.hpp │ │ │ │ ├── compare_projected.hpp │ │ │ │ ├── detail │ │ │ │ ├── algorithm_result.hpp │ │ │ │ ├── chunk_size.hpp │ │ │ │ ├── chunk_size_iterator.hpp │ │ │ │ ├── clear_container.hpp │ │ │ │ ├── handle_exception_termination_handler.hpp │ │ │ │ ├── handle_local_exceptions.hpp │ │ │ │ ├── handle_remote_exceptions.hpp │ │ │ │ ├── partitioner_iteration.hpp │ │ │ │ ├── scoped_executor_parameters.hpp │ │ │ │ ├── select_partitioner.hpp │ │ │ │ └── sender_util.hpp │ │ │ │ ├── foreach_partitioner.hpp │ │ │ │ ├── invoke_projected.hpp │ │ │ │ ├── loop.hpp │ │ │ │ ├── low_level.hpp │ │ │ │ ├── merge_four.hpp │ │ │ │ ├── merge_vector.hpp │ │ │ │ ├── nbits.hpp │ │ │ │ ├── partitioner.hpp │ │ │ │ ├── partitioner_with_cleanup.hpp │ │ │ │ ├── prefetching.hpp │ │ │ │ ├── projection_identity.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── ranges_facilities.hpp │ │ │ │ ├── result_types.hpp │ │ │ │ ├── scan_partitioner.hpp │ │ │ │ ├── transfer.hpp │ │ │ │ ├── transform_loop.hpp │ │ │ │ └── zip_iterator.hpp │ │ ├── src │ │ │ ├── handle_exception_termination_handler.cpp │ │ │ └── task_group.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmark_inplace_merge.cpp │ │ │ ├── benchmark_is_heap.cpp │ │ │ ├── benchmark_is_heap_until.cpp │ │ │ ├── benchmark_merge.cpp │ │ │ ├── benchmark_merge_sweep.cpp │ │ │ ├── benchmark_nth_element.cpp │ │ │ ├── benchmark_nth_element_parallel.cpp │ │ │ ├── benchmark_partial_sort.cpp │ │ │ ├── benchmark_partial_sort_parallel.cpp │ │ │ ├── benchmark_partition.cpp │ │ │ ├── benchmark_partition_copy.cpp │ │ │ ├── benchmark_reduce_deterministic.cpp │ │ │ ├── benchmark_remove.cpp │ │ │ ├── benchmark_remove_if.cpp │ │ │ ├── benchmark_scan_algorithms.cpp │ │ │ ├── benchmark_unique.cpp │ │ │ ├── benchmark_unique_copy.cpp │ │ │ ├── foreach_report.cpp │ │ │ ├── foreach_scaling.cpp │ │ │ ├── foreach_scaling_helpers.hpp │ │ │ ├── transform_reduce_scaling.cpp │ │ │ ├── utils.hpp │ │ │ └── worker_timed.hpp │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── count_3646.cpp │ │ │ ├── fill_executor_5016.cpp │ │ │ ├── find_proxy_support.cpp │ │ │ ├── findfirstof_more_searched_for.cpp │ │ │ ├── for_each_annotated_function.cpp │ │ │ ├── for_each_datapar.cpp │ │ │ ├── for_each_on_main_thread.cpp │ │ │ ├── for_loop_2281.cpp │ │ │ ├── for_loop_5735.cpp │ │ │ ├── for_loop_with_auto_chunk_size.cpp │ │ │ ├── includes_empty_ranges.cpp │ │ │ ├── minimal_findend.cpp │ │ │ ├── mismatch_differently_sized_ranges.cpp │ │ │ ├── num_cores.cpp │ │ │ ├── ranges_facilities.cpp │ │ │ ├── reduce_3641.cpp │ │ │ ├── scan_different_inits.cpp │ │ │ ├── scan_non_commutative.cpp │ │ │ ├── scan_shortlength.cpp │ │ │ ├── search_larger_2nd_range.cpp │ │ │ ├── search_zerolength.cpp │ │ │ ├── set_operations_3442.cpp │ │ │ ├── stable_merge_2964.cpp │ │ │ ├── static_chunker_2282.cpp │ │ │ ├── transform_inclusive_scan_4786.cpp │ │ │ └── transform_inclusive_scan_4787.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── algorithms │ │ │ ├── CMakeLists.txt │ │ │ ├── adjacentdifference.cpp │ │ │ ├── adjacentdifference_bad_alloc.cpp │ │ │ ├── adjacentdifference_exception.cpp │ │ │ ├── adjacentdifference_sender.cpp │ │ │ ├── adjacentdifference_tests.hpp │ │ │ ├── adjacentfind.cpp │ │ │ ├── adjacentfind_bad_alloc.cpp │ │ │ ├── adjacentfind_binary.cpp │ │ │ ├── adjacentfind_binary_bad_alloc.cpp │ │ │ ├── adjacentfind_binary_exception.cpp │ │ │ ├── adjacentfind_binary_tests.hpp │ │ │ ├── adjacentfind_exception.cpp │ │ │ ├── adjacentfind_sender.cpp │ │ │ ├── adjacentfind_tests.hpp │ │ │ ├── all_of.cpp │ │ │ ├── all_of_sender.cpp │ │ │ ├── all_of_tests.hpp │ │ │ ├── any_of.cpp │ │ │ ├── any_of_sender.cpp │ │ │ ├── any_of_tests.hpp │ │ │ ├── copy.cpp │ │ │ ├── copy_sender.cpp │ │ │ ├── copy_tests.hpp │ │ │ ├── copyif_bad_alloc.cpp │ │ │ ├── copyif_exception.cpp │ │ │ ├── copyif_forward.cpp │ │ │ ├── copyif_random.cpp │ │ │ ├── copyn.cpp │ │ │ ├── copyn_sender.cpp │ │ │ ├── copyn_tests.hpp │ │ │ ├── count.cpp │ │ │ ├── count_sender.cpp │ │ │ ├── count_tests.hpp │ │ │ ├── countif.cpp │ │ │ ├── countif_sender.cpp │ │ │ ├── countif_tests.hpp │ │ │ ├── destroy.cpp │ │ │ ├── destroy_sender.cpp │ │ │ ├── destroy_tests.hpp │ │ │ ├── destroyn.cpp │ │ │ ├── destroyn_sender.cpp │ │ │ ├── detail │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── chunk_size_idx_iterator.cpp │ │ │ │ ├── chunk_size_iterator.cpp │ │ │ │ ├── test_insertion_sort.cpp │ │ │ │ ├── test_parallel_stable_sort.cpp │ │ │ │ ├── test_sample_sort.cpp │ │ │ │ └── test_spin_sort.cpp │ │ │ ├── distance.cpp │ │ │ ├── ends_with.cpp │ │ │ ├── ends_with_sender.cpp │ │ │ ├── equal.cpp │ │ │ ├── equal_binary.cpp │ │ │ ├── equal_binary_sender.cpp │ │ │ ├── equal_binary_tests.hpp │ │ │ ├── equal_sender.cpp │ │ │ ├── equal_tests.hpp │ │ │ ├── exclusive_scan.cpp │ │ │ ├── exclusive_scan2.cpp │ │ │ ├── exclusive_scan_bad_alloc.cpp │ │ │ ├── exclusive_scan_exception.cpp │ │ │ ├── exclusive_scan_validate.cpp │ │ │ ├── fill.cpp │ │ │ ├── fill_sender.cpp │ │ │ ├── fill_tests.hpp │ │ │ ├── filln.cpp │ │ │ ├── filln_sender.cpp │ │ │ ├── filln_tests.hpp │ │ │ ├── find.cpp │ │ │ ├── find_sender.cpp │ │ │ ├── find_tests.hpp │ │ │ ├── findend.cpp │ │ │ ├── findend_sender.cpp │ │ │ ├── findend_tests.hpp │ │ │ ├── findfirstof.cpp │ │ │ ├── findfirstof_binary.cpp │ │ │ ├── findfirstof_sender.cpp │ │ │ ├── findfirstof_tests.hpp │ │ │ ├── findif.cpp │ │ │ ├── findif_sender.cpp │ │ │ ├── findif_tests.hpp │ │ │ ├── findifnot.cpp │ │ │ ├── findifnot_bad_alloc.cpp │ │ │ ├── findifnot_exception.cpp │ │ │ ├── findifnot_sender.cpp │ │ │ ├── findifnot_tests.hpp │ │ │ ├── for_loop.cpp │ │ │ ├── for_loop_exception.cpp │ │ │ ├── for_loop_induction.cpp │ │ │ ├── for_loop_induction_async.cpp │ │ │ ├── for_loop_n.cpp │ │ │ ├── for_loop_n_strided.cpp │ │ │ ├── for_loop_reduction.cpp │ │ │ ├── for_loop_reduction_async.cpp │ │ │ ├── for_loop_strided.cpp │ │ │ ├── foreach.cpp │ │ │ ├── foreach_executors.cpp │ │ │ ├── foreach_prefetching.cpp │ │ │ ├── foreach_scheduler.cpp │ │ │ ├── foreach_sender.cpp │ │ │ ├── foreach_std_policies.cpp │ │ │ ├── foreach_tests.hpp │ │ │ ├── foreach_tests_prefetching.hpp │ │ │ ├── foreachn.cpp │ │ │ ├── foreachn_bad_alloc.cpp │ │ │ ├── foreachn_exception.cpp │ │ │ ├── foreachn_sender.cpp │ │ │ ├── generate.cpp │ │ │ ├── generate_sender.cpp │ │ │ ├── generate_tests.hpp │ │ │ ├── generaten.cpp │ │ │ ├── generaten_sender.cpp │ │ │ ├── generaten_tests.hpp │ │ │ ├── includes.cpp │ │ │ ├── includes_sender.cpp │ │ │ ├── inclusive_scan.cpp │ │ │ ├── inclusive_scan_exception.cpp │ │ │ ├── inclusive_scan_tests.hpp │ │ │ ├── inplace_merge.cpp │ │ │ ├── inplace_merge_tests.hpp │ │ │ ├── is_heap.cpp │ │ │ ├── is_heap_sender.cpp │ │ │ ├── is_heap_tests.hpp │ │ │ ├── is_heap_until.cpp │ │ │ ├── is_heap_until_sender.cpp │ │ │ ├── is_partitioned.cpp │ │ │ ├── is_partitioned_sender.cpp │ │ │ ├── is_sorted.cpp │ │ │ ├── is_sorted_sender.cpp │ │ │ ├── is_sorted_tests.hpp │ │ │ ├── is_sorted_until.cpp │ │ │ ├── is_sorted_until_sender.cpp │ │ │ ├── lexicographical_compare.cpp │ │ │ ├── lexicographical_compare_sender.cpp │ │ │ ├── make_heap.cpp │ │ │ ├── max_element.cpp │ │ │ ├── max_element_sender.cpp │ │ │ ├── merge.cpp │ │ │ ├── merge_tests.hpp │ │ │ ├── min_element.cpp │ │ │ ├── min_element_sender.cpp │ │ │ ├── minmax_element.cpp │ │ │ ├── minmax_element_sender.cpp │ │ │ ├── mismatch.cpp │ │ │ ├── mismatch_binary.cpp │ │ │ ├── mismatch_binary_sender.cpp │ │ │ ├── mismatch_binary_tests.hpp │ │ │ ├── mismatch_sender.cpp │ │ │ ├── mismatch_tests.hpp │ │ │ ├── move.cpp │ │ │ ├── move_sender.cpp │ │ │ ├── none_of.cpp │ │ │ ├── none_of_sender.cpp │ │ │ ├── none_of_tests.hpp │ │ │ ├── nth_element.cpp │ │ │ ├── parallel_sort.cpp │ │ │ ├── partial_sort.cpp │ │ │ ├── partial_sort_copy.cpp │ │ │ ├── partition.cpp │ │ │ ├── partition_copy.cpp │ │ │ ├── partition_copy_tests.hpp │ │ │ ├── partition_tests.hpp │ │ │ ├── reduce_.cpp │ │ │ ├── reduce_by_key.cpp │ │ │ ├── reduce_deterministic.cpp │ │ │ ├── reduce_sender.cpp │ │ │ ├── reduce_tests.hpp │ │ │ ├── remove.cpp │ │ │ ├── remove1.cpp │ │ │ ├── remove2.cpp │ │ │ ├── remove_copy.cpp │ │ │ ├── remove_copy_if.cpp │ │ │ ├── remove_if.cpp │ │ │ ├── remove_if1.cpp │ │ │ ├── remove_if_sender.cpp │ │ │ ├── remove_sender.cpp │ │ │ ├── remove_tests.hpp │ │ │ ├── replace.cpp │ │ │ ├── replace_copy.cpp │ │ │ ├── replace_copy_if.cpp │ │ │ ├── replace_copy_if_sender.cpp │ │ │ ├── replace_copy_sender.cpp │ │ │ ├── replace_if.cpp │ │ │ ├── replace_if_sender.cpp │ │ │ ├── replace_sender.cpp │ │ │ ├── reverse.cpp │ │ │ ├── reverse_copy.cpp │ │ │ ├── reverse_copy_sender.cpp │ │ │ ├── reverse_sender.cpp │ │ │ ├── rotate.cpp │ │ │ ├── rotate_copy.cpp │ │ │ ├── rotate_copy_sender.cpp │ │ │ ├── rotate_sender.cpp │ │ │ ├── search.cpp │ │ │ ├── search_sender.cpp │ │ │ ├── searchn.cpp │ │ │ ├── set_difference.cpp │ │ │ ├── set_intersection.cpp │ │ │ ├── set_symmetric_difference.cpp │ │ │ ├── set_union.cpp │ │ │ ├── shift_left.cpp │ │ │ ├── shift_right.cpp │ │ │ ├── sort.cpp │ │ │ ├── sort_by_key.cpp │ │ │ ├── sort_exceptions.cpp │ │ │ ├── sort_tests.hpp │ │ │ ├── stable_partition.cpp │ │ │ ├── stable_partition_tests.hpp │ │ │ ├── stable_sort.cpp │ │ │ ├── stable_sort_exceptions.cpp │ │ │ ├── stable_sort_tests.hpp │ │ │ ├── starts_with.cpp │ │ │ ├── starts_with_sender.cpp │ │ │ ├── swapranges.cpp │ │ │ ├── swapranges_sender.cpp │ │ │ ├── test_utils.hpp │ │ │ ├── transform.cpp │ │ │ ├── transform_binary.cpp │ │ │ ├── transform_binary2.cpp │ │ │ ├── transform_binary2_sender.cpp │ │ │ ├── transform_binary2_tests.hpp │ │ │ ├── transform_binary_sender.cpp │ │ │ ├── transform_binary_tests.hpp │ │ │ ├── transform_exclusive_scan.cpp │ │ │ ├── transform_inclusive_scan.cpp │ │ │ ├── transform_reduce.cpp │ │ │ ├── transform_reduce_binary.cpp │ │ │ ├── transform_reduce_binary_bad_alloc.cpp │ │ │ ├── transform_reduce_binary_exception.cpp │ │ │ ├── transform_reduce_binary_sender.cpp │ │ │ ├── transform_reduce_binary_tests.hpp │ │ │ ├── transform_reduce_sender.cpp │ │ │ ├── transform_sender.cpp │ │ │ ├── transform_tests.hpp │ │ │ ├── uninitialized_copy.cpp │ │ │ ├── uninitialized_copy_sender.cpp │ │ │ ├── uninitialized_copy_tests.hpp │ │ │ ├── uninitialized_copyn.cpp │ │ │ ├── uninitialized_copyn_sender.cpp │ │ │ ├── uninitialized_default_construct.cpp │ │ │ ├── uninitialized_default_construct_sender.cpp │ │ │ ├── uninitialized_default_construct_tests.hpp │ │ │ ├── uninitialized_default_constructn.cpp │ │ │ ├── uninitialized_default_constructn_sender.cpp │ │ │ ├── uninitialized_fill.cpp │ │ │ ├── uninitialized_fill_sender.cpp │ │ │ ├── uninitialized_filln.cpp │ │ │ ├── uninitialized_filln_sender.cpp │ │ │ ├── uninitialized_move.cpp │ │ │ ├── uninitialized_move_sender.cpp │ │ │ ├── uninitialized_move_tests.hpp │ │ │ ├── uninitialized_moven.cpp │ │ │ ├── uninitialized_moven_sender.cpp │ │ │ ├── uninitialized_relocate.cpp │ │ │ ├── uninitialized_relocate_backward.cpp │ │ │ ├── uninitialized_relocate_backward_sender.cpp │ │ │ ├── uninitialized_relocate_sender.cpp │ │ │ ├── uninitialized_relocaten.cpp │ │ │ ├── uninitialized_relocaten_sender.cpp │ │ │ ├── uninitialized_value_construct.cpp │ │ │ ├── uninitialized_value_construct_sender.cpp │ │ │ ├── uninitialized_value_construct_tests.hpp │ │ │ ├── uninitialized_value_constructn.cpp │ │ │ ├── uninitialized_value_constructn_sender.cpp │ │ │ ├── unique.cpp │ │ │ ├── unique_copy.cpp │ │ │ ├── unique_copy_tests.hpp │ │ │ ├── unique_sender.cpp │ │ │ ├── unique_tests.hpp │ │ │ └── util │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_low_level.cpp │ │ │ │ ├── test_merge_four.cpp │ │ │ │ ├── test_merge_vector.cpp │ │ │ │ ├── test_nbits.cpp │ │ │ │ ├── test_range.cpp │ │ │ │ └── test_simd_helpers.cpp │ │ │ ├── block │ │ │ ├── CMakeLists.txt │ │ │ ├── run_on_all.cpp │ │ │ ├── spmd_block.cpp │ │ │ ├── task_block.cpp │ │ │ ├── task_block_executor.cpp │ │ │ ├── task_block_par.cpp │ │ │ └── task_group.cpp │ │ │ ├── container_algorithms │ │ │ ├── CMakeLists.txt │ │ │ ├── adjacentdifference_range.cpp │ │ │ ├── adjacentdifference_range_sender.cpp │ │ │ ├── adjacentfind_bad_alloc_range.cpp │ │ │ ├── adjacentfind_binary_bad_alloc_range.cpp │ │ │ ├── adjacentfind_binary_exception_range.cpp │ │ │ ├── adjacentfind_binary_projection_range.cpp │ │ │ ├── adjacentfind_binary_range.cpp │ │ │ ├── adjacentfind_exception_range.cpp │ │ │ ├── adjacentfind_range.cpp │ │ │ ├── all_of_range.cpp │ │ │ ├── any_of_range.cpp │ │ │ ├── contains_range.cpp │ │ │ ├── contains_subrange_range.cpp │ │ │ ├── copy_range.cpp │ │ │ ├── copyif_range.cpp │ │ │ ├── copyn_range.cpp │ │ │ ├── count_range.cpp │ │ │ ├── countif_range.cpp │ │ │ ├── destroy_range.cpp │ │ │ ├── destroy_range_tests.hpp │ │ │ ├── destroyn_range.cpp │ │ │ ├── distance_range.cpp │ │ │ ├── ends_with_range.cpp │ │ │ ├── equal_binary_range.cpp │ │ │ ├── equal_range.cpp │ │ │ ├── exclusive_scan_range.cpp │ │ │ ├── fill_range.cpp │ │ │ ├── filln_range.cpp │ │ │ ├── find_end_range.cpp │ │ │ ├── find_end_range2.cpp │ │ │ ├── find_first_of_range.cpp │ │ │ ├── find_first_of_range2.cpp │ │ │ ├── find_if_not_exception_range.cpp │ │ │ ├── find_if_not_range.cpp │ │ │ ├── find_if_range.cpp │ │ │ ├── find_range.cpp │ │ │ ├── for_loop_exception_range.cpp │ │ │ ├── for_loop_induction_async_range.cpp │ │ │ ├── for_loop_induction_range.cpp │ │ │ ├── for_loop_range.cpp │ │ │ ├── for_loop_range_generator.cpp │ │ │ ├── for_loop_reduction_async_range.cpp │ │ │ ├── for_loop_reduction_range.cpp │ │ │ ├── for_loop_strided_range.cpp │ │ │ ├── foreach_adapt.cpp │ │ │ ├── foreach_range.cpp │ │ │ ├── foreach_range_projection.cpp │ │ │ ├── foreach_range_sender.cpp │ │ │ ├── foreach_tests.hpp │ │ │ ├── foreach_tests_projection.hpp │ │ │ ├── generate_range.cpp │ │ │ ├── includes_range.cpp │ │ │ ├── inclusive_scan_range.cpp │ │ │ ├── inplace_merge_range.cpp │ │ │ ├── is_heap_range.cpp │ │ │ ├── is_heap_until_range.cpp │ │ │ ├── is_partitioned_async_range.cpp │ │ │ ├── is_partitioned_projection_range.cpp │ │ │ ├── is_partitioned_range.cpp │ │ │ ├── is_sorted_range.cpp │ │ │ ├── is_sorted_range2.cpp │ │ │ ├── is_sorted_range3.cpp │ │ │ ├── is_sorted_range_exception.cpp │ │ │ ├── is_sorted_range_tests.hpp │ │ │ ├── is_sorted_range_tests2.hpp │ │ │ ├── is_sorted_range_tests3.hpp │ │ │ ├── is_sorted_range_tests_exception.hpp │ │ │ ├── is_sorted_until_range.cpp │ │ │ ├── is_sorted_until_range_exception.cpp │ │ │ ├── lexicographical_compare_range.cpp │ │ │ ├── make_heap_range.cpp │ │ │ ├── max_element_range.cpp │ │ │ ├── merge_range.cpp │ │ │ ├── min_element_range.cpp │ │ │ ├── minmax_element_range.cpp │ │ │ ├── mismatch_binary_range.cpp │ │ │ ├── mismatch_range.cpp │ │ │ ├── move_range.cpp │ │ │ ├── none_of_range.cpp │ │ │ ├── nth_element_range.cpp │ │ │ ├── partial_sort_copy_range.cpp │ │ │ ├── partial_sort_range.cpp │ │ │ ├── partition_copy_range.cpp │ │ │ ├── partition_range.cpp │ │ │ ├── reduce_range.cpp │ │ │ ├── remove_copy_if_range.cpp │ │ │ ├── remove_copy_range.cpp │ │ │ ├── remove_if_range.cpp │ │ │ ├── remove_range.cpp │ │ │ ├── replace_copy_if_range.cpp │ │ │ ├── replace_copy_range.cpp │ │ │ ├── replace_if_range.cpp │ │ │ ├── replace_range.cpp │ │ │ ├── reverse_copy_range.cpp │ │ │ ├── reverse_range.cpp │ │ │ ├── rotate_copy_range.cpp │ │ │ ├── rotate_range.cpp │ │ │ ├── search_range.cpp │ │ │ ├── searchn_range.cpp │ │ │ ├── set_difference_range.cpp │ │ │ ├── set_intersection_range.cpp │ │ │ ├── set_symmetric_difference_range.cpp │ │ │ ├── set_union_range.cpp │ │ │ ├── shift_left_range.cpp │ │ │ ├── shift_right_range.cpp │ │ │ ├── sort_range.cpp │ │ │ ├── sort_range_tests.hpp │ │ │ ├── stable_partition_range.cpp │ │ │ ├── stable_sort_range.cpp │ │ │ ├── stable_sort_range_tests.hpp │ │ │ ├── starts_with_range.cpp │ │ │ ├── swap_ranges_range.cpp │ │ │ ├── test_utils.hpp │ │ │ ├── transform_exclusive_scan_range.cpp │ │ │ ├── transform_inclusive_scan_range.cpp │ │ │ ├── transform_range.cpp │ │ │ ├── transform_range2.cpp │ │ │ ├── transform_range_binary.cpp │ │ │ ├── transform_range_binary2.cpp │ │ │ ├── transform_reduce_binary_bad_alloc_range.cpp │ │ │ ├── transform_reduce_binary_exception_range.cpp │ │ │ ├── transform_reduce_binary_range.cpp │ │ │ ├── transform_reduce_binary_tests_range.hpp │ │ │ ├── transform_reduce_range.cpp │ │ │ ├── uninitialized_copy_n_range.cpp │ │ │ ├── uninitialized_copy_range.cpp │ │ │ ├── uninitialized_default_construct_range.cpp │ │ │ ├── uninitialized_default_constructn_range.cpp │ │ │ ├── uninitialized_fill_range.cpp │ │ │ ├── uninitialized_filln_range.cpp │ │ │ ├── uninitialized_move_n_range.cpp │ │ │ ├── uninitialized_move_range.cpp │ │ │ ├── uninitialized_value_construct_range.cpp │ │ │ ├── uninitialized_value_constructn_range.cpp │ │ │ ├── unique_copy_range.cpp │ │ │ └── unique_range.cpp │ │ │ ├── datapar_algorithms │ │ │ ├── CMakeLists.txt │ │ │ ├── adjacentdifference_datapar.cpp │ │ │ ├── adjacentfind_datapar.cpp │ │ │ ├── all_of_datapar.cpp │ │ │ ├── any_of_datapar.cpp │ │ │ ├── copy_datapar.cpp │ │ │ ├── copyn_datapar.cpp │ │ │ ├── count_datapar.cpp │ │ │ ├── countif_datapar.cpp │ │ │ ├── equal_binary_datapar.cpp │ │ │ ├── equal_datapar.cpp │ │ │ ├── fill_datapar.cpp │ │ │ ├── filln_datapar.cpp │ │ │ ├── find_datapar.cpp │ │ │ ├── findend_datapar.cpp │ │ │ ├── findfirstof_datapar.cpp │ │ │ ├── findif_datapar.cpp │ │ │ ├── findifnot_datapar.cpp │ │ │ ├── for_loop_datapar.cpp │ │ │ ├── foreach_datapar.cpp │ │ │ ├── foreach_datapar_zipiter.cpp │ │ │ ├── foreachn_datapar.cpp │ │ │ ├── generate_datapar.cpp │ │ │ ├── generate_tests.hpp │ │ │ ├── generaten_datapar.cpp │ │ │ ├── generaten_tests.hpp │ │ │ ├── mismatch_binary_datapar.cpp │ │ │ ├── mismatch_datapar.cpp │ │ │ ├── none_of_datapar.cpp │ │ │ ├── reduce_datapar.cpp │ │ │ ├── replace_copy_datapar.cpp │ │ │ ├── replace_copy_if_datapar.cpp │ │ │ ├── replace_datapar.cpp │ │ │ ├── replace_if_datapar.cpp │ │ │ ├── transform_binary2_datapar.cpp │ │ │ ├── transform_binary_datapar.cpp │ │ │ ├── transform_datapar.cpp │ │ │ ├── transform_reduce_binary_datapar.cpp │ │ │ └── transform_reduce_datapar.cpp │ │ │ └── unseq_algorithms │ │ │ ├── CMakeLists.txt │ │ │ ├── foreach_unseq.cpp │ │ │ ├── foreach_unseq_zipiter.cpp │ │ │ ├── foreachn_unseq.cpp │ │ │ ├── reduce_unseq.cpp │ │ │ ├── transform_binary2_unseq.cpp │ │ │ ├── transform_binary_unseq.cpp │ │ │ ├── transform_reduce_binary_unseq.cpp │ │ │ ├── transform_reduce_unseq.cpp │ │ │ └── transform_unseq.cpp │ ├── allocator_support │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── allocator_support │ │ │ │ ├── aligned_allocator.hpp │ │ │ │ ├── allocator_deleter.hpp │ │ │ │ ├── detail │ │ │ │ └── new.hpp │ │ │ │ ├── internal_allocator.hpp │ │ │ │ ├── thread_local_caching_allocator.hpp │ │ │ │ └── traits │ │ │ │ └── is_allocator.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── asio │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── asio │ │ │ │ ├── asio_util.hpp │ │ │ │ └── map_hostnames.hpp │ │ ├── src │ │ │ ├── asio_util.cpp │ │ │ └── map_hostnames.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── assertion │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── assert.hpp │ │ │ │ └── assertion │ │ │ │ ├── api.hpp │ │ │ │ ├── current_function.hpp │ │ │ │ ├── evaluate_assert.hpp │ │ │ │ ├── macros.hpp │ │ │ │ └── source_location.hpp │ │ ├── src │ │ │ ├── assertion.cpp │ │ │ └── source_location.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── assert_fail.cpp │ │ │ └── assert_succeed.cpp │ ├── async_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── async_base │ │ │ │ ├── async.hpp │ │ │ │ ├── dataflow.hpp │ │ │ │ ├── launch_policy.hpp │ │ │ │ ├── post.hpp │ │ │ │ ├── scheduling_properties.hpp │ │ │ │ ├── sync.hpp │ │ │ │ └── traits │ │ │ │ └── is_launch_policy.hpp │ │ ├── src │ │ │ └── launch_policy.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── launch_policy.cpp │ ├── async_combinators │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── async_combinators │ │ │ │ ├── detail │ │ │ │ └── throw_if_exceptional.hpp │ │ │ │ ├── split_future.hpp │ │ │ │ ├── wait_all.hpp │ │ │ │ ├── wait_any.hpp │ │ │ │ ├── wait_each.hpp │ │ │ │ ├── wait_some.hpp │ │ │ │ ├── when_all.hpp │ │ │ │ ├── when_any.hpp │ │ │ │ ├── when_each.hpp │ │ │ │ └── when_some.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── split_future_2246.cpp │ │ │ ├── wait_all_std_array_2035.cpp │ │ │ └── when_all_vectors_1623.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── split_shared_future.cpp │ │ │ ├── wait_all.cpp │ │ │ ├── wait_all_std_array.cpp │ │ │ ├── wait_any.cpp │ │ │ ├── wait_any_std_array.cpp │ │ │ ├── wait_each.cpp │ │ │ ├── wait_some.cpp │ │ │ ├── wait_some_std_array.cpp │ │ │ ├── when_all.cpp │ │ │ ├── when_all_std_array.cpp │ │ │ ├── when_any.cpp │ │ │ ├── when_any_std_array.cpp │ │ │ ├── when_each.cpp │ │ │ ├── when_some.cpp │ │ │ └── when_some_std_array.cpp │ ├── async_cuda │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── async_cuda │ │ │ │ ├── cublas_executor.hpp │ │ │ │ ├── cuda_event.hpp │ │ │ │ ├── cuda_exception.hpp │ │ │ │ ├── cuda_executor.hpp │ │ │ │ ├── cuda_future.hpp │ │ │ │ ├── cuda_polling_helper.hpp │ │ │ │ ├── custom_blas_api.hpp │ │ │ │ ├── custom_gpu_api.hpp │ │ │ │ ├── detail │ │ │ │ ├── cuda_debug.hpp │ │ │ │ └── cuda_event_callback.hpp │ │ │ │ ├── get_targets.hpp │ │ │ │ ├── target.hpp │ │ │ │ └── transform_stream.hpp │ │ ├── src │ │ │ ├── cublas_executor.cpp │ │ │ ├── cuda_event.cpp │ │ │ ├── cuda_event_callback.cpp │ │ │ ├── cuda_exception.cpp │ │ │ ├── cuda_future.cpp │ │ │ ├── cuda_target.cpp │ │ │ └── get_targets.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ ├── cuda_executor_throughput.cpp │ │ │ └── synchronize.cu │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── cublas_matmul.cpp │ │ │ ├── cuda_future.cpp │ │ │ ├── cuda_multi_device_polling.cpp │ │ │ ├── saxpy.cu │ │ │ ├── transform_stream.cu │ │ │ └── trivial_demo.cu │ ├── async_local │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── async_local │ │ │ │ ├── async.hpp │ │ │ │ ├── async_fwd.hpp │ │ │ │ ├── dataflow.hpp │ │ │ │ ├── post.hpp │ │ │ │ ├── sync.hpp │ │ │ │ └── sync_fwd.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── apply_local.cpp │ │ │ ├── apply_local_executor.cpp │ │ │ ├── async_local.cpp │ │ │ ├── async_local_executor.cpp │ │ │ └── async_local_executor_additional_arguments.cpp │ ├── async_mpi │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── async_mpi │ │ │ │ ├── mpi_exception.hpp │ │ │ │ ├── mpi_executor.hpp │ │ │ │ ├── mpi_future.hpp │ │ │ │ └── transform_mpi.hpp │ │ ├── src │ │ │ └── mpi_future.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── algorithm_transform_mpi.cpp │ │ │ └── mpi_ring_async_executor.cpp │ ├── async_sycl │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── async_sycl │ │ │ │ ├── detail │ │ │ │ └── sycl_event_callback.hpp │ │ │ │ ├── sycl_executor.hpp │ │ │ │ ├── sycl_future.hpp │ │ │ │ └── sycl_polling_helper.hpp │ │ ├── src │ │ │ ├── sycl_event_callback.cpp │ │ │ └── sycl_future.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── common │ │ │ └── sycl_vector_add_test_utils.hpp │ │ │ ├── sycl_stream.cpp │ │ │ ├── sycl_vector_add_concurrent_executors.cpp │ │ │ ├── sycl_vector_add_executor.cpp │ │ │ └── sycl_vector_add_get_future.cpp │ ├── batch_environments │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── batch_environments │ │ │ │ ├── batch_environment.hpp │ │ │ │ └── detail │ │ │ │ ├── alps_environment.hpp │ │ │ │ ├── flux_environment.hpp │ │ │ │ ├── pbs_environment.hpp │ │ │ │ ├── pjm_environment.hpp │ │ │ │ └── slurm_environment.hpp │ │ ├── src │ │ │ ├── batch_environment.cpp │ │ │ └── detail │ │ │ │ ├── alps_environment.cpp │ │ │ │ ├── flux_environment.cpp │ │ │ │ ├── pbs_environment.cpp │ │ │ │ ├── pjm_environment.cpp │ │ │ │ └── slurm_environment.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── parse_slurm_environment.cpp │ │ │ └── parse_slurm_nodelist.cpp │ ├── cache │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── cache │ │ │ │ ├── entries │ │ │ │ ├── entry.hpp │ │ │ │ ├── fifo_entry.hpp │ │ │ │ ├── lfu_entry.hpp │ │ │ │ ├── lru_entry.hpp │ │ │ │ └── size_entry.hpp │ │ │ │ ├── local_cache.hpp │ │ │ │ ├── lru_cache.hpp │ │ │ │ ├── policies │ │ │ │ └── always.hpp │ │ │ │ └── statistics │ │ │ │ ├── local_full_statistics.hpp │ │ │ │ ├── local_statistics.hpp │ │ │ │ └── no_statistics.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── local_lru_cache.cpp │ │ │ ├── local_mru_cache.cpp │ │ │ └── local_statistics.cpp │ ├── command_line_handling_local │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ └── HPX_SetupJSON.cmake │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── command_line_handling_local │ │ │ │ ├── command_line_handling_local.hpp │ │ │ │ ├── json_config_file.hpp │ │ │ │ ├── late_command_line_handling_local.hpp │ │ │ │ └── parse_command_line_local.hpp │ │ ├── src │ │ │ ├── command_line_handling_local.cpp │ │ │ ├── json_config_file.cpp │ │ │ ├── late_command_line_handling_local.cpp │ │ │ └── parse_command_line_local.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ └── ignore_aliases_local.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── config_file.json │ │ │ └── json_config_file.cpp │ ├── compute_local │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── compute_local │ │ │ │ ├── detail │ │ │ │ ├── get_proxy_type.hpp │ │ │ │ └── iterator.hpp │ │ │ │ ├── host.hpp │ │ │ │ ├── host │ │ │ │ ├── block_allocator.hpp │ │ │ │ ├── block_executor.hpp │ │ │ │ ├── block_fork_join_executor.hpp │ │ │ │ ├── get_targets.hpp │ │ │ │ ├── numa_allocator.hpp │ │ │ │ ├── numa_binding_allocator.hpp │ │ │ │ ├── numa_domains.hpp │ │ │ │ ├── target.hpp │ │ │ │ └── traits │ │ │ │ │ └── access_target.hpp │ │ │ │ ├── serialization │ │ │ │ └── vector.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── traits │ │ │ │ ├── access_target.hpp │ │ │ │ └── allocator_traits.hpp │ │ │ │ └── vector.hpp │ │ ├── src │ │ │ ├── get_host_targets.cpp │ │ │ ├── host_target.cpp │ │ │ └── numa_domains.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── for_each_value_proxy.cpp │ │ │ └── parallel_fill_4132.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── allocator_binder_linear.hpp │ │ │ ├── allocator_binder_matrix.hpp │ │ │ ├── block_allocator.cpp │ │ │ ├── block_fork_join_executor.cpp │ │ │ └── numa_allocator.cpp │ ├── concepts │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── concepts │ │ │ │ ├── concepts.hpp │ │ │ │ ├── has_member_xxx.hpp │ │ │ │ └── has_xxx.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── concurrency │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── concurrency │ │ │ │ ├── barrier.hpp │ │ │ │ ├── cache_line_data.hpp │ │ │ │ ├── concurrentqueue.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── detail │ │ │ │ ├── contiguous_index_queue.hpp │ │ │ │ ├── copy_payload.hpp │ │ │ │ ├── freelist.hpp │ │ │ │ ├── freelist_stack.hpp │ │ │ │ ├── non_contiguous_index_queue.hpp │ │ │ │ ├── tagged_ptr.hpp │ │ │ │ ├── tagged_ptr_dcas.hpp │ │ │ │ ├── tagged_ptr_pair.hpp │ │ │ │ └── tagged_ptr_ptrcompression.hpp │ │ │ │ ├── queue.hpp │ │ │ │ ├── spinlock.hpp │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ └── stack.hpp │ │ ├── src │ │ │ └── barrier.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── contiguous_index_queue.cpp │ │ │ ├── freelist.cpp │ │ │ ├── lockfree_fifo.cpp │ │ │ ├── non_contiguous_index_queue.cpp │ │ │ ├── queue.cpp │ │ │ ├── queue_stress.cpp │ │ │ ├── stack.cpp │ │ │ ├── stack_destructor.cpp │ │ │ ├── stack_stress.cpp │ │ │ ├── tagged_ptr.cpp │ │ │ ├── test_common.hpp │ │ │ └── test_helpers.hpp │ ├── config │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ └── templates │ │ │ │ ├── cache_line_size.hpp.in │ │ │ │ ├── config_defines.hpp.in │ │ │ │ └── config_version.hpp.in │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── config.hpp │ │ │ │ ├── config │ │ │ │ ├── asio.hpp │ │ │ │ ├── attributes.hpp │ │ │ │ ├── auto_vectorization.hpp │ │ │ │ ├── autolink.hpp │ │ │ │ ├── branch_hints.hpp │ │ │ │ ├── compiler_fence.hpp │ │ │ │ ├── compiler_specific.hpp │ │ │ │ ├── constexpr.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── deprecation.hpp │ │ │ │ ├── detail │ │ │ │ │ └── compat_error_code.hpp │ │ │ │ ├── emulate_deleted.hpp │ │ │ │ ├── endian.hpp │ │ │ │ ├── export_definitions.hpp │ │ │ │ ├── forceinline.hpp │ │ │ │ ├── forward.hpp │ │ │ │ ├── lambda_capture_this.hpp │ │ │ │ ├── manual_profiling.hpp │ │ │ │ ├── move.hpp │ │ │ │ ├── threads_stack.hpp │ │ │ │ ├── warnings_prefix.hpp │ │ │ │ ├── warnings_suffix.hpp │ │ │ │ └── weak_symbol.hpp │ │ │ │ └── modules │ │ │ │ └── config.hpp │ │ ├── src │ │ │ └── version.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── config_registry │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── modules │ │ │ │ └── config_registry.hpp │ │ ├── src │ │ │ ├── config_entries.cpp │ │ │ └── config_registry.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── config_registry.cpp │ ├── contracts │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── contracts.hpp │ │ │ │ └── contracts │ │ │ │ └── macros.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── declaration_contracts_fail_contract_assert.cpp │ │ │ ├── declaration_contracts_fail_post.cpp │ │ │ ├── declaration_contracts_fail_pre.cpp │ │ │ ├── declaration_contracts_succeed.cpp │ │ │ ├── disabled_contracts.cpp │ │ │ ├── fallback_contracts_fail.cpp │ │ │ └── fallback_contracts_succeed.cpp │ ├── coroutines │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── coroutines │ │ │ │ ├── coroutine.hpp │ │ │ │ ├── coroutine_fwd.hpp │ │ │ │ ├── detail │ │ │ │ ├── combined_tagged_state.hpp │ │ │ │ ├── context_base.hpp │ │ │ │ ├── context_generic_context.hpp │ │ │ │ ├── context_impl.hpp │ │ │ │ ├── context_linux_x86.hpp │ │ │ │ ├── context_posix.hpp │ │ │ │ ├── context_windows_fibers.hpp │ │ │ │ ├── coroutine_accessor.hpp │ │ │ │ ├── coroutine_impl.hpp │ │ │ │ ├── coroutine_self.hpp │ │ │ │ ├── coroutine_stackful_self.hpp │ │ │ │ ├── coroutine_stackful_self_direct.hpp │ │ │ │ ├── coroutine_stackless_self.hpp │ │ │ │ ├── get_stack_pointer.hpp │ │ │ │ ├── posix_utility.hpp │ │ │ │ ├── swap_context.hpp │ │ │ │ └── tss.hpp │ │ │ │ ├── signal_handler_debugging.hpp │ │ │ │ ├── stackless_coroutine.hpp │ │ │ │ ├── thread_enums.hpp │ │ │ │ └── thread_id_type.hpp │ │ ├── src │ │ │ ├── detail │ │ │ │ ├── context_base.cpp │ │ │ │ ├── context_posix.cpp │ │ │ │ ├── coroutine_impl.cpp │ │ │ │ ├── coroutine_self.cpp │ │ │ │ ├── get_stack_pointer.cpp │ │ │ │ ├── posix_utility.cpp │ │ │ │ └── tss.cpp │ │ │ ├── signal_handler_debugging.cpp │ │ │ ├── swapcontext.cpp │ │ │ ├── swapcontext.s │ │ │ ├── swapcontext32.ipp │ │ │ ├── swapcontext64.ipp │ │ │ ├── swapcontext64.s │ │ │ ├── switch_to_fiber.asm │ │ │ ├── thread_enums.cpp │ │ │ └── thread_id_type.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ └── coroutine_function_destructor_yield_4800.cpp │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── datastructures │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── datastructures │ │ │ │ ├── any.hpp │ │ │ │ ├── detail │ │ │ │ ├── dynamic_bitset.hpp │ │ │ │ ├── flat_map.hpp │ │ │ │ ├── flat_set.hpp │ │ │ │ ├── intrusive_list.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── small_vector.hpp │ │ │ │ └── variant.hpp │ │ │ │ ├── member_pack.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── serialization │ │ │ │ ├── dynamic_bitset.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── serializable_any.hpp │ │ │ │ └── tuple.hpp │ │ │ │ ├── traits │ │ │ │ ├── is_tuple_like.hpp │ │ │ │ └── supports_streaming_with_any.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── variant.hpp │ │ │ │ └── variant_helper.hpp │ │ ├── src │ │ │ └── serializable_any.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ └── small_vector_benchmark.cpp │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── non_default_constructible_tuple_5886.cpp │ │ │ └── optional_swap_3200.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── any.cpp │ │ │ ├── any_serialization.cpp │ │ │ ├── bitset_test.hpp │ │ │ ├── boost_any.cpp │ │ │ ├── dynamic_bitset1.cpp │ │ │ ├── dynamic_bitset2.cpp │ │ │ ├── dynamic_bitset3.cpp │ │ │ ├── dynamic_bitset4.cpp │ │ │ ├── dynamic_bitset5.cpp │ │ │ ├── flat_map.cpp │ │ │ ├── flat_set.cpp │ │ │ ├── intrusive_list.cpp │ │ │ ├── is_tuple_like.cpp │ │ │ ├── serializable_any.cpp │ │ │ ├── serializable_boost_any.cpp │ │ │ ├── serialization_optional.cpp │ │ │ ├── serialization_raw_pointer_tuple.cpp │ │ │ ├── serialization_tuple.cpp │ │ │ ├── small_big_object.hpp │ │ │ ├── small_vector.cpp │ │ │ ├── tuple.cpp │ │ │ └── unique_any.cpp │ ├── debugging │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── debugging │ │ │ │ ├── attach_debugger.hpp │ │ │ │ ├── backtrace.hpp │ │ │ │ ├── backtrace │ │ │ │ └── backtrace.hpp │ │ │ │ ├── demangle_helper.hpp │ │ │ │ ├── environ.hpp │ │ │ │ ├── macros.hpp │ │ │ │ └── print.hpp │ │ ├── src │ │ │ ├── attach_debugger.cpp │ │ │ ├── backtrace.cpp │ │ │ └── print.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── print.cpp │ ├── errors │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── errors │ │ │ │ ├── define_error_info.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── error_code.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── exception_fwd.hpp │ │ │ │ ├── exception_info.hpp │ │ │ │ ├── exception_list.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── throw_exception.hpp │ │ │ │ └── try_catch_exception_ptr.hpp │ │ ├── src │ │ │ ├── error_code.cpp │ │ │ ├── exception.cpp │ │ │ ├── exception_list.cpp │ │ │ └── throw_exception.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── exception.cpp │ ├── execution │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── execution │ │ │ │ ├── algorithms │ │ │ │ ├── as_sender.hpp │ │ │ │ ├── bulk.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── inject_scheduler.hpp │ │ │ │ │ ├── is_negative.hpp │ │ │ │ │ ├── partial_algorithm.hpp │ │ │ │ │ ├── predicates.hpp │ │ │ │ │ └── single_result.hpp │ │ │ │ ├── ensure_started.hpp │ │ │ │ ├── execute.hpp │ │ │ │ ├── just.hpp │ │ │ │ ├── keep_future.hpp │ │ │ │ ├── let_error.hpp │ │ │ │ ├── let_stopped.hpp │ │ │ │ ├── let_value.hpp │ │ │ │ ├── make_future.hpp │ │ │ │ ├── run_loop.hpp │ │ │ │ ├── schedule_from.hpp │ │ │ │ ├── split.hpp │ │ │ │ ├── start_detached.hpp │ │ │ │ ├── sync_wait.hpp │ │ │ │ ├── then.hpp │ │ │ │ ├── transfer.hpp │ │ │ │ ├── transfer_just.hpp │ │ │ │ ├── when_all.hpp │ │ │ │ └── when_all_vector.hpp │ │ │ │ ├── detail │ │ │ │ ├── async_launch_policy_dispatch.hpp │ │ │ │ ├── execution_parameter_callbacks.hpp │ │ │ │ ├── future_exec.hpp │ │ │ │ ├── post_policy_dispatch.hpp │ │ │ │ └── sync_launch_policy_dispatch.hpp │ │ │ │ ├── execution.hpp │ │ │ │ ├── executor_parameters.hpp │ │ │ │ ├── executors │ │ │ │ ├── adaptive_static_chunk_size.hpp │ │ │ │ ├── auto_chunk_size.hpp │ │ │ │ ├── collect_chunking_parameters.hpp │ │ │ │ ├── default_parameters.hpp │ │ │ │ ├── dynamic_chunk_size.hpp │ │ │ │ ├── execution.hpp │ │ │ │ ├── execution_information.hpp │ │ │ │ ├── execution_parameters.hpp │ │ │ │ ├── execution_parameters_fwd.hpp │ │ │ │ ├── fused_bulk_execute.hpp │ │ │ │ ├── guided_chunk_size.hpp │ │ │ │ ├── max_num_chunks.hpp │ │ │ │ ├── num_cores.hpp │ │ │ │ ├── persistent_auto_chunk_size.hpp │ │ │ │ ├── polymorphic_executor.hpp │ │ │ │ ├── rebind_executor.hpp │ │ │ │ └── static_chunk_size.hpp │ │ │ │ ├── queries │ │ │ │ ├── get_allocator.hpp │ │ │ │ ├── get_delegatee_scheduler.hpp │ │ │ │ ├── get_scheduler.hpp │ │ │ │ ├── get_stop_token.hpp │ │ │ │ └── read.hpp │ │ │ │ └── traits │ │ │ │ ├── detail │ │ │ │ ├── eve │ │ │ │ │ ├── vector_pack_alignment_size.hpp │ │ │ │ │ ├── vector_pack_all_any_none.hpp │ │ │ │ │ ├── vector_pack_conditionals.hpp │ │ │ │ │ ├── vector_pack_count_bits.hpp │ │ │ │ │ ├── vector_pack_find.hpp │ │ │ │ │ ├── vector_pack_get_set.hpp │ │ │ │ │ ├── vector_pack_load_store.hpp │ │ │ │ │ ├── vector_pack_reduce.hpp │ │ │ │ │ └── vector_pack_type.hpp │ │ │ │ ├── simd │ │ │ │ │ ├── vector_pack_alignment_size.hpp │ │ │ │ │ ├── vector_pack_all_any_none.hpp │ │ │ │ │ ├── vector_pack_conditionals.hpp │ │ │ │ │ ├── vector_pack_count_bits.hpp │ │ │ │ │ ├── vector_pack_find.hpp │ │ │ │ │ ├── vector_pack_get_set.hpp │ │ │ │ │ ├── vector_pack_load_store.hpp │ │ │ │ │ ├── vector_pack_reduce.hpp │ │ │ │ │ ├── vector_pack_simd.hpp │ │ │ │ │ └── vector_pack_type.hpp │ │ │ │ └── vc │ │ │ │ │ ├── vector_pack_alignment_size.hpp │ │ │ │ │ ├── vector_pack_all_any_none.hpp │ │ │ │ │ ├── vector_pack_conditionals.hpp │ │ │ │ │ ├── vector_pack_count_bits.hpp │ │ │ │ │ ├── vector_pack_find.hpp │ │ │ │ │ ├── vector_pack_get_set.hpp │ │ │ │ │ ├── vector_pack_load_store.hpp │ │ │ │ │ ├── vector_pack_reduce.hpp │ │ │ │ │ └── vector_pack_type.hpp │ │ │ │ ├── executor_traits.hpp │ │ │ │ ├── future_then_result_exec.hpp │ │ │ │ ├── is_execution_policy.hpp │ │ │ │ ├── vector_pack_alignment_size.hpp │ │ │ │ ├── vector_pack_all_any_none.hpp │ │ │ │ ├── vector_pack_conditionals.hpp │ │ │ │ ├── vector_pack_count_bits.hpp │ │ │ │ ├── vector_pack_find.hpp │ │ │ │ ├── vector_pack_get_set.hpp │ │ │ │ ├── vector_pack_load_store.hpp │ │ │ │ ├── vector_pack_reduce.hpp │ │ │ │ └── vector_pack_type.hpp │ │ ├── src │ │ │ ├── execution_parameter_callbacks.cpp │ │ │ ├── polymorphic_executor.cpp │ │ │ └── run_loop.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── annotated_minmax_2593.cpp │ │ │ ├── chunk_size_4118.cpp │ │ │ ├── fibonacci_sr.cpp │ │ │ ├── is_executor_1691.cpp │ │ │ ├── lambda_arguments_2403.cpp │ │ │ ├── lambda_return_type_2402.cpp │ │ │ └── rebind_par_simd.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── algorithm_as_sender.cpp │ │ │ ├── algorithm_bulk.cpp │ │ │ ├── algorithm_ensure_started.cpp │ │ │ ├── algorithm_execute.cpp │ │ │ ├── algorithm_just.cpp │ │ │ ├── algorithm_just_error.cpp │ │ │ ├── algorithm_just_stopped.cpp │ │ │ ├── algorithm_let_error.cpp │ │ │ ├── algorithm_let_stopped.cpp │ │ │ ├── algorithm_let_value.cpp │ │ │ ├── algorithm_run_loop.cpp │ │ │ ├── algorithm_split.cpp │ │ │ ├── algorithm_start_detached.cpp │ │ │ ├── algorithm_sync_wait.cpp │ │ │ ├── algorithm_sync_wait_with_variant.cpp │ │ │ ├── algorithm_then.cpp │ │ │ ├── algorithm_transfer.cpp │ │ │ ├── algorithm_transfer_just.cpp │ │ │ ├── algorithm_transfer_when_all.cpp │ │ │ ├── algorithm_when_all.cpp │ │ │ ├── algorithm_when_all_vector.cpp │ │ │ ├── bulk_async.cpp │ │ │ ├── environment_queries.cpp │ │ │ ├── executor_parameters.cpp │ │ │ ├── executor_parameters_dispatching.cpp │ │ │ ├── executor_parameters_timer_hooks.cpp │ │ │ ├── foreach_tests.hpp │ │ │ ├── forward_progress_guarantee.cpp │ │ │ ├── forwarding_env_query.cpp │ │ │ ├── forwarding_scheduler_query.cpp │ │ │ ├── forwarding_sender_query.cpp │ │ │ ├── future_then_executor.cpp │ │ │ ├── minimal_async_executor.cpp │ │ │ ├── minimal_sync_executor.cpp │ │ │ ├── persistent_executor_parameters.cpp │ │ │ └── test_utils.hpp │ ├── execution_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── execution_base │ │ │ │ ├── agent_base.hpp │ │ │ │ ├── agent_ref.hpp │ │ │ │ ├── any_sender.hpp │ │ │ │ ├── completion_scheduler.hpp │ │ │ │ ├── completion_signatures.hpp │ │ │ │ ├── context_base.hpp │ │ │ │ ├── coroutine_utils.hpp │ │ │ │ ├── detail │ │ │ │ └── spinlock_deadlock_detection.hpp │ │ │ │ ├── execution.hpp │ │ │ │ ├── get_env.hpp │ │ │ │ ├── operation_state.hpp │ │ │ │ ├── receiver.hpp │ │ │ │ ├── resource_base.hpp │ │ │ │ ├── sender.hpp │ │ │ │ ├── stdexec_forward.hpp │ │ │ │ ├── this_thread.hpp │ │ │ │ └── traits │ │ │ │ ├── coroutine_traits.hpp │ │ │ │ ├── is_executor.hpp │ │ │ │ └── is_executor_parameters.hpp │ │ ├── src │ │ │ ├── agent_ref.cpp │ │ │ ├── any_sender.cpp │ │ │ ├── spinlock_deadlock_detection.cpp │ │ │ └── this_thread.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ ├── algorithm_test_utils.hpp │ │ │ └── coroutine_task.hpp │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── any_sender.cpp │ │ │ ├── basic_operation_state.cpp │ │ │ ├── basic_receiver.cpp │ │ │ ├── basic_schedule.cpp │ │ │ ├── basic_sender.cpp │ │ │ ├── completion_signatures.cpp │ │ │ ├── coroutine_traits.cpp │ │ │ ├── coroutine_utils.cpp │ │ │ ├── execute_may_block_caller.cpp │ │ │ ├── execution_context.cpp │ │ │ ├── get_env.cpp │ │ │ └── stdexec.cpp │ ├── executors │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── disable_thread_stealing_executor.cpp │ │ │ └── executor_with_thread_hooks.cpp │ │ ├── include │ │ │ └── hpx │ │ │ │ └── executors │ │ │ │ ├── annotating_executor.hpp │ │ │ │ ├── async.hpp │ │ │ │ ├── current_executor.hpp │ │ │ │ ├── dataflow.hpp │ │ │ │ ├── datapar │ │ │ │ ├── execution_policy.hpp │ │ │ │ ├── execution_policy_fwd.hpp │ │ │ │ └── execution_policy_mappings.hpp │ │ │ │ ├── detail │ │ │ │ ├── hierarchical_spawning.hpp │ │ │ │ └── index_queue_spawning.hpp │ │ │ │ ├── exception_list.hpp │ │ │ │ ├── execute_on.hpp │ │ │ │ ├── execution_policy.hpp │ │ │ │ ├── execution_policy_annotation.hpp │ │ │ │ ├── execution_policy_fwd.hpp │ │ │ │ ├── execution_policy_mappings.hpp │ │ │ │ ├── execution_policy_parameters.hpp │ │ │ │ ├── execution_policy_scheduling_property.hpp │ │ │ │ ├── explicit_scheduler_executor.hpp │ │ │ │ ├── fork_join_executor.hpp │ │ │ │ ├── guided_pool_executor.hpp │ │ │ │ ├── limiting_executor.hpp │ │ │ │ ├── parallel_executor.hpp │ │ │ │ ├── parallel_executor_aggregated.hpp │ │ │ │ ├── post.hpp │ │ │ │ ├── restricted_thread_pool_executor.hpp │ │ │ │ ├── scheduler_executor.hpp │ │ │ │ ├── sequenced_executor.hpp │ │ │ │ ├── service_executors.hpp │ │ │ │ ├── std_execution_policy.hpp │ │ │ │ ├── sync.hpp │ │ │ │ ├── thread_pool_executor.hpp │ │ │ │ ├── thread_pool_scheduler.hpp │ │ │ │ └── thread_pool_scheduler_bulk.hpp │ │ ├── src │ │ │ ├── current_executor.cpp │ │ │ ├── exception_list_callbacks.cpp │ │ │ ├── fork_join_executor.cpp │ │ │ └── service_executors.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── bulk_sync_wait.cpp │ │ │ ├── bulk_then_execute_3182.cpp │ │ │ ├── fork_join_with_result.cpp │ │ │ ├── future_then_async_executor.cpp │ │ │ ├── parallel_executor_1781.cpp │ │ │ ├── pu_count_6184.cpp │ │ │ ├── service_executor_cuda.cu │ │ │ └── wrapping_executor.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── annotating_executor.cpp │ │ │ ├── annotation_property.cpp │ │ │ ├── created_executor.cpp │ │ │ ├── execution_policy_mappings.cpp │ │ │ ├── explicit_scheduler_executor.cpp │ │ │ ├── fork_join_executor.cpp │ │ │ ├── limiting_executor.cpp │ │ │ ├── parallel_executor.cpp │ │ │ ├── parallel_executor_parameters.cpp │ │ │ ├── parallel_fork_executor.cpp │ │ │ ├── parallel_policy_executor.cpp │ │ │ ├── polymorphic_executor.cpp │ │ │ ├── scheduler_executor.cpp │ │ │ ├── sequenced_executor.cpp │ │ │ ├── service_executors.cpp │ │ │ ├── shared_parallel_executor.cpp │ │ │ ├── standalone_thread_pool_executor.cpp │ │ │ ├── std_execution_policies.cpp │ │ │ └── thread_pool_scheduler.cpp │ ├── filesystem │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── filesystem │ │ │ │ └── api.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── format │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── format.hpp │ │ │ │ ├── format │ │ │ │ └── api.hpp │ │ │ │ └── util │ │ │ │ ├── bad_lexical_cast.hpp │ │ │ │ ├── from_string.hpp │ │ │ │ └── to_string.hpp │ │ ├── src │ │ │ ├── format.cpp │ │ │ └── util │ │ │ │ └── bad_lexical_cast.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── format.cpp │ ├── functional │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── functional │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_back.hpp │ │ │ │ ├── bind_front.hpp │ │ │ │ ├── deferred_call.hpp │ │ │ │ ├── detail │ │ │ │ ├── basic_function.hpp │ │ │ │ ├── empty_function.hpp │ │ │ │ ├── function_registration.hpp │ │ │ │ ├── reset_function.hpp │ │ │ │ ├── runtime_get.hpp │ │ │ │ └── vtable │ │ │ │ │ ├── callable_vtable.hpp │ │ │ │ │ ├── copyable_vtable.hpp │ │ │ │ │ ├── function_vtable.hpp │ │ │ │ │ └── vtable.hpp │ │ │ │ ├── experimental │ │ │ │ ├── scope_exit.hpp │ │ │ │ ├── scope_fail.hpp │ │ │ │ └── scope_success.hpp │ │ │ │ ├── first_argument.hpp │ │ │ │ ├── function.hpp │ │ │ │ ├── function_ref.hpp │ │ │ │ ├── invoke_fused.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── mem_fn.hpp │ │ │ │ ├── move_only_function.hpp │ │ │ │ ├── one_shot.hpp │ │ │ │ ├── protect.hpp │ │ │ │ ├── reference_wrapper.hpp │ │ │ │ ├── serialization │ │ │ │ ├── detail │ │ │ │ │ ├── serializable_basic_function.hpp │ │ │ │ │ └── vtable │ │ │ │ │ │ ├── serializable_function_vtable.hpp │ │ │ │ │ │ └── serializable_vtable.hpp │ │ │ │ ├── reference_wrapper.hpp │ │ │ │ ├── serializable_function.hpp │ │ │ │ └── serializable_move_only_function.hpp │ │ │ │ └── traits │ │ │ │ ├── get_action_name.hpp │ │ │ │ ├── get_function_address.hpp │ │ │ │ ├── get_function_annotation.hpp │ │ │ │ ├── is_action.hpp │ │ │ │ ├── is_bind_expression.hpp │ │ │ │ └── is_placeholder.hpp │ │ ├── src │ │ │ ├── basic_function.cpp │ │ │ └── empty_function.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── bind_sfinae_5488.cpp │ │ │ ├── is_callable_1179.cpp │ │ │ └── protect_with_nullary_pfo.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── allocator_test.cpp │ │ │ ├── bind_const_test.cpp │ │ │ ├── bind_cv_test.cpp │ │ │ ├── bind_dm2_test.cpp │ │ │ ├── bind_dm3_test.cpp │ │ │ ├── bind_dm_test.cpp │ │ │ ├── bind_placeholder_test.cpp │ │ │ ├── bind_rv_sp_test.cpp │ │ │ ├── bind_rvalue_test.cpp │ │ │ ├── bind_stateful_test.cpp │ │ │ ├── bind_test.cpp │ │ │ ├── contains_test.cpp │ │ │ ├── function_args.cpp │ │ │ ├── function_arith.cpp │ │ │ ├── function_bind_test.cpp │ │ │ ├── function_object_size.cpp │ │ │ ├── function_ref.cpp │ │ │ ├── function_ref_wrapper.cpp │ │ │ ├── function_target.cpp │ │ │ ├── function_test.cpp │ │ │ ├── is_invocable.cpp │ │ │ ├── mem_fn_derived_test.cpp │ │ │ ├── mem_fn_dm_test.cpp │ │ │ ├── mem_fn_eq_test.cpp │ │ │ ├── mem_fn_rv_test.cpp │ │ │ ├── mem_fn_test.cpp │ │ │ ├── mem_fn_unary_addr_test.cpp │ │ │ ├── mem_fn_void_test.cpp │ │ │ ├── nothrow_swap.cpp │ │ │ ├── protect_test.cpp │ │ │ ├── scope.cpp │ │ │ ├── stateless_test.cpp │ │ │ └── sum_avg.cpp │ ├── futures │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── futures │ │ │ │ ├── detail │ │ │ │ ├── execute_thread.hpp │ │ │ │ ├── future_data.hpp │ │ │ │ └── future_transforms.hpp │ │ │ │ ├── future.hpp │ │ │ │ ├── future_fwd.hpp │ │ │ │ ├── future_or_value.hpp │ │ │ │ ├── futures_factory.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── packaged_continuation.hpp │ │ │ │ ├── packaged_task.hpp │ │ │ │ ├── promise.hpp │ │ │ │ └── traits │ │ │ │ ├── acquire_future.hpp │ │ │ │ ├── acquire_shared_state.hpp │ │ │ │ ├── detail │ │ │ │ ├── future_await_traits.hpp │ │ │ │ └── future_traits.hpp │ │ │ │ ├── future_access.hpp │ │ │ │ ├── future_then_result.hpp │ │ │ │ ├── future_traits.hpp │ │ │ │ ├── get_remote_result.hpp │ │ │ │ ├── is_future.hpp │ │ │ │ ├── is_future_range.hpp │ │ │ │ ├── is_future_tuple.hpp │ │ │ │ ├── promise_local_result.hpp │ │ │ │ └── promise_remote_result.hpp │ │ ├── src │ │ │ ├── detail │ │ │ │ └── execute_thread.cpp │ │ │ └── future_data.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── exception_from_continuation_1613.cpp │ │ │ ├── fail_future_2667.cpp │ │ │ ├── future_2667.cpp │ │ │ ├── future_790.cpp │ │ │ ├── future_range_ambiguity_2032.cpp │ │ │ ├── future_unwrap_1182.cpp │ │ │ ├── future_unwrap_878.cpp │ │ │ ├── set_hpx_limit_798.cpp │ │ │ ├── shared_future_continuation_order.cpp │ │ │ ├── shared_future_then_2166.cpp │ │ │ └── wait_for_1751.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── await.cpp │ │ │ ├── direct_scoped_execution.cpp │ │ │ ├── future.cpp │ │ │ ├── future_ref.cpp │ │ │ ├── future_then.cpp │ │ │ ├── local_promise_allocator.cpp │ │ │ ├── local_use_allocator.cpp │ │ │ ├── make_future.cpp │ │ │ ├── make_ready_future.cpp │ │ │ ├── shared_future.cpp │ │ │ └── test_allocator.hpp │ ├── gasnet_base │ │ ├── CMakeLists.txt │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── gasnet_base │ │ │ │ ├── gasnet.hpp │ │ │ │ └── gasnet_environment.hpp │ │ ├── src │ │ │ └── gasnet_environment.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── hardware │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── hardware │ │ │ │ ├── timestamp.hpp │ │ │ │ └── timestamp │ │ │ │ ├── bgq.hpp │ │ │ │ ├── cuda.hpp │ │ │ │ ├── linux_generic.hpp │ │ │ │ ├── linux_riscv_64.hpp │ │ │ │ ├── linux_x86_32.hpp │ │ │ │ ├── linux_x86_64.hpp │ │ │ │ └── msvc.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── hashing │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── hashing │ │ │ │ ├── fibhash.hpp │ │ │ │ └── jenkins_hash.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── include_local │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── algorithm.hpp.in │ │ │ │ ├── any.hpp │ │ │ │ ├── barrier.hpp.in │ │ │ │ ├── bit.hpp │ │ │ │ ├── channel.hpp.in │ │ │ │ ├── chrono.hpp │ │ │ │ ├── compute.hpp.in │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── datapar.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── execution.hpp │ │ │ │ ├── experimental │ │ │ │ ├── run_on_all.hpp │ │ │ │ ├── scope.hpp │ │ │ │ └── task_group.hpp │ │ │ │ ├── format.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── future.hpp.in │ │ │ │ ├── generator.hpp │ │ │ │ ├── latch.hpp.in │ │ │ │ ├── memory.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── numeric.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── runtime.hpp.in │ │ │ │ ├── semaphore.hpp │ │ │ │ ├── shared_mutex.hpp │ │ │ │ ├── source_location.hpp │ │ │ │ ├── stop_token.hpp │ │ │ │ ├── system_error.hpp │ │ │ │ ├── task_block.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── unwrap.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── ini │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── ini │ │ │ │ └── ini.hpp │ │ ├── src │ │ │ └── ini.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── init_runtime_local │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── init.hpp.in │ │ │ │ └── init_runtime_local │ │ │ │ ├── detail │ │ │ │ └── init_logging.hpp │ │ │ │ └── init_runtime_local.hpp │ │ ├── src │ │ │ ├── init_logging.cpp │ │ │ └── init_runtime_local.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── on_finalize.cpp │ │ │ └── shutdown_suspended_thread_local.cpp │ ├── io_service │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── io_service │ │ │ │ ├── io_service_pool.hpp │ │ │ │ ├── io_service_pool_fwd.hpp │ │ │ │ └── io_service_thread_pool.hpp │ │ ├── src │ │ │ ├── io_service_pool.cpp │ │ │ └── io_service_thread_pool.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── iterator_support │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── iterator_support │ │ │ │ ├── boost_iterator_categories.hpp │ │ │ │ ├── counting_iterator.hpp │ │ │ │ ├── counting_shape.hpp │ │ │ │ ├── detail │ │ │ │ └── minimum_category.hpp │ │ │ │ ├── generator_iterator.hpp │ │ │ │ ├── iterator_adaptor.hpp │ │ │ │ ├── iterator_facade.hpp │ │ │ │ ├── iterator_range.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── traits │ │ │ │ ├── is_iterator.hpp │ │ │ │ ├── is_range.hpp │ │ │ │ ├── is_segmented_iterator.hpp │ │ │ │ └── is_sentinel_for.hpp │ │ │ │ ├── transform_iterator.hpp │ │ │ │ ├── unwrap_iterator.hpp │ │ │ │ └── zip_iterator.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ └── hpx │ │ │ │ └── iterator_support │ │ │ │ └── tests │ │ │ │ ├── iter_sent.hpp │ │ │ │ └── iterator_tests.hpp │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ └── stencil3_iterators.cpp │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── custom_iterator_category_6640.cpp │ │ │ └── zip_iterator_different_range_length.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── boost_iterator_categories.cpp │ │ │ ├── counting_iterator.cpp │ │ │ ├── is_iterator.cpp │ │ │ ├── is_range.cpp │ │ │ ├── is_sentinel_for.cpp │ │ │ ├── is_sized_sentinel_for.cpp │ │ │ ├── iterator_adaptor.cpp │ │ │ ├── iterator_facade.cpp │ │ │ ├── range.cpp │ │ │ ├── stencil3_iterator.cpp │ │ │ ├── transform_iterator.cpp │ │ │ ├── transform_iterator2.cpp │ │ │ └── zip_iterator.cpp │ ├── itt_notify │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── itt_notify │ │ │ │ ├── api.hpp │ │ │ │ ├── detail │ │ │ │ └── use_ittnotify_api.hpp │ │ │ │ ├── macros.hpp │ │ │ │ └── thread_name.hpp │ │ ├── src │ │ │ ├── itt_notify.cpp │ │ │ └── thread_name.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── lci_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── lci_base │ │ │ │ └── lci_environment.hpp │ │ ├── src │ │ │ └── lci_environment.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── lcos_local │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── lcos_local │ │ │ │ ├── and_gate.hpp │ │ │ │ ├── channel.hpp │ │ │ │ ├── composable_guard.hpp │ │ │ │ ├── conditional_cv.hpp │ │ │ │ ├── conditional_trigger.hpp │ │ │ │ ├── detail │ │ │ │ └── preprocess_future.hpp │ │ │ │ ├── receive_buffer.hpp │ │ │ │ └── trigger.hpp │ │ ├── src │ │ │ ├── composable_guard.cpp │ │ │ └── preprocess_future.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ └── safely_destroy_promise_1481.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── channel_local.cpp │ │ │ ├── local_dataflow.cpp │ │ │ ├── local_dataflow_executor.cpp │ │ │ ├── local_dataflow_executor_additional_arguments.cpp │ │ │ ├── local_dataflow_external_future.cpp │ │ │ ├── local_dataflow_small_vector.cpp │ │ │ ├── local_dataflow_std_array.cpp │ │ │ ├── run_guarded.cpp │ │ │ └── split_future.cpp │ ├── lock_registration │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── lock_registration │ │ │ │ └── detail │ │ │ │ └── register_locks.hpp │ │ ├── src │ │ │ └── register_locks.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── logging │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── logging │ │ │ │ ├── api.hpp │ │ │ │ ├── detail │ │ │ │ ├── logger.hpp │ │ │ │ └── macros.hpp │ │ │ │ ├── format │ │ │ │ ├── destinations.hpp │ │ │ │ ├── formatters.hpp │ │ │ │ └── named_write.hpp │ │ │ │ ├── level.hpp │ │ │ │ ├── logging.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── manipulator.hpp │ │ │ │ └── message.hpp │ │ ├── src │ │ │ ├── format │ │ │ │ ├── destination │ │ │ │ │ ├── defaults_destination.cpp │ │ │ │ │ └── file.cpp │ │ │ │ ├── formatter │ │ │ │ │ ├── defaults_formatter.cpp │ │ │ │ │ ├── high_precision_time.cpp │ │ │ │ │ └── thread_id.cpp │ │ │ │ └── named_write.cpp │ │ │ ├── level.cpp │ │ │ ├── logging.cpp │ │ │ └── manipulator.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── memory │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── memory │ │ │ │ ├── detail │ │ │ │ └── sp_convertible.hpp │ │ │ │ ├── intrusive_ptr.hpp │ │ │ │ └── serialization │ │ │ │ └── intrusive_ptr.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── intrusive_ptr.cpp │ │ │ ├── intrusive_ptr_move.cpp │ │ │ ├── intrusive_ptr_polymorphic.cpp │ │ │ ├── intrusive_ptr_polymorphic_nonintrusive.cpp │ │ │ ├── ip_convertible.cpp │ │ │ ├── ip_hash.cpp │ │ │ └── serialization_intrusive_ptr.cpp │ ├── modules.rst │ ├── mpi_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── mpi_base │ │ │ │ ├── mpi.hpp │ │ │ │ └── mpi_environment.hpp │ │ ├── src │ │ │ └── mpi_environment.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── pack_traversal │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── pack_traversal │ │ │ │ ├── detail │ │ │ │ ├── container_category.hpp │ │ │ │ ├── pack_traversal_async_impl.hpp │ │ │ │ ├── pack_traversal_impl.hpp │ │ │ │ └── unwrap_impl.hpp │ │ │ │ ├── pack_traversal.hpp │ │ │ │ ├── pack_traversal_async.hpp │ │ │ │ ├── traits │ │ │ │ └── pack_traversal_rebind_container.hpp │ │ │ │ └── unwrap.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── unwrapped_1528.cpp │ │ │ ├── unwrapping_noncopyable.cpp │ │ │ └── unwrapping_nullary_6045.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── pack_traversal.cpp │ │ │ ├── pack_traversal_async.cpp │ │ │ └── unwrap.cpp │ ├── plugin │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── include │ │ │ └── hpx │ │ │ │ └── plugin │ │ │ │ ├── abstract_factory.hpp │ │ │ │ ├── concrete_factory.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ ├── dll_dlopen.hpp │ │ │ │ └── dll_windows.hpp │ │ │ │ ├── dll.hpp │ │ │ │ ├── export_plugin.hpp │ │ │ │ ├── plugin_factory.hpp │ │ │ │ ├── plugin_wrapper.hpp │ │ │ │ ├── traits │ │ │ │ └── plugin_config_data.hpp │ │ │ │ └── virtual_constructor.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── prefix │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── include │ │ │ └── hpx │ │ │ │ └── prefix │ │ │ │ ├── find_prefix.hpp │ │ │ │ └── macros.hpp │ │ ├── src │ │ │ └── find_prefix.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── preprocessor │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── include │ │ │ └── hpx │ │ │ │ └── preprocessor │ │ │ │ ├── cat.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── expand.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── nargs.hpp │ │ │ │ ├── stringize.hpp │ │ │ │ └── strip_parens.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── program_options │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── config_file_types.cpp │ │ │ ├── custom_syntax.cpp │ │ │ ├── env_options.cpp │ │ │ ├── first.cpp │ │ │ ├── multiple_sources.cfg │ │ │ ├── multiple_sources.cpp │ │ │ ├── option_groups.cpp │ │ │ ├── options_description.cpp │ │ │ ├── options_hierarchy.cpp │ │ │ ├── real.cpp │ │ │ ├── regex.cpp │ │ │ ├── response_file.cpp │ │ │ └── response_file.rsp │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── program_options.hpp │ │ │ │ └── program_options │ │ │ │ ├── cmdline.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detail │ │ │ │ ├── cmdline.hpp │ │ │ │ ├── config_file.hpp │ │ │ │ ├── convert.hpp │ │ │ │ ├── parsers.hpp │ │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ │ └── value_semantic.hpp │ │ │ │ ├── environment_iterator.hpp │ │ │ │ ├── eof_iterator.hpp │ │ │ │ ├── errors.hpp │ │ │ │ ├── option.hpp │ │ │ │ ├── options_description.hpp │ │ │ │ ├── parsers.hpp │ │ │ │ ├── positional_options.hpp │ │ │ │ ├── value_semantic.hpp │ │ │ │ ├── variables_map.hpp │ │ │ │ └── version.hpp │ │ ├── src │ │ │ ├── cmdline.cpp │ │ │ ├── config_file.cpp │ │ │ ├── convert.cpp │ │ │ ├── errors.cpp │ │ │ ├── options_description.cpp │ │ │ ├── parsers.cpp │ │ │ ├── positional_options.cpp │ │ │ ├── split.cpp │ │ │ ├── utf8_codecvt_facet.cpp │ │ │ ├── value_semantic.cpp │ │ │ ├── variables_map.cpp │ │ │ └── winmain.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── command_line_arguments_706.cpp │ │ │ ├── command_line_required_arguments_2990.cpp │ │ │ └── commandline_options_1437.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── cmdline.cpp │ │ │ ├── optional.cpp │ │ │ ├── options_description.cpp │ │ │ ├── options_exception.cpp │ │ │ ├── parsers.cpp │ │ │ ├── positional_options.cpp │ │ │ ├── required.cpp │ │ │ ├── split.cpp │ │ │ ├── unicode.cpp │ │ │ ├── unrecognized.cpp │ │ │ ├── variable_map.cpp │ │ │ └── winmain.cpp │ ├── properties │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── properties │ │ │ │ └── property.hpp │ │ │ │ └── property.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── properties.cpp │ ├── resiliency │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── 1d_stencil_replay_exception.cpp │ │ │ ├── 1d_stencil_replay_validate.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── async_replay.cpp │ │ │ ├── async_replicate.cpp │ │ │ ├── async_replicate_vote.cpp │ │ │ ├── dataflow_replicate.cpp │ │ │ └── version.cpp │ │ ├── include │ │ │ └── hpx │ │ │ │ └── resiliency │ │ │ │ ├── async_replay.hpp │ │ │ │ ├── async_replay_executor.hpp │ │ │ │ ├── async_replicate.hpp │ │ │ │ ├── async_replicate_executor.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── replay_executor.hpp │ │ │ │ ├── replicate_executor.hpp │ │ │ │ ├── resiliency.hpp │ │ │ │ ├── resiliency_cpos.hpp │ │ │ │ ├── util.hpp │ │ │ │ └── version.hpp │ │ ├── src │ │ │ ├── resiliency.cpp │ │ │ └── util.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ ├── replay │ │ │ │ ├── 1d_stencil.cpp │ │ │ │ ├── 1d_stencil_checksum.cpp │ │ │ │ ├── 1d_stencil_replay.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── async_replay.cpp │ │ │ │ ├── async_replay_validate.cpp │ │ │ │ ├── dataflow_replay.cpp │ │ │ │ ├── dataflow_replay_validate.cpp │ │ │ │ ├── print_time_results.hpp │ │ │ │ ├── pure_async_for_replay.cpp │ │ │ │ └── pure_dataflow.cpp │ │ │ ├── replicate │ │ │ │ ├── 1d_stencil_replicate.cpp │ │ │ │ ├── 1d_stencil_replicate_checksum.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── async_replicate.cpp │ │ │ │ ├── async_replicate_validate.cpp │ │ │ │ ├── async_replicate_vote.cpp │ │ │ │ ├── async_replicate_vote_validate.cpp │ │ │ │ └── pure_async_for_replicate.cpp │ │ │ └── scripts │ │ │ │ ├── 1d_stencil │ │ │ │ ├── 1d_stencil.sh │ │ │ │ ├── 1d_stencil_16000.sh │ │ │ │ └── 1d_stencil_32000.sh │ │ │ │ ├── replay │ │ │ │ ├── async_replay.sh │ │ │ │ ├── async_replay_error_1.sh │ │ │ │ └── async_replay_error_2.sh │ │ │ │ └── replicate │ │ │ │ ├── async_replicate.sh │ │ │ │ ├── async_replicate_error_1.sh │ │ │ │ ├── async_replicate_error_2.sh │ │ │ │ └── async_replicate_error_3.sh │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── async_replay_executor.cpp │ │ │ ├── async_replay_plain.cpp │ │ │ ├── async_replicate_executor.cpp │ │ │ ├── async_replicate_plain.cpp │ │ │ ├── async_replicate_vote_executor.cpp │ │ │ ├── async_replicate_vote_plain.cpp │ │ │ ├── dataflow_replay_executor.cpp │ │ │ ├── dataflow_replay_plain.cpp │ │ │ ├── dataflow_replicate_executor.cpp │ │ │ ├── dataflow_replicate_plain.cpp │ │ │ ├── replay_executor.cpp │ │ │ └── replicate_executor.cpp │ ├── resource_partitioner │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── async_customization.cpp │ │ │ ├── guided_pool_test.cpp │ │ │ ├── oversubscribing_resource_partitioner.cpp │ │ │ ├── simple_resource_partitioner.cpp │ │ │ ├── simplest_resource_partitioner_1.cpp │ │ │ ├── simplest_resource_partitioner_2.cpp │ │ │ └── system_characteristics.hpp │ │ ├── include │ │ │ └── hpx │ │ │ │ └── resource_partitioner │ │ │ │ ├── detail │ │ │ │ ├── create_partitioner.hpp │ │ │ │ └── partitioner.hpp │ │ │ │ ├── partitioner.hpp │ │ │ │ └── partitioner_fwd.hpp │ │ ├── src │ │ │ ├── detail_partitioner.cpp │ │ │ └── partitioner.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── help_exit_4317_1.cpp │ │ │ └── help_exit_4317_2.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── background_scheduler.cpp │ │ │ ├── cross_pool_injection.cpp │ │ │ ├── named_pool_executor.cpp │ │ │ ├── resource_partitioner_info.cpp │ │ │ ├── scheduler_binding_check.cpp │ │ │ ├── scheduler_priority_check.cpp │ │ │ ├── shutdown_suspended_pus.cpp │ │ │ ├── suspend_disabled.cpp │ │ │ ├── suspend_pool.cpp │ │ │ ├── suspend_pool_external.cpp │ │ │ ├── suspend_runtime.cpp │ │ │ ├── suspend_thread.cpp │ │ │ ├── suspend_thread_external.cpp │ │ │ ├── suspend_thread_timed.cpp │ │ │ └── used_pus.cpp │ ├── runtime_configuration │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── runtime_configuration │ │ │ │ ├── agas_service_mode.hpp │ │ │ │ ├── component_commandline_base.hpp │ │ │ │ ├── component_factory_base.hpp │ │ │ │ ├── component_registry_base.hpp │ │ │ │ ├── init_ini_data.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── plugin_registry_base.hpp │ │ │ │ ├── runtime_configuration.hpp │ │ │ │ ├── runtime_configuration_fwd.hpp │ │ │ │ ├── runtime_mode.hpp │ │ │ │ └── static_factory_data.hpp │ │ ├── src │ │ │ ├── init_ini_data.cpp │ │ │ ├── runtime_configuration.cpp │ │ │ ├── runtime_mode.cpp │ │ │ └── static_factory_data.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── runtime_local │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── runtime_local │ │ │ │ ├── component_startup_shutdown_base.hpp │ │ │ │ ├── config_entry.hpp │ │ │ │ ├── custom_exception_info.hpp │ │ │ │ ├── debugging.hpp │ │ │ │ ├── detail │ │ │ │ ├── runtime_local_fwd.hpp │ │ │ │ └── serialize_exception.hpp │ │ │ │ ├── get_locality_id.hpp │ │ │ │ ├── get_locality_name.hpp │ │ │ │ ├── get_num_all_localities.hpp │ │ │ │ ├── get_os_thread_count.hpp │ │ │ │ ├── get_thread_name.hpp │ │ │ │ ├── get_worker_thread_num.hpp │ │ │ │ ├── interval_timer.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── os_thread_type.hpp │ │ │ │ ├── pool_timer.hpp │ │ │ │ ├── report_error.hpp │ │ │ │ ├── run_as_hpx_thread.hpp │ │ │ │ ├── run_as_os_thread.hpp │ │ │ │ ├── runtime_handlers.hpp │ │ │ │ ├── runtime_local.hpp │ │ │ │ ├── runtime_local_fwd.hpp │ │ │ │ ├── service_executors.hpp │ │ │ │ ├── shutdown_function.hpp │ │ │ │ ├── startup_function.hpp │ │ │ │ ├── state.hpp │ │ │ │ ├── thread_hooks.hpp │ │ │ │ ├── thread_mapper.hpp │ │ │ │ ├── thread_pool_helpers.hpp │ │ │ │ └── thread_stacktrace.hpp │ │ ├── src │ │ │ ├── custom_exception_info.cpp │ │ │ ├── debugging.cpp │ │ │ ├── get_locality_name.cpp │ │ │ ├── interval_timer.cpp │ │ │ ├── os_thread_type.cpp │ │ │ ├── pool_timer.cpp │ │ │ ├── runtime_handlers.cpp │ │ │ ├── runtime_local.cpp │ │ │ ├── serialize_exception.cpp │ │ │ ├── service_executors.cpp │ │ │ ├── state.cpp │ │ │ ├── thread_mapper.cpp │ │ │ ├── thread_pool_helpers.cpp │ │ │ └── thread_stacktrace.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── thread_mapper.cpp │ ├── schedulers │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── schedulers │ │ │ │ ├── background_scheduler.hpp │ │ │ │ ├── deadlock_detection.hpp │ │ │ │ ├── local_priority_queue_scheduler.hpp │ │ │ │ ├── local_queue_scheduler.hpp │ │ │ │ ├── local_workrequesting_scheduler.hpp │ │ │ │ ├── lockfree_queue_backends.hpp │ │ │ │ ├── maintain_queue_wait_times.hpp │ │ │ │ ├── queue_helpers.hpp │ │ │ │ ├── queue_holder_numa.hpp │ │ │ │ ├── queue_holder_thread.hpp │ │ │ │ ├── shared_priority_queue_scheduler.hpp │ │ │ │ ├── static_priority_queue_scheduler.hpp │ │ │ │ ├── static_queue_scheduler.hpp │ │ │ │ ├── thread_queue.hpp │ │ │ │ └── thread_queue_mc.hpp │ │ ├── src │ │ │ ├── deadlock_detection.cpp │ │ │ └── maintain_queue_wait_times.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── schedule_last.cpp │ ├── serialization │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── serialization.hpp │ │ │ │ └── serialization │ │ │ │ ├── access.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── base_object.hpp │ │ │ │ ├── basic_archive.hpp │ │ │ │ ├── binary_filter.hpp │ │ │ │ ├── bitset.hpp │ │ │ │ ├── boost_array.hpp │ │ │ │ ├── boost_intrusive_ptr.hpp │ │ │ │ ├── boost_multi_array.hpp │ │ │ │ ├── boost_shared_ptr.hpp │ │ │ │ ├── boost_variant.hpp │ │ │ │ ├── brace_initializable.hpp │ │ │ │ ├── brace_initializable_fwd.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── container.hpp │ │ │ │ ├── datapar.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── detail │ │ │ │ ├── allow_zero_copy_receive.hpp │ │ │ │ ├── constructor_selector.hpp │ │ │ │ ├── non_default_constructible.hpp │ │ │ │ ├── pointer.hpp │ │ │ │ ├── polymorphic_id_factory.hpp │ │ │ │ ├── polymorphic_intrusive_factory.hpp │ │ │ │ ├── polymorphic_nonintrusive_factory.hpp │ │ │ │ ├── preprocess_container.hpp │ │ │ │ ├── raw_ptr.hpp │ │ │ │ ├── serialize_collection.hpp │ │ │ │ └── vc.hpp │ │ │ │ ├── exception_ptr.hpp │ │ │ │ ├── input_archive.hpp │ │ │ │ ├── input_container.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── output_archive.hpp │ │ │ │ ├── output_container.hpp │ │ │ │ ├── serialization_chunk.hpp │ │ │ │ ├── serialization_fwd.hpp │ │ │ │ ├── serialize.hpp │ │ │ │ ├── serialize_buffer.hpp │ │ │ │ ├── serialize_buffer_fwd.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── shared_ptr.hpp │ │ │ │ ├── std_tuple.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── traits │ │ │ │ ├── brace_initializable_traits.hpp │ │ │ │ ├── is_bitwise_serializable.hpp │ │ │ │ ├── is_not_bitwise_serializable.hpp │ │ │ │ ├── is_serializable.hpp │ │ │ │ ├── needs_automatic_registration.hpp │ │ │ │ ├── polymorphic_traits.hpp │ │ │ │ └── serialization_access_data.hpp │ │ │ │ ├── unique_ptr.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ ├── valarray.hpp │ │ │ │ ├── variant.hpp │ │ │ │ └── vector.hpp │ │ ├── src │ │ │ ├── detail │ │ │ │ ├── allow_zero_copy_receive.cpp │ │ │ │ ├── pointer.cpp │ │ │ │ ├── polymorphic_id_factory.cpp │ │ │ │ ├── polymorphic_intrusive_factory.cpp │ │ │ │ └── polymorphic_nonintrusive_factory.cpp │ │ │ └── exception_ptr.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ └── serialization_performance.cpp │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── buffer_overrun_2839.cpp │ │ │ ├── non_default_constructible_5886.cpp │ │ │ ├── not_bitwise_shared_ptr_serialization.cpp │ │ │ ├── serialization_unsigned_buffer.cpp │ │ │ └── std_variant_4448.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── not_bitwise_serializable.cpp │ │ │ ├── polymorphic │ │ │ ├── CMakeLists.txt │ │ │ ├── polymorphic_nonintrusive.cpp │ │ │ ├── polymorphic_nonintrusive_abstract.cpp │ │ │ ├── polymorphic_pointer.cpp │ │ │ ├── polymorphic_reference.cpp │ │ │ ├── polymorphic_semiintrusive_template.cpp │ │ │ ├── polymorphic_template.cpp │ │ │ ├── smart_ptr_polymorphic.cpp │ │ │ └── smart_ptr_polymorphic_nonintrusive.cpp │ │ │ ├── serialization_array.cpp │ │ │ ├── serialization_boost_variant.cpp │ │ │ ├── serialization_brace_initializable.cpp │ │ │ ├── serialization_builtins.cpp │ │ │ ├── serialization_complex.cpp │ │ │ ├── serialization_custom_constructor.cpp │ │ │ ├── serialization_deque.cpp │ │ │ ├── serialization_list.cpp │ │ │ ├── serialization_map.cpp │ │ │ ├── serialization_raw_pointer.cpp │ │ │ ├── serialization_set.cpp │ │ │ ├── serialization_simple.cpp │ │ │ ├── serialization_smart_ptr.cpp │ │ │ ├── serialization_std_tuple.cpp │ │ │ ├── serialization_std_variant.cpp │ │ │ ├── serialization_unordered_map.cpp │ │ │ ├── serialization_valarray.cpp │ │ │ ├── serialization_vector.cpp │ │ │ ├── serialize_with_incompatible_signature.cpp │ │ │ ├── small_big_object.hpp │ │ │ └── succeed_compile_empty_class.cpp │ ├── static_reinit │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── static_reinit │ │ │ │ ├── reinitializable_static.hpp │ │ │ │ └── static_reinit.hpp │ │ ├── src │ │ │ └── static_reinit.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── string_util │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── string_util │ │ │ │ ├── case_conv.hpp │ │ │ │ ├── classification.hpp │ │ │ │ ├── split.hpp │ │ │ │ ├── token_functions.hpp │ │ │ │ ├── token_iterator.hpp │ │ │ │ ├── tokenizer.hpp │ │ │ │ └── trim.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── string_split.cpp │ │ │ ├── string_to_lower.cpp │ │ │ ├── string_trim.cpp │ │ │ ├── tokenizer.cpp │ │ │ ├── tokenizer_1.cpp │ │ │ ├── tokenizer_2.cpp │ │ │ ├── tokenizer_3.cpp │ │ │ ├── tokenizer_4.cpp │ │ │ └── tokenizer_5.cpp │ ├── synchronization │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── synchronization │ │ │ │ ├── async_rw_mutex.hpp │ │ │ │ ├── barrier.hpp │ │ │ │ ├── binary_semaphore.hpp │ │ │ │ ├── channel_mpmc.hpp │ │ │ │ ├── channel_mpsc.hpp │ │ │ │ ├── channel_spsc.hpp │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── counting_semaphore.hpp │ │ │ │ ├── detail │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── counting_semaphore.hpp │ │ │ │ └── sliding_semaphore.hpp │ │ │ │ ├── event.hpp │ │ │ │ ├── latch.hpp │ │ │ │ ├── lock_types.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── no_mutex.hpp │ │ │ │ ├── once.hpp │ │ │ │ ├── recursive_mutex.hpp │ │ │ │ ├── shared_mutex.hpp │ │ │ │ ├── sliding_semaphore.hpp │ │ │ │ ├── spinlock.hpp │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ └── stop_token.hpp │ │ ├── src │ │ │ ├── detail │ │ │ │ ├── condition_variable.cpp │ │ │ │ ├── counting_semaphore.cpp │ │ │ │ └── sliding_semaphore.cpp │ │ │ ├── local_barrier.cpp │ │ │ ├── mutex.cpp │ │ │ └── stop_token.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ ├── channel_mpmc_throughput.cpp │ │ │ ├── channel_mpsc_throughput.cpp │ │ │ └── channel_spsc_throughput.cpp │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── ignore_while_locked_1485.cpp │ │ │ └── shared_mutex_1702.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── async_rw_mutex.cpp │ │ │ ├── barrier_cpp20.cpp │ │ │ ├── binary_semaphore_cpp20.cpp │ │ │ ├── channel_mpmc_fib.cpp │ │ │ ├── channel_mpmc_shift.cpp │ │ │ ├── channel_mpsc_fib.cpp │ │ │ ├── channel_mpsc_shift.cpp │ │ │ ├── channel_spsc_fib.cpp │ │ │ ├── channel_spsc_shift.cpp │ │ │ ├── condition_variable.cpp │ │ │ ├── counting_semaphore.cpp │ │ │ ├── counting_semaphore_cpp20.cpp │ │ │ ├── fail_compile_mutex_move.cpp │ │ │ ├── fail_compile_spinlock_move.cpp │ │ │ ├── fail_compile_spinlock_no_backoff_move.cpp │ │ │ ├── in_place_stop_token.cpp │ │ │ ├── in_place_stop_token_cb2.cpp │ │ │ ├── latch_cpp20.cpp │ │ │ ├── local_barrier.cpp │ │ │ ├── local_barrier_count_up.cpp │ │ │ ├── local_barrier_reset.cpp │ │ │ ├── local_event.cpp │ │ │ ├── local_latch.cpp │ │ │ ├── local_mutex.cpp │ │ │ ├── shared_mutex │ │ │ ├── CMakeLists.txt │ │ │ ├── shared_mutex1.cpp │ │ │ ├── shared_mutex2.cpp │ │ │ ├── shared_mutex_locking_thread.hpp │ │ │ └── thread_group.hpp │ │ │ ├── sliding_semaphore.cpp │ │ │ ├── stop_token.cpp │ │ │ └── stop_token_cb2.cpp │ ├── tag_invoke │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── functional │ │ │ │ ├── detail │ │ │ │ │ ├── invoke.hpp │ │ │ │ │ ├── tag_fallback_invoke.hpp │ │ │ │ │ └── tag_priority_invoke.hpp │ │ │ │ ├── invoke.hpp │ │ │ │ ├── invoke_result.hpp │ │ │ │ ├── tag_invoke.hpp │ │ │ │ └── traits │ │ │ │ │ └── is_invocable.hpp │ │ │ │ └── tag_invoke │ │ │ │ └── macros.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── tag_invoke.cpp │ ├── testing │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── testing │ │ │ │ ├── api.hpp │ │ │ │ ├── macros.hpp │ │ │ │ └── performance.hpp │ │ ├── src │ │ │ ├── performance.cpp │ │ │ └── testing.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── test_macros.cpp │ ├── thread_pool_util │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── thread_pool_util │ │ │ │ └── thread_pool_suspension_helpers.hpp │ │ ├── src │ │ │ └── thread_pool_suspension_helpers.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── thread_pools │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── thread_pools │ │ │ │ ├── detail │ │ │ │ ├── background_thread.hpp │ │ │ │ ├── scheduling_callbacks.hpp │ │ │ │ ├── scheduling_counters.hpp │ │ │ │ ├── scheduling_log.hpp │ │ │ │ └── scoped_background_timer.hpp │ │ │ │ ├── scheduled_thread_pool.hpp │ │ │ │ ├── scheduled_thread_pool_impl.hpp │ │ │ │ └── scheduling_loop.hpp │ │ ├── src │ │ │ ├── detail │ │ │ │ ├── background_thread.cpp │ │ │ │ └── scheduling_log.cpp │ │ │ └── scheduled_thread_pool.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── thread_support │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── thread_support │ │ │ │ ├── atomic_count.hpp │ │ │ │ ├── set_thread_name.hpp │ │ │ │ ├── spinlock.hpp │ │ │ │ ├── thread_specific_ptr.hpp │ │ │ │ └── unlock_guard.hpp │ │ ├── src │ │ │ ├── set_thread_name.cpp │ │ │ └── spinlock.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── range.cpp │ ├── threading │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── threading │ │ │ │ ├── jthread.hpp │ │ │ │ └── thread.hpp │ │ ├── src │ │ │ └── thread.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── condition_variable2.cpp │ │ │ ├── condition_variable3.cpp │ │ │ ├── condition_variable4.cpp │ │ │ ├── condition_variable_race.cpp │ │ │ ├── error_callback.cpp │ │ │ ├── in_place_stop_token_cb1.cpp │ │ │ ├── in_place_stop_token_race.cpp │ │ │ ├── in_place_stop_token_race2.cpp │ │ │ ├── jthread1.cpp │ │ │ ├── jthread2.cpp │ │ │ ├── stack_check.cpp │ │ │ ├── stop_token_cb1.cpp │ │ │ ├── stop_token_race.cpp │ │ │ ├── stop_token_race2.cpp │ │ │ ├── thread.cpp │ │ │ ├── thread_id.cpp │ │ │ ├── thread_launching.cpp │ │ │ ├── thread_mf.cpp │ │ │ ├── thread_yield.cpp │ │ │ └── tss.cpp │ ├── threading_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── threading_base │ │ │ │ ├── annotated_function.hpp │ │ │ │ ├── callback_notifier.hpp │ │ │ │ ├── create_thread.hpp │ │ │ │ ├── create_work.hpp │ │ │ │ ├── detail │ │ │ │ ├── get_default_pool.hpp │ │ │ │ ├── get_default_timer_service.hpp │ │ │ │ ├── reset_backtrace.hpp │ │ │ │ ├── reset_lco_description.hpp │ │ │ │ └── switch_status.hpp │ │ │ │ ├── execution_agent.hpp │ │ │ │ ├── external_timer.hpp │ │ │ │ ├── network_background_callback.hpp │ │ │ │ ├── print.hpp │ │ │ │ ├── register_thread.hpp │ │ │ │ ├── scheduler_base.hpp │ │ │ │ ├── scheduler_mode.hpp │ │ │ │ ├── scheduler_state.hpp │ │ │ │ ├── scoped_annotation.hpp │ │ │ │ ├── set_thread_state.hpp │ │ │ │ ├── set_thread_state_timed.hpp │ │ │ │ ├── thread_data.hpp │ │ │ │ ├── thread_data_stackful.hpp │ │ │ │ ├── thread_data_stackless.hpp │ │ │ │ ├── thread_description.hpp │ │ │ │ ├── thread_helpers.hpp │ │ │ │ ├── thread_init_data.hpp │ │ │ │ ├── thread_num_tss.hpp │ │ │ │ ├── thread_pool_base.hpp │ │ │ │ ├── thread_queue_init_parameters.hpp │ │ │ │ ├── thread_specific_ptr.hpp │ │ │ │ └── threading_base_fwd.hpp │ │ ├── src │ │ │ ├── annotated_function.cpp │ │ │ ├── callback_notifier.cpp │ │ │ ├── create_thread.cpp │ │ │ ├── create_work.cpp │ │ │ ├── detail │ │ │ │ ├── reset_backtrace.cpp │ │ │ │ └── reset_lco_description.cpp │ │ │ ├── execution_agent.cpp │ │ │ ├── external_timer.cpp │ │ │ ├── get_default_pool.cpp │ │ │ ├── get_default_timer_service.cpp │ │ │ ├── print.cpp │ │ │ ├── register_thread.cpp │ │ │ ├── scheduler_base.cpp │ │ │ ├── set_thread_state.cpp │ │ │ ├── set_thread_state_timed.cpp │ │ │ ├── thread_data.cpp │ │ │ ├── thread_data_stackful.cpp │ │ │ ├── thread_data_stackless.cpp │ │ │ ├── thread_description.cpp │ │ │ ├── thread_helpers.cpp │ │ │ ├── thread_num_tss.cpp │ │ │ └── thread_pool_base.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── thread_local_data.cpp │ │ │ └── thread_stacksize_current.cpp │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── threadmanager │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── threadmanager │ │ │ │ ├── threadmanager.hpp │ │ │ │ └── threadmanager_fwd.hpp │ │ ├── src │ │ │ └── threadmanager.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── thrust │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── async_fill_n.cu │ │ │ ├── device_copy.cu │ │ │ ├── device_fill.cu │ │ │ ├── device_transform.cu │ │ │ ├── host_fill.cu │ │ │ └── reverse_reduce.cu │ │ ├── include │ │ │ └── hpx │ │ │ │ └── thrust │ │ │ │ ├── algorithms.hpp │ │ │ │ ├── detail │ │ │ │ └── algorithm_map.hpp │ │ │ │ ├── policy.hpp │ │ │ │ └── thrust_headers.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── thrust_policy_test.cu │ ├── timed_execution │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── timed_execution │ │ │ │ ├── timed_execution.hpp │ │ │ │ ├── timed_execution_fwd.hpp │ │ │ │ ├── timed_executors.hpp │ │ │ │ └── traits │ │ │ │ └── is_timed_executor.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── minimal_timed_async_executor.cpp │ │ │ ├── minimal_timed_sync_executor.cpp │ │ │ └── timed_parallel_executor.cpp │ ├── timing │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── timing │ │ │ │ ├── high_resolution_clock.hpp │ │ │ │ ├── high_resolution_timer.hpp │ │ │ │ ├── scoped_timer.hpp │ │ │ │ ├── steady_clock.hpp │ │ │ │ └── tick_counter.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── topology │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── topology │ │ │ │ ├── cpu_mask.hpp │ │ │ │ ├── scheduling_properties.hpp │ │ │ │ └── topology.hpp │ │ ├── src │ │ │ ├── cpu_mask.cpp │ │ │ └── topology.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── type_support │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── type_support │ │ │ │ ├── aligned_storage.hpp │ │ │ │ ├── assert_owns_lock.hpp │ │ │ │ ├── bit_cast.hpp │ │ │ │ ├── construct_at.hpp │ │ │ │ ├── coroutines_support.hpp │ │ │ │ ├── decay.hpp │ │ │ │ ├── default_sentinel.hpp │ │ │ │ ├── detail │ │ │ │ ├── with_result_of.hpp │ │ │ │ └── wrap_int.hpp │ │ │ │ ├── detected.hpp │ │ │ │ ├── empty_function.hpp │ │ │ │ ├── equality.hpp │ │ │ │ ├── extra_data.hpp │ │ │ │ ├── generator.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── is_contiguous_iterator.hpp │ │ │ │ ├── is_relocatable.hpp │ │ │ │ ├── is_trivially_relocatable.hpp │ │ │ │ ├── lazy_conditional.hpp │ │ │ │ ├── lazy_enable_if.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── meta.hpp │ │ │ │ ├── pack.hpp │ │ │ │ ├── relocate_at.hpp │ │ │ │ ├── static.hpp │ │ │ │ ├── uninitialized_relocation_primitives.hpp │ │ │ │ ├── unused.hpp │ │ │ │ ├── unwrap_ref.hpp │ │ │ │ └── void_guard.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── fail_relocate_at.cpp │ │ │ ├── fail_uninitialized_relocate.cpp │ │ │ ├── generator.cpp │ │ │ ├── is_contiguous_iterator.cpp │ │ │ ├── is_relocatable.cpp │ │ │ ├── is_trivially_relocatable.cpp │ │ │ ├── relocate.cpp │ │ │ ├── relocate_at.cpp │ │ │ └── uninitialized_relocate_n_primitive.cpp │ ├── util │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── util │ │ │ │ ├── calculate_fanout.hpp │ │ │ │ ├── detail │ │ │ │ └── reserve.hpp │ │ │ │ ├── get_and_reset_value.hpp │ │ │ │ ├── get_entry_as.hpp │ │ │ │ ├── insert_checked.hpp │ │ │ │ ├── ios_flags_saver.hpp │ │ │ │ ├── manage_config.hpp │ │ │ │ ├── max.hpp │ │ │ │ ├── min.hpp │ │ │ │ ├── regex_from_pattern.hpp │ │ │ │ └── sed_transform.hpp │ │ ├── src │ │ │ ├── manage_config.cpp │ │ │ ├── regex_from_pattern.cpp │ │ │ └── sed_transform.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ └── version │ │ ├── CMakeLists.txt │ │ ├── docs │ │ └── index.rst │ │ ├── include │ │ └── hpx │ │ │ ├── version.hpp │ │ │ └── version │ │ │ └── api.hpp │ │ ├── src │ │ └── version.cpp │ │ └── tests │ │ ├── CMakeLists.txt │ │ └── unit │ │ ├── CMakeLists.txt │ │ └── version_api.cpp ├── create_module_skeleton.py ├── full │ ├── CMakeLists.txt │ ├── actions │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── actions │ │ │ │ ├── action_support.hpp │ │ │ │ ├── actions_fwd.hpp │ │ │ │ ├── base_action.hpp │ │ │ │ ├── invoke_function.hpp │ │ │ │ ├── post_helper.hpp │ │ │ │ ├── post_helper_fwd.hpp │ │ │ │ ├── register_action.hpp │ │ │ │ ├── transfer_action.hpp │ │ │ │ └── transfer_base_action.hpp │ │ ├── src │ │ │ └── base_action.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ └── serialization_overhead.cpp │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── function_argument.cpp │ │ │ ├── non_default_constructible_argument_5998.cpp │ │ │ ├── tuple_serialization_803.cpp │ │ │ └── wait_all_hang_1946.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── serialize_buffer.cpp │ │ │ ├── set_thread_state.cpp │ │ │ ├── thread_affinity.cpp │ │ │ ├── thread_stacksize.cpp │ │ │ ├── thread_stacksize_overflow.cpp │ │ │ ├── thread_stacksize_overflow_v2.cpp │ │ │ └── zero_copy_serialization.cpp │ ├── actions_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── actions_base │ │ │ │ ├── action_priority.hpp │ │ │ │ ├── action_stacksize.hpp │ │ │ │ ├── actions_base_fwd.hpp │ │ │ │ ├── actions_base_support.hpp │ │ │ │ ├── basic_action.hpp │ │ │ │ ├── basic_action_fwd.hpp │ │ │ │ ├── component_action.hpp │ │ │ │ ├── detail │ │ │ │ ├── action_factory.hpp │ │ │ │ ├── invocation_count_registry.hpp │ │ │ │ └── per_action_data_counter_registry.hpp │ │ │ │ ├── lambda_to_action.hpp │ │ │ │ ├── plain_action.hpp │ │ │ │ ├── preassigned_action_id.hpp │ │ │ │ └── traits │ │ │ │ ├── action_continuation.hpp │ │ │ │ ├── action_decorate_continuation.hpp │ │ │ │ ├── action_does_termination_detection.hpp │ │ │ │ ├── action_is_target_valid.hpp │ │ │ │ ├── action_priority.hpp │ │ │ │ ├── action_remote_result.hpp │ │ │ │ ├── action_schedule_thread.hpp │ │ │ │ ├── action_select_direct_execution.hpp │ │ │ │ ├── action_stacksize.hpp │ │ │ │ ├── action_trigger_continuation_fwd.hpp │ │ │ │ ├── action_was_object_migrated.hpp │ │ │ │ ├── extract_action.hpp │ │ │ │ ├── is_client.hpp │ │ │ │ ├── is_continuation.hpp │ │ │ │ ├── is_distribution_policy.hpp │ │ │ │ └── is_valid_action.hpp │ │ ├── src │ │ │ └── detail │ │ │ │ ├── action_factory.cpp │ │ │ │ ├── invocation_count_registry.cpp │ │ │ │ └── per_action_data_counter_registry.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── agas │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── agas │ │ │ │ ├── addressing_service.hpp │ │ │ │ ├── agas_fwd.hpp │ │ │ │ └── state.hpp │ │ ├── src │ │ │ ├── addressing_service.cpp │ │ │ ├── detail │ │ │ │ └── interface.cpp │ │ │ ├── route.cpp │ │ │ └── state.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── duplicate_id_registration_1596.cpp │ │ │ ├── id_type_ref_counting_1032.cpp │ │ │ ├── pass_by_value_id_type_action.cpp │ │ │ ├── register_with_basename_1804.cpp │ │ │ └── send_gid_keep_component_1624.cpp │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── agas_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── agas_base │ │ │ │ ├── agas_fwd.hpp │ │ │ │ ├── component_namespace.hpp │ │ │ │ ├── detail │ │ │ │ ├── bootstrap_component_namespace.hpp │ │ │ │ ├── bootstrap_locality_namespace.hpp │ │ │ │ ├── hosted_component_namespace.hpp │ │ │ │ └── hosted_locality_namespace.hpp │ │ │ │ ├── gva.hpp │ │ │ │ ├── locality_namespace.hpp │ │ │ │ ├── primary_namespace.hpp │ │ │ │ ├── route.hpp │ │ │ │ ├── server │ │ │ │ ├── component_namespace.hpp │ │ │ │ ├── locality_namespace.hpp │ │ │ │ ├── primary_namespace.hpp │ │ │ │ └── symbol_namespace.hpp │ │ │ │ └── symbol_namespace.hpp │ │ ├── src │ │ │ ├── component_namespace.cpp │ │ │ ├── detail │ │ │ │ ├── bootstrap_component_namespace.cpp │ │ │ │ ├── bootstrap_locality_namespace.cpp │ │ │ │ ├── hosted_component_namespace.cpp │ │ │ │ └── hosted_locality_namespace.cpp │ │ │ ├── gva.cpp │ │ │ ├── locality_namespace.cpp │ │ │ ├── primary_namespace.cpp │ │ │ ├── server │ │ │ │ ├── component_namespace_server.cpp │ │ │ │ ├── locality_namespace_server.cpp │ │ │ │ ├── primary_namespace_server.cpp │ │ │ │ └── symbol_namespace_server.cpp │ │ │ └── symbol_namespace.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── async_colocated │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── async_colocated │ │ │ │ ├── async_colocated.hpp │ │ │ │ ├── async_colocated_callback.hpp │ │ │ │ ├── async_colocated_callback_fwd.hpp │ │ │ │ ├── async_colocated_fwd.hpp │ │ │ │ ├── functional │ │ │ │ └── colocated_helpers.hpp │ │ │ │ ├── get_colocation_id.hpp │ │ │ │ ├── post_colocated.hpp │ │ │ │ ├── post_colocated_callback.hpp │ │ │ │ ├── post_colocated_callback_fwd.hpp │ │ │ │ ├── post_colocated_fwd.hpp │ │ │ │ ├── register_post_colocated.hpp │ │ │ │ └── server │ │ │ │ └── destroy_component.hpp │ │ ├── src │ │ │ ├── get_colocation_id.cpp │ │ │ └── server │ │ │ │ └── destroy_component.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── async_cb_colocated.cpp │ │ │ ├── async_colocated.cpp │ │ │ ├── async_continue_cb_colocated.cpp │ │ │ ├── async_continue_colocated.cpp │ │ │ ├── new_colocated.cpp │ │ │ └── post_colocated.cpp │ ├── async_distributed │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── async.hpp │ │ │ │ ├── async_distributed │ │ │ │ ├── async.hpp │ │ │ │ ├── async_callback.hpp │ │ │ │ ├── async_callback_fwd.hpp │ │ │ │ ├── async_continue.hpp │ │ │ │ ├── async_continue_callback.hpp │ │ │ │ ├── async_continue_callback_fwd.hpp │ │ │ │ ├── async_continue_fwd.hpp │ │ │ │ ├── base_lco.hpp │ │ │ │ ├── base_lco_with_value.hpp │ │ │ │ ├── bind_action.hpp │ │ │ │ ├── continuation.hpp │ │ │ │ ├── continuation2_impl.hpp │ │ │ │ ├── continuation_fwd.hpp │ │ │ │ ├── continuation_impl.hpp │ │ │ │ ├── dataflow.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── async_implementations.hpp │ │ │ │ │ ├── async_implementations_fwd.hpp │ │ │ │ │ ├── async_unwrap_result_implementations.hpp │ │ │ │ │ ├── async_unwrap_result_implementations_fwd.hpp │ │ │ │ │ ├── post.hpp │ │ │ │ │ ├── post_callback.hpp │ │ │ │ │ ├── post_continue.hpp │ │ │ │ │ ├── post_continue_callback.hpp │ │ │ │ │ ├── post_continue_fwd.hpp │ │ │ │ │ ├── post_implementations.hpp │ │ │ │ │ ├── post_implementations_fwd.hpp │ │ │ │ │ ├── promise_base.hpp │ │ │ │ │ ├── promise_lco.hpp │ │ │ │ │ ├── sync_implementations.hpp │ │ │ │ │ ├── sync_implementations_fwd.hpp │ │ │ │ │ └── trigger.hpp │ │ │ │ ├── lcos_fwd.hpp │ │ │ │ ├── make_continuation.hpp │ │ │ │ ├── packaged_action.hpp │ │ │ │ ├── post.hpp │ │ │ │ ├── promise.hpp │ │ │ │ ├── put_parcel.hpp │ │ │ │ ├── put_parcel_fwd.hpp │ │ │ │ ├── set_lco_value_continuation.hpp │ │ │ │ ├── sync.hpp │ │ │ │ ├── traits │ │ │ │ │ └── action_trigger_continuation.hpp │ │ │ │ ├── transfer_continuation_action.hpp │ │ │ │ ├── trigger.hpp │ │ │ │ ├── trigger_lco.hpp │ │ │ │ └── trigger_lco_fwd.hpp │ │ │ │ └── modules │ │ │ │ └── async_distributed.hpp │ │ ├── src │ │ │ ├── base_lco.cpp │ │ │ ├── base_lco_with_value.cpp │ │ │ ├── base_lco_with_value_1.cpp │ │ │ ├── base_lco_with_value_2.cpp │ │ │ ├── base_lco_with_value_3.cpp │ │ │ ├── continuation.cpp │ │ │ ├── promise.cpp │ │ │ └── trigger_lco.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── async_action_1813.cpp │ │ │ ├── async_callback_non_deduced_context.cpp │ │ │ ├── async_callback_with_bound_callback.cpp │ │ │ ├── async_deferred_1523.cpp │ │ │ ├── async_unwrap_1037.cpp │ │ │ ├── component_action_move_semantics.cpp │ │ │ ├── components │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_move_semantics.cpp │ │ │ │ ├── action_move_semantics.hpp │ │ │ │ ├── movable_objects.cpp │ │ │ │ ├── movable_objects.hpp │ │ │ │ └── server │ │ │ │ │ └── action_move_semantics.hpp │ │ │ ├── dataflow_4436.cpp │ │ │ ├── dataflow_791.cpp │ │ │ ├── dataflow_action_2008.cpp │ │ │ ├── dataflow_const_functor_773.cpp │ │ │ ├── dataflow_future_ref_3639.cpp │ │ │ ├── dataflow_future_swap.cpp │ │ │ ├── dataflow_future_swap2.cpp │ │ │ ├── dataflow_launch_775.cpp │ │ │ ├── dataflow_recursion_1613.cpp │ │ │ ├── dataflow_using_774.cpp │ │ │ ├── future_hang_on_get_629.cpp │ │ │ ├── future_hang_on_then_629.cpp │ │ │ ├── future_hang_on_wait_with_callback_629.cpp │ │ │ ├── future_serialization_1898.cpp │ │ │ ├── future_timed_wait_1025.cpp │ │ │ ├── make_continuation_1615.cpp │ │ │ ├── missing_include_2958.cpp │ │ │ ├── plain_action_1330.cpp │ │ │ ├── plain_action_1550.cpp │ │ │ ├── plain_action_move_semantics.cpp │ │ │ ├── return_future_2847.cpp │ │ │ ├── return_non_default_constructible_2847.cpp │ │ │ └── shared_future_serialization_1402.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── actions │ │ │ ├── CMakeLists.txt │ │ │ ├── fail_compile_const_array_argument.cpp │ │ │ ├── fail_compile_const_pointer_argument.cpp │ │ │ ├── fail_compile_non_const_array_argument.cpp │ │ │ ├── fail_compile_non_const_pointer_argument.cpp │ │ │ ├── fail_compile_non_const_ref_argument.cpp │ │ │ ├── return_future.cpp │ │ │ ├── succeed_compile_const_ref_argument.cpp │ │ │ └── succeed_compile_rvalue_ref_argument.cpp │ │ │ ├── async_cb_remote.cpp │ │ │ ├── async_cb_remote_client.cpp │ │ │ ├── async_continue.cpp │ │ │ ├── async_continue_cb.cpp │ │ │ ├── async_remote.cpp │ │ │ ├── async_remote_client.cpp │ │ │ ├── async_unwrap_result.cpp │ │ │ ├── post_remote.cpp │ │ │ ├── post_remote_client.cpp │ │ │ ├── remote_dataflow.cpp │ │ │ ├── sync_remote.cpp │ │ │ └── util │ │ │ ├── CMakeLists.txt │ │ │ ├── bind_action.cpp │ │ │ └── config_entry.cpp │ ├── checkpoint │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── 1d_stencil_4_checkpoint.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── print_time_results.hpp │ │ ├── include │ │ │ └── hpx │ │ │ │ └── checkpoint │ │ │ │ └── checkpoint.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── checkpoint.cpp │ │ │ └── checkpoint_component.cpp │ ├── checkpoint_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── include │ │ │ └── hpx │ │ │ │ └── checkpoint_base │ │ │ │ └── checkpoint_data.hpp │ │ ├── src │ │ │ └── checkpoint_data.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── checkpoint_data.cpp │ ├── collectives │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── channel_communicator.cpp │ │ │ ├── channel_pingpong.cpp │ │ │ └── distributed_pi.cpp │ │ ├── include │ │ │ └── hpx │ │ │ │ └── collectives │ │ │ │ ├── all_gather.hpp │ │ │ │ ├── all_reduce.hpp │ │ │ │ ├── all_to_all.hpp │ │ │ │ ├── argument_types.hpp │ │ │ │ ├── barrier.hpp │ │ │ │ ├── broadcast.hpp │ │ │ │ ├── broadcast_direct.hpp │ │ │ │ ├── channel_communicator.hpp │ │ │ │ ├── communication_set.hpp │ │ │ │ ├── create_communicator.hpp │ │ │ │ ├── detail │ │ │ │ ├── barrier_node.hpp │ │ │ │ ├── channel_communicator.hpp │ │ │ │ ├── communication_set_node.hpp │ │ │ │ ├── communicator.hpp │ │ │ │ └── latch.hpp │ │ │ │ ├── exclusive_scan.hpp │ │ │ │ ├── fold.hpp │ │ │ │ ├── gather.hpp │ │ │ │ ├── inclusive_scan.hpp │ │ │ │ ├── latch.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── reduce_direct.hpp │ │ │ │ ├── scatter.hpp │ │ │ │ └── spmd_block.hpp │ │ ├── src │ │ │ ├── all_gather.cpp │ │ │ ├── all_reduce.cpp │ │ │ ├── all_to_all.cpp │ │ │ ├── barrier.cpp │ │ │ ├── broadcast.cpp │ │ │ ├── channel_communicator.cpp │ │ │ ├── create_communication_set.cpp │ │ │ ├── create_communicator.cpp │ │ │ ├── detail │ │ │ │ ├── barrier_node.cpp │ │ │ │ ├── channel_communicator_server.cpp │ │ │ │ └── communication_set_node.cpp │ │ │ ├── exclusive_scan.cpp │ │ │ ├── gather.cpp │ │ │ ├── inclusive_scan.cpp │ │ │ ├── latch.cpp │ │ │ ├── reduce.cpp │ │ │ └── scatter.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ ├── lcos │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── barrier_performance.cpp │ │ │ └── osu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── broadcast.hpp │ │ │ │ ├── osu_base.cpp │ │ │ │ ├── osu_bcast.cpp │ │ │ │ ├── osu_bibw.cpp │ │ │ │ ├── osu_bw.cpp │ │ │ │ ├── osu_coll.hpp │ │ │ │ ├── osu_latency.cpp │ │ │ │ ├── osu_multi_lat.cpp │ │ │ │ └── osu_scatter.cpp │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── all_reduce_vector_bool.cpp │ │ │ ├── barrier_3792.cpp │ │ │ ├── barrier_hang.cpp │ │ │ ├── broadcast_unwrap_future_2885.cpp │ │ │ ├── broadcast_wait_for_2822.cpp │ │ │ ├── collectives_bool_5940.cpp │ │ │ ├── exclusive_scan_6636.cpp │ │ │ ├── multiple_gather_ops_2001.cpp │ │ │ ├── reduce_vector_bool.cpp │ │ │ └── trivially_copyable_all_gather.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── all_gather.cpp │ │ │ ├── all_gather_sync.cpp │ │ │ ├── all_reduce.cpp │ │ │ ├── all_reduce_sync.cpp │ │ │ ├── all_to_all.cpp │ │ │ ├── all_to_all_sync.cpp │ │ │ ├── barrier.cpp │ │ │ ├── broadcast.cpp │ │ │ ├── broadcast_component.cpp │ │ │ ├── broadcast_direct.cpp │ │ │ ├── broadcast_post.cpp │ │ │ ├── broadcast_sync.cpp │ │ │ ├── channel_communicator.cpp │ │ │ ├── communication_set.cpp │ │ │ ├── concurrent_collectives.cpp │ │ │ ├── exclusive_scan_.cpp │ │ │ ├── exclusive_scan_sync.cpp │ │ │ ├── fold.cpp │ │ │ ├── gather.cpp │ │ │ ├── gather_sync.cpp │ │ │ ├── global_spmd_block.cpp │ │ │ ├── inclusive_scan_.cpp │ │ │ ├── inclusive_scan_sync.cpp │ │ │ ├── reduce.cpp │ │ │ ├── reduce_direct.cpp │ │ │ ├── reduce_sync.cpp │ │ │ ├── remote_latch.cpp │ │ │ ├── scatter.cpp │ │ │ └── scatter_sync.cpp │ ├── command_line_handling │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── include │ │ │ └── hpx │ │ │ │ └── command_line_handling │ │ │ │ ├── command_line_handling.hpp │ │ │ │ ├── late_command_line_handling.hpp │ │ │ │ └── parse_command_line.hpp │ │ ├── src │ │ │ ├── command_line_handling.cpp │ │ │ ├── late_command_line_handling.cpp │ │ │ └── parse_command_line.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── configuration_1572.cpp │ │ │ ├── ignore_aliases.cpp │ │ │ ├── late_commandline_options_5257.cpp │ │ │ ├── options_as_config_3339.cpp │ │ │ └── use_all_cores_2262.cpp │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── components │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── components │ │ │ │ ├── basename_registration.hpp │ │ │ │ ├── basename_registration_fwd.hpp │ │ │ │ ├── client.hpp │ │ │ │ ├── client_base.hpp │ │ │ │ ├── components_fwd.hpp │ │ │ │ ├── executor_component.hpp │ │ │ │ ├── get_ptr.hpp │ │ │ │ └── make_client.hpp │ │ ├── src │ │ │ ├── basename_registration.cpp │ │ │ └── client_base.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ └── multiple_inheritance_5964.cpp │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── components_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── components_base │ │ │ │ ├── agas_interface.hpp │ │ │ │ ├── component_commandline.hpp │ │ │ │ ├── component_startup_shutdown.hpp │ │ │ │ ├── component_type.hpp │ │ │ │ ├── components_base_fwd.hpp │ │ │ │ ├── detail │ │ │ │ └── agas_interface_functions.hpp │ │ │ │ ├── generate_unique_ids.hpp │ │ │ │ ├── get_lva.hpp │ │ │ │ ├── pinned_ptr.hpp │ │ │ │ ├── server │ │ │ │ ├── abstract_component_base.hpp │ │ │ │ ├── abstract_migration_support.hpp │ │ │ │ ├── component.hpp │ │ │ │ ├── component_base.hpp │ │ │ │ ├── component_heap.hpp │ │ │ │ ├── create_component.hpp │ │ │ │ ├── create_component_fwd.hpp │ │ │ │ ├── fixed_component_base.hpp │ │ │ │ ├── locking_hook.hpp │ │ │ │ ├── managed_component_base.hpp │ │ │ │ ├── migration_support.hpp │ │ │ │ ├── one_size_heap_list.hpp │ │ │ │ ├── wrapper_heap.hpp │ │ │ │ ├── wrapper_heap_base.hpp │ │ │ │ └── wrapper_heap_list.hpp │ │ │ │ ├── stub_base.hpp │ │ │ │ └── traits │ │ │ │ ├── action_decorate_function.hpp │ │ │ │ ├── component_config_data.hpp │ │ │ │ ├── component_heap_type.hpp │ │ │ │ ├── component_pin_support.hpp │ │ │ │ ├── component_supports_migration.hpp │ │ │ │ ├── component_type_database.hpp │ │ │ │ ├── component_type_is_compatible.hpp │ │ │ │ ├── is_component.hpp │ │ │ │ └── managed_component_policies.hpp │ │ ├── src │ │ │ ├── address_ostream.cpp │ │ │ ├── agas_interface.cpp │ │ │ ├── component_type.cpp │ │ │ ├── detail │ │ │ │ └── agas_interface_functions.cpp │ │ │ ├── generate_unique_ids.cpp │ │ │ └── server │ │ │ │ ├── component_base.cpp │ │ │ │ ├── one_size_heap_list.cpp │ │ │ │ └── wrapper_heap.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── compute │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── compute │ │ │ │ ├── detail │ │ │ │ └── target_distribution_policy.hpp │ │ │ │ ├── host.hpp │ │ │ │ ├── host │ │ │ │ ├── distributed_target.hpp │ │ │ │ ├── get_targets.hpp │ │ │ │ └── target_distribution_policy.hpp │ │ │ │ └── traits.hpp │ │ ├── src │ │ │ ├── distributed_target.cpp │ │ │ └── get_host_targets.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── distribution_policies │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── distribution_policies │ │ │ │ ├── binpacking_distribution_policy.hpp │ │ │ │ ├── colocating_distribution_policy.hpp │ │ │ │ ├── container_distribution_policy.hpp │ │ │ │ ├── default_distribution_policy.hpp │ │ │ │ ├── explicit_container_distribution_policy.hpp │ │ │ │ ├── target_distribution_policy.hpp │ │ │ │ └── unwrapping_result_policy.hpp │ │ ├── src │ │ │ └── binpacking_distribution_policy.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── new_binpacking.cpp │ ├── executors_distributed │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── executors_distributed │ │ │ │ └── distribution_policy_executor.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── distribution_policy_executor.cpp │ ├── include │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── barrier.hpp │ │ │ │ ├── channel.hpp │ │ │ │ ├── collectives.hpp │ │ │ │ ├── compute.hpp │ │ │ │ ├── future.hpp │ │ │ │ ├── hpx.hpp │ │ │ │ ├── include │ │ │ │ ├── actions.hpp │ │ │ │ ├── agas.hpp │ │ │ │ ├── applier.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── async.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── client.hpp │ │ │ │ ├── components.hpp │ │ │ │ ├── compute.hpp │ │ │ │ ├── dataflow.hpp │ │ │ │ ├── datapar.hpp │ │ │ │ ├── future.hpp │ │ │ │ ├── lcos.hpp │ │ │ │ ├── lcos_local.hpp │ │ │ │ ├── naming.hpp │ │ │ │ ├── parallel_adjacent_difference.hpp │ │ │ │ ├── parallel_adjacent_find.hpp │ │ │ │ ├── parallel_algorithm.hpp │ │ │ │ ├── parallel_all_any_none_of.hpp │ │ │ │ ├── parallel_container_algorithm.hpp │ │ │ │ ├── parallel_copy.hpp │ │ │ │ ├── parallel_count.hpp │ │ │ │ ├── parallel_destroy.hpp │ │ │ │ ├── parallel_equal.hpp │ │ │ │ ├── parallel_exception_list.hpp │ │ │ │ ├── parallel_execution.hpp │ │ │ │ ├── parallel_execution_policy.hpp │ │ │ │ ├── parallel_executor_information.hpp │ │ │ │ ├── parallel_executor_parameters.hpp │ │ │ │ ├── parallel_executors.hpp │ │ │ │ ├── parallel_fill.hpp │ │ │ │ ├── parallel_find.hpp │ │ │ │ ├── parallel_for_each.hpp │ │ │ │ ├── parallel_for_loop.hpp │ │ │ │ ├── parallel_generate.hpp │ │ │ │ ├── parallel_is_heap.hpp │ │ │ │ ├── parallel_is_partitioned.hpp │ │ │ │ ├── parallel_is_sorted.hpp │ │ │ │ ├── parallel_lexicographical_compare.hpp │ │ │ │ ├── parallel_make_heap.hpp │ │ │ │ ├── parallel_memory.hpp │ │ │ │ ├── parallel_merge.hpp │ │ │ │ ├── parallel_minmax.hpp │ │ │ │ ├── parallel_mismatch.hpp │ │ │ │ ├── parallel_move.hpp │ │ │ │ ├── parallel_numeric.hpp │ │ │ │ ├── parallel_partition.hpp │ │ │ │ ├── parallel_reduce.hpp │ │ │ │ ├── parallel_remove.hpp │ │ │ │ ├── parallel_remove_copy.hpp │ │ │ │ ├── parallel_replace.hpp │ │ │ │ ├── parallel_reverse.hpp │ │ │ │ ├── parallel_rotate.hpp │ │ │ │ ├── parallel_scan.hpp │ │ │ │ ├── parallel_search.hpp │ │ │ │ ├── parallel_set_operations.hpp │ │ │ │ ├── parallel_sort.hpp │ │ │ │ ├── parallel_swap_ranges.hpp │ │ │ │ ├── parallel_task_block.hpp │ │ │ │ ├── parallel_transform.hpp │ │ │ │ ├── parallel_transform_reduce.hpp │ │ │ │ ├── parallel_transform_scan.hpp │ │ │ │ ├── parallel_uninitialized_copy.hpp │ │ │ │ ├── parallel_uninitialized_default_construct.hpp │ │ │ │ ├── parallel_uninitialized_fill.hpp │ │ │ │ ├── parallel_uninitialized_move.hpp │ │ │ │ ├── parallel_uninitialized_value_construct.hpp │ │ │ │ ├── parallel_unique.hpp │ │ │ │ ├── parcelset.hpp │ │ │ │ ├── performance_counters.hpp │ │ │ │ ├── plain_actions.hpp │ │ │ │ ├── post.hpp │ │ │ │ ├── resource_partitioner.hpp │ │ │ │ ├── run_as.hpp │ │ │ │ ├── runtime.hpp │ │ │ │ ├── serialization.hpp │ │ │ │ ├── sync.hpp │ │ │ │ ├── threadmanager.hpp │ │ │ │ ├── threads.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── unseq.hpp │ │ │ │ └── util.hpp │ │ │ │ ├── latch.hpp │ │ │ │ └── runtime.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── api_future.cpp │ ├── init_runtime │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── hpx_finalize.hpp │ │ │ │ ├── hpx_init.hpp │ │ │ │ ├── hpx_init_impl.hpp │ │ │ │ ├── hpx_init_params.hpp │ │ │ │ ├── hpx_main_winsocket.hpp │ │ │ │ ├── hpx_start.hpp │ │ │ │ ├── hpx_start_impl.hpp │ │ │ │ ├── hpx_suspend.hpp │ │ │ │ ├── hpx_user_main_config.hpp │ │ │ │ ├── init.hpp │ │ │ │ └── init_runtime │ │ │ │ ├── detail │ │ │ │ ├── init_logging.hpp │ │ │ │ └── run_or_start.hpp │ │ │ │ └── pre_main.hpp │ │ ├── src │ │ │ ├── hpx_init.cpp │ │ │ ├── hpx_main_winsocket.cpp │ │ │ ├── init_logging.cpp │ │ │ └── pre_main.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── handled_exception.cpp │ │ │ ├── parcel_pool.cpp │ │ │ ├── runtime_type.cpp │ │ │ ├── shutdown_suspended_thread.cpp │ │ │ ├── start_stop_callbacks.cpp │ │ │ └── unhandled_exception.cpp │ ├── lcos_distributed │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── lcos_distributed │ │ │ │ ├── channel.hpp │ │ │ │ └── server │ │ │ │ └── channel.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── channel_2916.cpp │ │ │ ├── channel_not_empty_2890.cpp │ │ │ └── channel_register_as_2722.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── channel.cpp │ │ │ ├── client_then.cpp │ │ │ ├── future_wait.cpp │ │ │ ├── packaged_action.cpp │ │ │ ├── promise.cpp │ │ │ ├── promise_allocator.cpp │ │ │ ├── promise_emplace.cpp │ │ │ ├── test_allocator.hpp │ │ │ └── use_allocator.cpp │ ├── modules.rst │ ├── naming │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── naming │ │ │ │ ├── credit_handling.hpp │ │ │ │ ├── detail │ │ │ │ └── preprocess_gid_types.hpp │ │ │ │ ├── naming.hpp │ │ │ │ └── split_gid.hpp │ │ ├── src │ │ │ ├── credit_handling.cpp │ │ │ └── detail │ │ │ │ └── preprocess_gid_types.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── naming_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── naming_base │ │ │ │ ├── address.hpp │ │ │ │ ├── gid_type.hpp │ │ │ │ ├── id_type.hpp │ │ │ │ ├── naming_base.hpp │ │ │ │ └── unmanaged.hpp │ │ ├── src │ │ │ ├── address.cpp │ │ │ ├── gid_type.cpp │ │ │ ├── id_type.cpp │ │ │ └── unmanaged.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ └── format_id_type.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── gid_type.cpp │ ├── parcelport_gasnet │ │ ├── CMakeLists.txt │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── parcelport_gasnet │ │ │ │ ├── header.hpp │ │ │ │ ├── locality.hpp │ │ │ │ ├── receiver.hpp │ │ │ │ ├── receiver_connection.hpp │ │ │ │ ├── sender.hpp │ │ │ │ ├── sender_connection.hpp │ │ │ │ └── tag_provider.hpp │ │ ├── src │ │ │ ├── locality.cpp │ │ │ └── parcelport_gasnet.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── parcelport_lci │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── parcelport_lci │ │ │ │ ├── completion_manager │ │ │ │ ├── completion_manager_queue.hpp │ │ │ │ ├── completion_manager_sync.hpp │ │ │ │ ├── completion_manager_sync_single.hpp │ │ │ │ └── completion_manager_sync_single_nolock.hpp │ │ │ │ ├── completion_manager_base.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── header.hpp │ │ │ │ ├── helper.hpp │ │ │ │ ├── locality.hpp │ │ │ │ ├── parcelport_lci.hpp │ │ │ │ ├── receiver_base.hpp │ │ │ │ ├── sender_base.hpp │ │ │ │ ├── sender_connection_base.hpp │ │ │ │ └── sendrecv │ │ │ │ ├── receiver_connection_sendrecv.hpp │ │ │ │ ├── receiver_sendrecv.hpp │ │ │ │ ├── sender_connection_sendrecv.hpp │ │ │ │ └── sender_sendrecv.hpp │ │ ├── src │ │ │ ├── completion_manager │ │ │ │ ├── completion_manager_queue.cpp │ │ │ │ ├── completion_manager_sync.cpp │ │ │ │ ├── completion_manager_sync_single.cpp │ │ │ │ └── completion_manager_sync_single_nolock.cpp │ │ │ ├── config.cpp │ │ │ ├── locality.cpp │ │ │ ├── parcelport_lci.cpp │ │ │ ├── sender_base.cpp │ │ │ ├── sender_connection_base.cpp │ │ │ └── sendrecv │ │ │ │ ├── receiver_connection_sendrecv.cpp │ │ │ │ ├── receiver_sendrecv.cpp │ │ │ │ ├── sender_connection_sendrecv.cpp │ │ │ │ └── sender_sendrecv.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── parcelport_mpi │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── parcelport_mpi │ │ │ │ ├── header.hpp │ │ │ │ ├── locality.hpp │ │ │ │ ├── receiver.hpp │ │ │ │ ├── receiver_connection.hpp │ │ │ │ ├── sender.hpp │ │ │ │ ├── sender_connection.hpp │ │ │ │ └── tag_provider.hpp │ │ ├── src │ │ │ ├── locality.cpp │ │ │ └── parcelport_mpi.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── parcelport_tcp │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── parcelport_tcp │ │ │ │ ├── connection_handler.hpp │ │ │ │ ├── locality.hpp │ │ │ │ ├── receiver.hpp │ │ │ │ └── sender.hpp │ │ ├── src │ │ │ ├── connection_handler_tcp.cpp │ │ │ ├── locality.cpp │ │ │ └── parcelport_tcp.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── parcelports │ │ ├── CMakeLists.txt │ │ ├── cmake │ │ │ └── templates │ │ │ │ └── static_parcelports.hpp.in │ │ ├── include │ │ │ └── hpx │ │ │ │ └── parcelports │ │ │ │ └── init_all_parcelports.hpp │ │ └── src │ │ │ └── static_parcelports.cpp │ ├── parcelset │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── parcelset │ │ │ │ ├── coalescing_message_handler_registration.hpp │ │ │ │ ├── connection_cache.hpp │ │ │ │ ├── decode_parcels.hpp │ │ │ │ ├── detail │ │ │ │ ├── call_for_each.hpp │ │ │ │ ├── message_handler_interface_functions.hpp │ │ │ │ └── parcel_await.hpp │ │ │ │ ├── encode_parcels.hpp │ │ │ │ ├── init_parcelports.hpp │ │ │ │ ├── message_handler_fwd.hpp │ │ │ │ ├── parcel.hpp │ │ │ │ ├── parcel_buffer.hpp │ │ │ │ ├── parcelhandler.hpp │ │ │ │ ├── parcelport_connection.hpp │ │ │ │ ├── parcelport_impl.hpp │ │ │ │ └── parcelset_fwd.hpp │ │ ├── src │ │ │ ├── detail │ │ │ │ ├── message_handler_interface_functions.cpp │ │ │ │ └── parcel_await.cpp │ │ │ ├── message_handler.cpp │ │ │ ├── parcel.cpp │ │ │ └── parcelhandler.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── nested_vectors_6623.cpp │ │ │ ├── very_big_parcel.cpp │ │ │ └── very_big_tchunk.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── put_parcels.cpp │ │ │ ├── set_parcel_write_handler.cpp │ │ │ └── zero_copy_parcel.cpp │ ├── parcelset_base │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── parcelset_base │ │ │ │ ├── detail │ │ │ │ ├── data_point.hpp │ │ │ │ ├── gatherer.hpp │ │ │ │ ├── locality_interface_functions.hpp │ │ │ │ ├── parcel_route_handler.hpp │ │ │ │ └── per_action_data_counter.hpp │ │ │ │ ├── locality.hpp │ │ │ │ ├── locality_interface.hpp │ │ │ │ ├── parcel_interface.hpp │ │ │ │ ├── parcelport.hpp │ │ │ │ ├── parcelset_base_fwd.hpp │ │ │ │ ├── policies │ │ │ │ └── message_handler.hpp │ │ │ │ ├── set_parcel_write_handler.hpp │ │ │ │ └── traits │ │ │ │ ├── action_get_embedded_parcel.hpp │ │ │ │ ├── action_message_handler.hpp │ │ │ │ └── action_serialization_filter.hpp │ │ ├── src │ │ │ ├── detail │ │ │ │ ├── locality_interface_functions.cpp │ │ │ │ └── per_action_data_counter.cpp │ │ │ ├── locality.cpp │ │ │ ├── locality_interface.cpp │ │ │ ├── parcel_interface.cpp │ │ │ ├── parcelport.cpp │ │ │ ├── parcelset_base.cpp │ │ │ └── set_parcel_write_handler.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── performance_counters │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── performance_counters │ │ │ │ ├── action_invocation_counter_discoverer.hpp │ │ │ │ ├── agas_counter_types.hpp │ │ │ │ ├── agas_namespace_action_code.hpp │ │ │ │ ├── apex_sample_value.hpp │ │ │ │ ├── base_performance_counter.hpp │ │ │ │ ├── component_namespace_counters.hpp │ │ │ │ ├── counter_creators.hpp │ │ │ │ ├── counter_interface.hpp │ │ │ │ ├── counter_parser.hpp │ │ │ │ ├── counters.hpp │ │ │ │ ├── counters_fwd.hpp │ │ │ │ ├── detail │ │ │ │ └── counter_interface_functions.hpp │ │ │ │ ├── locality_namespace_counters.hpp │ │ │ │ ├── manage_counter.hpp │ │ │ │ ├── manage_counter_type.hpp │ │ │ │ ├── parcelhandler_counter_types.hpp │ │ │ │ ├── per_action_data_counter_discoverer.hpp │ │ │ │ ├── performance_counter.hpp │ │ │ │ ├── performance_counter_base.hpp │ │ │ │ ├── performance_counter_set.hpp │ │ │ │ ├── primary_namespace_counters.hpp │ │ │ │ ├── query_counters.hpp │ │ │ │ ├── registry.hpp │ │ │ │ ├── server │ │ │ │ ├── arithmetics_counter.hpp │ │ │ │ ├── arithmetics_counter_extended.hpp │ │ │ │ ├── base_performance_counter.hpp │ │ │ │ ├── component_namespace_counters.hpp │ │ │ │ ├── elapsed_time_counter.hpp │ │ │ │ ├── locality_namespace_counters.hpp │ │ │ │ ├── primary_namespace_counters.hpp │ │ │ │ ├── raw_counter.hpp │ │ │ │ ├── raw_values_counter.hpp │ │ │ │ ├── statistics_counter.hpp │ │ │ │ └── symbol_namespace_counters.hpp │ │ │ │ ├── symbol_namespace_counters.hpp │ │ │ │ └── threadmanager_counter_types.hpp │ │ ├── src │ │ │ ├── action_invocation_counter_discoverer.cpp │ │ │ ├── agas_counter_types.cpp │ │ │ ├── agas_namespace_action_code.cpp │ │ │ ├── component_namespace_counters.cpp │ │ │ ├── counter_creators.cpp │ │ │ ├── counter_interface.cpp │ │ │ ├── counter_parser.cpp │ │ │ ├── counters.cpp │ │ │ ├── detail │ │ │ │ └── counter_interface_functions.cpp │ │ │ ├── locality_namespace_counters.cpp │ │ │ ├── manage_counter.cpp │ │ │ ├── manage_counter_type.cpp │ │ │ ├── parcelhandler_counter_types.cpp │ │ │ ├── per_action_data_counter_discoverer.cpp │ │ │ ├── performance_counter.cpp │ │ │ ├── performance_counter_set.cpp │ │ │ ├── primary_namespace_counters.cpp │ │ │ ├── query_counters.cpp │ │ │ ├── registry.cpp │ │ │ ├── server │ │ │ │ ├── action_invocation_counter.cpp │ │ │ │ ├── arithmetics_counter.cpp │ │ │ │ ├── arithmetics_counter_extended.cpp │ │ │ │ ├── base_performance_counter.cpp │ │ │ │ ├── component_instance_counter.cpp │ │ │ │ ├── elapsed_time_counter.cpp │ │ │ │ ├── per_action_data_counters.cpp │ │ │ │ ├── raw_counter.cpp │ │ │ │ ├── raw_values_counter.cpp │ │ │ │ └── statistics_counter.cpp │ │ │ ├── symbol_namespace_counters.cpp │ │ │ └── threadmanager_counter_types.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── discover_counters_1787.cpp │ │ │ ├── dynamic_counters_loaded_1508.cpp │ │ │ ├── statistics_2666.cpp │ │ │ └── uptime_1737.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── all_counters.cpp │ │ │ ├── counter_raw_values.cpp │ │ │ ├── path_elements.cpp │ │ │ └── reinit_counters.cpp │ ├── plugin_factories │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── plugin_factories │ │ │ │ ├── binary_filter_factory.hpp │ │ │ │ ├── binary_filter_factory_base.hpp │ │ │ │ ├── message_handler_factory.hpp │ │ │ │ ├── message_handler_factory_base.hpp │ │ │ │ ├── parcelport_factory.hpp │ │ │ │ ├── parcelport_factory_base.hpp │ │ │ │ ├── plugin_factory_base.hpp │ │ │ │ ├── plugin_registry.hpp │ │ │ │ └── unique_plugin_name.hpp │ │ ├── src │ │ │ └── parcelport_factory_base.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ └── CMakeLists.txt │ ├── resiliency_distributed │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── async_replay_distributed.cpp │ │ │ └── async_replicate_distributed.cpp │ │ ├── include │ │ │ └── hpx │ │ │ │ └── resiliency_distributed │ │ │ │ ├── async_replay_distributed.hpp │ │ │ │ ├── async_replicate_distributed.hpp │ │ │ │ └── resiliency_distributed.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ ├── replay │ │ │ │ ├── 1d_stencil_distributed.cpp │ │ │ │ ├── 1d_stencil_replay_distributed.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── async_replay_distributed.cpp │ │ │ │ ├── async_replay_distributed_validate.cpp │ │ │ │ ├── communicator.hpp │ │ │ │ └── plain_async_distributed.cpp │ │ │ └── replicate │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── async_replicate_distributed.cpp │ │ │ │ ├── async_replicate_distributed_validate.cpp │ │ │ │ ├── async_replicate_distributed_vote.cpp │ │ │ │ ├── async_replicate_distributed_vote_validate.cpp │ │ │ │ └── pure_async_for_replicate_distributed.cpp │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── async_replay_distributed_plain.cpp │ │ │ └── async_replicate_distributed_plain.cpp │ ├── runtime_components │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── runtime_components │ │ │ │ ├── component_factory.hpp │ │ │ │ ├── component_registry.hpp │ │ │ │ ├── components_fwd.hpp │ │ │ │ ├── console_error_sink.hpp │ │ │ │ ├── console_logging.hpp │ │ │ │ ├── create_component_helpers.hpp │ │ │ │ ├── derived_component_factory.hpp │ │ │ │ ├── distributed_metadata_base.hpp │ │ │ │ ├── new.hpp │ │ │ │ └── server │ │ │ │ ├── console_error_sink.hpp │ │ │ │ ├── console_error_sink_singleton.hpp │ │ │ │ └── console_logging.hpp │ │ ├── src │ │ │ ├── component_registry.cpp │ │ │ ├── console_error_sink.cpp │ │ │ ├── console_logging.cpp │ │ │ └── server │ │ │ │ ├── console_error_sink_server.cpp │ │ │ │ ├── console_error_sink_singleton.cpp │ │ │ │ └── console_logging_server.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── agas │ │ │ ├── CMakeLists.txt │ │ │ ├── components │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── managed_refcnt_checker.cpp │ │ │ │ ├── managed_refcnt_checker.hpp │ │ │ │ ├── server │ │ │ │ │ ├── managed_refcnt_checker.cpp │ │ │ │ │ ├── managed_refcnt_checker.hpp │ │ │ │ │ ├── simple_mobile_object.hpp │ │ │ │ │ ├── simple_refcnt_checker.cpp │ │ │ │ │ └── simple_refcnt_checker.hpp │ │ │ │ ├── simple_mobile_object.cpp │ │ │ │ ├── simple_mobile_object.hpp │ │ │ │ ├── simple_refcnt_checker.cpp │ │ │ │ ├── simple_refcnt_checker.hpp │ │ │ │ └── stubs │ │ │ │ │ ├── managed_refcnt_checker.hpp │ │ │ │ │ └── simple_refcnt_checker.hpp │ │ │ ├── credit_exhaustion.cpp │ │ │ ├── find_clients_from_prefix.cpp │ │ │ ├── find_ids_from_prefix.cpp │ │ │ ├── get_colocation_id.cpp │ │ │ ├── local_address_rebind.cpp │ │ │ ├── local_embedded_ref_to_local_object.cpp │ │ │ ├── local_embedded_ref_to_remote_object.cpp │ │ │ ├── refcnted_symbol_to_local_object.cpp │ │ │ ├── refcnted_symbol_to_remote_object.cpp │ │ │ ├── remote_embedded_ref_to_local_object.cpp │ │ │ ├── remote_embedded_ref_to_remote_object.cpp │ │ │ ├── scoped_ref_to_local_object.cpp │ │ │ ├── scoped_ref_to_remote_object.cpp │ │ │ ├── split_credit.cpp │ │ │ ├── uncounted_symbol_to_local_object.cpp │ │ │ └── uncounted_symbol_to_remote_object.cpp │ │ │ └── components │ │ │ ├── CMakeLists.txt │ │ │ ├── action_invoke_no_more_than.cpp │ │ │ ├── action_invoke_no_more_than.hpp │ │ │ ├── components │ │ │ ├── CMakeLists.txt │ │ │ ├── launch_process_test_server.cpp │ │ │ └── launch_process_test_server.hpp │ │ │ ├── copy_component.cpp │ │ │ ├── get_gid.cpp │ │ │ ├── get_ptr.cpp │ │ │ ├── inheritance_2_classes_abstract.cpp │ │ │ ├── inheritance_2_classes_concrete.cpp │ │ │ ├── inheritance_2_classes_concrete_simple.cpp │ │ │ ├── inheritance_3_classes_1_abstract.cpp │ │ │ ├── inheritance_3_classes_2_abstract.cpp │ │ │ ├── inheritance_3_classes_2_concrete.cpp │ │ │ ├── inheritance_3_classes_concrete.cpp │ │ │ ├── launch_process.cpp │ │ │ ├── launched_process.cpp │ │ │ ├── local_new.cpp │ │ │ ├── migrate_component.cpp │ │ │ ├── migrate_polymorphic_component.cpp │ │ │ └── new_.cpp │ ├── runtime_distributed │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ ├── runtime_distributed.hpp │ │ │ │ └── runtime_distributed │ │ │ │ ├── applier.hpp │ │ │ │ ├── applier_fwd.hpp │ │ │ │ ├── big_boot_barrier.hpp │ │ │ │ ├── copy_component.hpp │ │ │ │ ├── find_all_localities.hpp │ │ │ │ ├── find_here.hpp │ │ │ │ ├── find_localities.hpp │ │ │ │ ├── get_locality_name.hpp │ │ │ │ ├── get_num_localities.hpp │ │ │ │ ├── migrate_component.hpp │ │ │ │ ├── runtime_fwd.hpp │ │ │ │ ├── runtime_support.hpp │ │ │ │ ├── server │ │ │ │ ├── copy_component.hpp │ │ │ │ ├── migrate_component.hpp │ │ │ │ └── runtime_support.hpp │ │ │ │ └── stubs │ │ │ │ └── runtime_support.hpp │ │ ├── src │ │ │ ├── applier.cpp │ │ │ ├── big_boot_barrier.cpp │ │ │ ├── get_locality_name.cpp │ │ │ ├── locality_interface.cpp │ │ │ ├── runtime_distributed.cpp │ │ │ ├── runtime_support.cpp │ │ │ ├── server │ │ │ │ └── runtime_support_server.cpp │ │ │ └── stubs │ │ │ │ └── runtime_support_stubs.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ └── CMakeLists.txt │ │ │ ├── regressions │ │ │ ├── CMakeLists.txt │ │ │ ├── multiple_init.cpp │ │ │ ├── multiple_init_2918.cpp │ │ │ ├── shutdown_hang_6699.cpp │ │ │ └── unhandled_exception_582.cpp │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ └── thread_mapper_parcel_pools.cpp │ ├── segmented_algorithms │ │ ├── CMakeLists.txt │ │ ├── docs │ │ │ └── index.rst │ │ ├── examples │ │ │ └── CMakeLists.txt │ │ ├── include │ │ │ └── hpx │ │ │ │ └── parallel │ │ │ │ ├── segmented_algorithm.hpp │ │ │ │ └── segmented_algorithms │ │ │ │ ├── adjacent_difference.hpp │ │ │ │ ├── adjacent_find.hpp │ │ │ │ ├── all_any_none.hpp │ │ │ │ ├── count.hpp │ │ │ │ ├── detail │ │ │ │ ├── dispatch.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── scan.hpp │ │ │ │ └── transfer.hpp │ │ │ │ ├── exclusive_scan.hpp │ │ │ │ ├── fill.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── functional │ │ │ │ └── segmented_iterator_helpers.hpp │ │ │ │ ├── generate.hpp │ │ │ │ ├── inclusive_scan.hpp │ │ │ │ ├── minmax.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── traits │ │ │ │ └── zip_iterator.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform_exclusive_scan.hpp │ │ │ │ ├── transform_inclusive_scan.hpp │ │ │ │ └── transform_reduce.hpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── performance │ │ │ ├── CMakeLists.txt │ │ │ └── minmax_element_performance.cpp │ │ │ ├── regressions │ │ │ └── CMakeLists.txt │ │ │ └── unit │ │ │ ├── CMakeLists.txt │ │ │ ├── partitioned_vector_adjacent_difference1.cpp │ │ │ ├── partitioned_vector_adjacent_difference2.cpp │ │ │ ├── partitioned_vector_adjacent_find1.cpp │ │ │ ├── partitioned_vector_adjacent_find2.cpp │ │ │ ├── partitioned_vector_all_of1.cpp │ │ │ ├── partitioned_vector_all_of2.cpp │ │ │ ├── partitioned_vector_any_of1.cpp │ │ │ ├── partitioned_vector_any_of2.cpp │ │ │ ├── partitioned_vector_copy.cpp │ │ │ ├── partitioned_vector_exclusive_scan.cpp │ │ │ ├── partitioned_vector_exclusive_scan2.cpp │ │ │ ├── partitioned_vector_fill.cpp │ │ │ ├── partitioned_vector_find.cpp │ │ │ ├── partitioned_vector_find2.cpp │ │ │ ├── partitioned_vector_for_each.cpp │ │ │ ├── partitioned_vector_for_each_double.cpp │ │ │ ├── partitioned_vector_for_each_n.cpp │ │ │ ├── partitioned_vector_generate.cpp │ │ │ ├── partitioned_vector_handle_values.cpp │ │ │ ├── partitioned_vector_inclusive_scan.cpp │ │ │ ├── partitioned_vector_inclusive_scan2.cpp │ │ │ ├── partitioned_vector_iter.cpp │ │ │ ├── partitioned_vector_max_element1.cpp │ │ │ ├── partitioned_vector_max_element2.cpp │ │ │ ├── partitioned_vector_min_element1.cpp │ │ │ ├── partitioned_vector_min_element2.cpp │ │ │ ├── partitioned_vector_minmax_element1.cpp │ │ │ ├── partitioned_vector_minmax_element2.cpp │ │ │ ├── partitioned_vector_move.cpp │ │ │ ├── partitioned_vector_none1.cpp │ │ │ ├── partitioned_vector_none2.cpp │ │ │ ├── partitioned_vector_reduce.cpp │ │ │ ├── partitioned_vector_scan.hpp │ │ │ ├── partitioned_vector_target.cpp │ │ │ ├── partitioned_vector_transform1.cpp │ │ │ ├── partitioned_vector_transform2.cpp │ │ │ ├── partitioned_vector_transform_binary.cpp │ │ │ ├── partitioned_vector_transform_binary1.cpp │ │ │ ├── partitioned_vector_transform_binary2.cpp │ │ │ ├── partitioned_vector_transform_binary3.cpp │ │ │ ├── partitioned_vector_transform_reduce1.cpp │ │ │ ├── partitioned_vector_transform_reduce2.cpp │ │ │ ├── partitioned_vector_transform_reduce_binary1.cpp │ │ │ ├── partitioned_vector_transform_reduce_binary2.cpp │ │ │ ├── partitioned_vector_transform_scan.cpp │ │ │ ├── partitioned_vector_transform_scan2.cpp │ │ │ ├── test_transform_binary.hpp │ │ │ └── test_transform_binary2.hpp │ └── statistics │ │ ├── CMakeLists.txt │ │ ├── docs │ │ └── index.rst │ │ ├── examples │ │ └── CMakeLists.txt │ │ ├── include │ │ └── hpx │ │ │ └── statistics │ │ │ ├── histogram.hpp │ │ │ ├── rolling_max.hpp │ │ │ └── rolling_min.hpp │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── performance │ │ └── CMakeLists.txt │ │ ├── regressions │ │ └── CMakeLists.txt │ │ └── unit │ │ └── CMakeLists.txt ├── index.rst ├── overview.rst └── src │ ├── dummy.cpp │ └── empty.cpp ├── tests ├── CMakeLists.txt ├── performance │ ├── CMakeLists.txt │ ├── local │ │ ├── CMakeLists.txt │ │ ├── activate_counters.cpp │ │ ├── activate_counters.hpp │ │ ├── agas_cache_timings.cpp │ │ ├── async_overheads.cpp │ │ ├── coroutines_call_overhead.cpp │ │ ├── delay_baseline.cpp │ │ ├── delay_baseline_threaded.cpp │ │ ├── function_object_wrapper_overhead.cpp │ │ ├── future_overhead.cpp │ │ ├── future_overhead_report.cpp │ │ ├── hpx_heterogeneous_timed_task_spawn.cpp │ │ ├── hpx_homogeneous_timed_task_spawn_executors.cpp │ │ ├── hpx_tls_overhead.cpp │ │ ├── htts_v2 │ │ │ ├── CMakeLists.txt │ │ │ ├── htts2.cpp │ │ │ ├── htts2.hpp │ │ │ ├── htts2_hpx.cpp │ │ │ ├── htts2_omp.cpp │ │ │ ├── htts2_payload_precision.cpp │ │ │ ├── htts2_qthreads.cpp │ │ │ └── htts2_tbb.cpp │ │ ├── libcds_hazard_pointer_overhead.cpp │ │ ├── native_tls_overhead.cpp │ │ ├── nonconcurrent_fifo_overhead.cpp │ │ ├── nonconcurrent_lifo_overhead.cpp │ │ ├── openmp_homogeneous_timed_task_spawn.cpp │ │ ├── openmp_parallel_region.cpp │ │ ├── parent_vs_child_stealing.cpp │ │ ├── partitioned_vector_foreach.cpp │ │ ├── print_heterogeneous_payloads.cpp │ │ ├── qthreads_heterogeneous_timed_task_spawn.cpp │ │ ├── qthreads_homogeneous_timed_task_spawn.cpp │ │ ├── resume_suspend.cpp │ │ ├── sizeof.cpp │ │ ├── skynet.cpp │ │ ├── spinlock_overhead1.cpp │ │ ├── spinlock_overhead2.cpp │ │ ├── start_stop.cpp │ │ ├── stream.cpp │ │ ├── stream_report.cpp │ │ ├── tbb_homogeneous_timed_task_spawn.cpp │ │ ├── timed_task_spawn.cpp │ │ ├── transform_reduce_binary_scaling.cpp │ │ ├── wait_all_timings.cpp │ │ └── worker_timed.hpp │ └── network │ │ ├── CMakeLists.txt │ │ ├── network_storage │ │ ├── CMakeLists.txt │ │ ├── copy_script.cmake │ │ ├── instructions.md │ │ ├── ll-network-storage.sh.in │ │ ├── network_storage.bat.in │ │ ├── network_storage.cpp │ │ ├── plot-results.py │ │ ├── plot_utils.py │ │ ├── simple_profiler.hpp │ │ └── slurm-network-storage.sh.in │ │ ├── pingpong_performance.cpp │ │ └── pingpong_performance2.cpp ├── regressions │ ├── CMakeLists.txt │ ├── block_matrix │ │ ├── CMakeLists.txt │ │ ├── algorithms.cpp │ │ ├── algorithms.hpp │ │ ├── block_matrix.cpp │ │ ├── block_matrix.hpp │ │ ├── defs.hpp │ │ ├── main.cpp │ │ ├── matrix.cpp │ │ ├── matrix.hpp │ │ ├── matrix_hpx.cpp │ │ ├── matrix_hpx.hpp │ │ ├── tests.cpp │ │ └── tests.hpp │ ├── build │ │ ├── CMakeLists.txt │ │ ├── client_1950.cpp │ │ ├── server_1950.cpp │ │ └── server_1950.hpp │ ├── component │ │ ├── CMakeLists.txt │ │ ├── bulk_new_3054.cpp │ │ ├── client_base_registration.cpp │ │ ├── create_n_components_2323.cpp │ │ ├── create_remote_component_2334.cpp │ │ ├── moveonly_constructor_arguments_1405.cpp │ │ ├── new_2848.cpp │ │ ├── new_4369.cpp │ │ └── returned_client_2150.cpp │ ├── lcos │ │ ├── CMakeLists.txt │ │ ├── after_588.cpp │ │ ├── call_promise_get_gid_more_than_once.cpp │ │ ├── lifetime_588.cpp │ │ ├── lifetime_588_1.cpp │ │ ├── promise_1620.cpp │ │ ├── promise_leak_996.cpp │ │ ├── receive_buffer_1733.cpp │ │ ├── shared_stated_leaked_1211.cpp │ │ ├── sliding_semaphore_2338.cpp │ │ └── wait_for_action_2796.cpp │ ├── stack_size_config_4543.cpp │ ├── threads │ │ ├── CMakeLists.txt │ │ ├── block_os_threads_1036.cpp │ │ ├── main_thread_exit_callbacks.cpp │ │ ├── resume_priority.cpp │ │ ├── run_as_hpx_thread_exceptions_3304.cpp │ │ ├── run_as_os_thread_lockup_2991.cpp │ │ ├── stackless_self_4155.cpp │ │ ├── thread_data_1111.cpp │ │ ├── thread_rescheduling.cpp │ │ ├── thread_suspend_duration.cpp │ │ ├── thread_suspend_pending.cpp │ │ └── threads_all_1422.cpp │ └── util │ │ ├── CMakeLists.txt │ │ ├── iarchive_1237.cpp │ │ ├── serialize_buffer_1069.cpp │ │ ├── serialize_exception_4886.cpp │ │ ├── set_config_entry_deadlock.cpp │ │ └── zero_copy_parcels_1001.cpp └── unit │ ├── CMakeLists.txt │ ├── apex │ ├── CMakeLists.txt │ ├── annotation_check.cpp │ └── apex_action_count.cpp │ ├── build │ ├── CMakeLists.txt │ └── fetchcontent │ │ └── CMakeLists.txt │ └── init │ ├── CMakeLists.txt │ ├── auto_wrap_main.cpp │ └── manage_runtime.cpp ├── tools ├── .codespell_whitelist ├── CMakeLists.txt ├── VS │ ├── backtrace.natvis │ ├── client_base.natvis │ ├── future.natvis │ ├── gid_type.natvis │ ├── intrusive_ptr.natvis │ ├── thread_data.natvis │ ├── thread_description.natvis │ ├── thread_id.natvis │ ├── thread_state.natvis │ └── tuple.natvis ├── add_compat_headers.sh ├── asan.supp ├── build_boost.sh ├── change_includes.sh ├── check_module_cmakelists.sh ├── docker │ └── Dockerfile ├── gdb │ ├── README.md │ └── hpx.py ├── generate_issue_pr_list.sh ├── hpxdep │ ├── CMakeLists.txt │ ├── hpxdep.cpp │ └── report.bat ├── inspect │ ├── CMakeLists.txt │ ├── apple_macro_check.cpp │ ├── apple_macro_check.hpp │ ├── ascii_check.cpp │ ├── ascii_check.hpp │ ├── assert_macro_check.cpp │ ├── assert_macro_check.hpp │ ├── copyright_check.cpp │ ├── copyright_check.hpp │ ├── crlf_check.cpp │ ├── crlf_check.hpp │ ├── deprecated_include_check.cpp │ ├── deprecated_include_check.hpp │ ├── deprecated_macro_check.cpp │ ├── deprecated_macro_check.hpp │ ├── deprecated_name_check.cpp │ ├── deprecated_name_check.hpp │ ├── doc │ │ └── inspect.qbk │ ├── end_check.cpp │ ├── end_check.hpp │ ├── endline_whitespace_check.cpp │ ├── endline_whitespace_check.hpp │ ├── function_hyper.hpp │ ├── hpx-no-inspect │ ├── include_check.cpp │ ├── include_check.hpp │ ├── inspect.cpp │ ├── inspect_to_junit.py │ ├── inspector.hpp │ ├── length_check.cpp │ ├── length_check.hpp │ ├── license_check.cpp │ ├── license_check.hpp │ ├── link_check.cpp │ ├── link_check.hpp │ ├── minmax_check.cpp │ ├── minmax_check.hpp │ ├── path_name_check.cpp │ ├── path_name_check.hpp │ ├── pragma_once_check.cpp │ ├── pragma_once_check.hpp │ ├── spdx_license_check.cpp │ ├── spdx_license_check.hpp │ ├── tab_check.cpp │ ├── tab_check.hpp │ ├── time_string.hpp │ ├── unnamed_namespace_check.cpp │ ├── unnamed_namespace_check.hpp │ ├── windows_macro_check.cpp │ └── windows_macro_check.hpp ├── perftests_ci │ ├── CMakeLists.txt │ ├── build │ │ └── __init__.py │ ├── driver.py │ ├── local_run-lsu.sh │ ├── local_run.sh │ ├── perftest │ │ ├── __init__.py │ │ ├── html.py │ │ ├── plot.py │ │ └── references │ │ │ └── lsu_default │ │ │ ├── foreach_report_test.json │ │ │ ├── future_overhead_report_test.json │ │ │ └── stream_report_test.json │ ├── pyutils │ │ ├── __init__.py │ │ ├── args.py │ │ ├── buildinfo.py.in │ │ ├── default_vars.py │ │ ├── env.py │ │ ├── log.py │ │ └── runtools.py │ ├── requirements.txt │ └── test │ │ └── __init__.py ├── pre-commit ├── roll_release.sh ├── ubsan.supp ├── valgrind │ └── memcheck.supp └── vim │ ├── .ycm_extra_conf.py │ └── Readme └── wrap ├── CMakeLists.txt ├── include └── hpx │ ├── hpx_main.hpp │ └── wrap_main.hpp └── src ├── hpx_main.cpp └── hpx_wrap.cpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/conv.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/conv.xsl -------------------------------------------------------------------------------- /.circleci/tests.examples1.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.examples1.targets -------------------------------------------------------------------------------- /.circleci/tests.examples2.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.examples2.targets -------------------------------------------------------------------------------- /.circleci/tests.regressions1.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.regressions1.targets -------------------------------------------------------------------------------- /.circleci/tests.regressions2.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.regressions2.targets -------------------------------------------------------------------------------- /.circleci/tests.unit1.algorithms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit1.algorithms -------------------------------------------------------------------------------- /.circleci/tests.unit1.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit1.targets -------------------------------------------------------------------------------- /.circleci/tests.unit2.algorithms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit2.algorithms -------------------------------------------------------------------------------- /.circleci/tests.unit2.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit2.targets -------------------------------------------------------------------------------- /.circleci/tests.unit3.algorithms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit3.algorithms -------------------------------------------------------------------------------- /.circleci/tests.unit3.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit3.targets -------------------------------------------------------------------------------- /.circleci/tests.unit4.algorithms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit4.algorithms -------------------------------------------------------------------------------- /.circleci/tests.unit4.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit4.targets -------------------------------------------------------------------------------- /.circleci/tests.unit5.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.circleci/tests.unit5.targets -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.cmake-format.py -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | exclude_paths: 3 | - "tools/perftests_ci/**" 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/hpx-no-inspect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/cff-validator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/workflows/cff-validator.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/linux_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/workflows/linux_debug.yml -------------------------------------------------------------------------------- /.github/workflows/linux_hip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/workflows/linux_hip.yml -------------------------------------------------------------------------------- /.github/workflows/linux_sanitizers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/workflows/linux_sanitizers.yml -------------------------------------------------------------------------------- /.github/workflows/macos_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/workflows/macos_debug.yml -------------------------------------------------------------------------------- /.github/workflows/msvc_analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/workflows/msvc_analysis.yml -------------------------------------------------------------------------------- /.github/workflows/tests.examples.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.github/workflows/tests.examples.targets -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.gitignore -------------------------------------------------------------------------------- /.jenkins/common/set_github_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/common/set_github_status.sh -------------------------------------------------------------------------------- /.jenkins/lsu-perftests/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-perftests/Jenkinsfile -------------------------------------------------------------------------------- /.jenkins/lsu-perftests/batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-perftests/batch.sh -------------------------------------------------------------------------------- /.jenkins/lsu-perftests/comment_github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-perftests/comment_github.sh -------------------------------------------------------------------------------- /.jenkins/lsu-perftests/ctest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-perftests/ctest.cmake -------------------------------------------------------------------------------- /.jenkins/lsu-perftests/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-perftests/entry.sh -------------------------------------------------------------------------------- /.jenkins/lsu-perftests/env-perftests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-perftests/env-perftests.sh -------------------------------------------------------------------------------- /.jenkins/lsu-test-coverage/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-test-coverage/Jenkinsfile -------------------------------------------------------------------------------- /.jenkins/lsu-test-coverage/batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-test-coverage/batch.sh -------------------------------------------------------------------------------- /.jenkins/lsu-test-coverage/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu-test-coverage/entry.sh -------------------------------------------------------------------------------- /.jenkins/lsu/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/Jenkinsfile -------------------------------------------------------------------------------- /.jenkins/lsu/batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/batch.sh -------------------------------------------------------------------------------- /.jenkins/lsu/ctest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/ctest.cmake -------------------------------------------------------------------------------- /.jenkins/lsu/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/entry.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-clang-16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-clang-16.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-clang-17-apex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-clang-17-apex.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-clang-17.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-clang-17.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-clang-18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-clang-18.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-clang-19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-clang-19.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-clang-20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-clang-20.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-common.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-gcc-12-cuda-12-dgx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-gcc-12-cuda-12-dgx.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-gcc-12-cuda-12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-gcc-12-cuda-12.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-gcc-12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-gcc-12.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-gcc-13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-gcc-13.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-gcc-14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-gcc-14.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-gcc-15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-gcc-15.sh -------------------------------------------------------------------------------- /.jenkins/lsu/env-hipcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/.jenkins/lsu/env-hipcc.sh -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/README.rst -------------------------------------------------------------------------------- /cmake/CacheLineSize.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/CacheLineSize.cmake -------------------------------------------------------------------------------- /cmake/FindAmplifier.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindAmplifier.cmake -------------------------------------------------------------------------------- /cmake/FindAsio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindAsio.cmake -------------------------------------------------------------------------------- /cmake/FindBreathe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindBreathe.cmake -------------------------------------------------------------------------------- /cmake/FindGasnet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindGasnet.cmake -------------------------------------------------------------------------------- /cmake/FindHwloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindHwloc.cmake -------------------------------------------------------------------------------- /cmake/FindJemalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindJemalloc.cmake -------------------------------------------------------------------------------- /cmake/FindLibSigSegv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindLibSigSegv.cmake -------------------------------------------------------------------------------- /cmake/FindLibfabric.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindLibfabric.cmake -------------------------------------------------------------------------------- /cmake/FindMSR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindMSR.cmake -------------------------------------------------------------------------------- /cmake/FindOrangeFS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindOrangeFS.cmake -------------------------------------------------------------------------------- /cmake/FindPWR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindPWR.cmake -------------------------------------------------------------------------------- /cmake/FindPapi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindPapi.cmake -------------------------------------------------------------------------------- /cmake/FindQThreads.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindQThreads.cmake -------------------------------------------------------------------------------- /cmake/FindRDMA_CM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindRDMA_CM.cmake -------------------------------------------------------------------------------- /cmake/FindRdmacm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindRdmacm.cmake -------------------------------------------------------------------------------- /cmake/FindSnappy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindSnappy.cmake -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /cmake/FindStdexec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindStdexec.cmake -------------------------------------------------------------------------------- /cmake/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindTBB.cmake -------------------------------------------------------------------------------- /cmake/FindTBBmalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindTBBmalloc.cmake -------------------------------------------------------------------------------- /cmake/FindTCMalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindTCMalloc.cmake -------------------------------------------------------------------------------- /cmake/FindValgrind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/FindValgrind.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddCompileFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddCompileFlag.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddCompileTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddCompileTest.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddComponent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddComponent.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddConfigTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddConfigTest.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddDefinitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddDefinitions.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddExecutable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddExecutable.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddLibrary.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddLibraryHeaders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddLibraryHeaders.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddLibrarySources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddLibrarySources.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddLinkFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddLinkFlag.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddModule.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddParcelport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddParcelport.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddPseudoDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddPseudoDependencies.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddPseudoTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddPseudoTarget.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddSourceGroup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddSourceGroup.cmake -------------------------------------------------------------------------------- /cmake/HPX_AddTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AddTest.cmake -------------------------------------------------------------------------------- /cmake/HPX_AppendProperty.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_AppendProperty.cmake -------------------------------------------------------------------------------- /cmake/HPX_CXXModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_CXXModules.cmake -------------------------------------------------------------------------------- /cmake/HPX_CXXOverrides.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_CXXOverrides.cmake -------------------------------------------------------------------------------- /cmake/HPX_CheckCXXStandard.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_CheckCXXStandard.cmake -------------------------------------------------------------------------------- /cmake/HPX_CollectStdHeaders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_CollectStdHeaders.cmake -------------------------------------------------------------------------------- /cmake/HPX_CompilerFlagsTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_CompilerFlagsTargets.cmake -------------------------------------------------------------------------------- /cmake/HPX_Documentation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_Documentation.cmake -------------------------------------------------------------------------------- /cmake/HPX_ExportTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_ExportTargets.cmake -------------------------------------------------------------------------------- /cmake/HPX_FindHwloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_FindHwloc.cmake -------------------------------------------------------------------------------- /cmake/HPX_ForceOutOfTreeBuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_ForceOutOfTreeBuild.cmake -------------------------------------------------------------------------------- /cmake/HPX_ForwardCacheVariables.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_ForwardCacheVariables.cmake -------------------------------------------------------------------------------- /cmake/HPX_GenerateDependencyReport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_GenerateDependencyReport.cmake -------------------------------------------------------------------------------- /cmake/HPX_GeneratePackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_GeneratePackage.cmake -------------------------------------------------------------------------------- /cmake/HPX_GeneratePackageUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_GeneratePackageUtils.cmake -------------------------------------------------------------------------------- /cmake/HPX_GitCommit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_GitCommit.cmake -------------------------------------------------------------------------------- /cmake/HPX_Include.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_Include.cmake -------------------------------------------------------------------------------- /cmake/HPX_Message.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_Message.cmake -------------------------------------------------------------------------------- /cmake/HPX_Option.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_Option.cmake -------------------------------------------------------------------------------- /cmake/HPX_ParcelPorts.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_ParcelPorts.cmake -------------------------------------------------------------------------------- /cmake/HPX_PerformCxxFeatureTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_PerformCxxFeatureTests.cmake -------------------------------------------------------------------------------- /cmake/HPX_PrintSummary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_PrintSummary.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetCMakePolicy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetCMakePolicy.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetFullRPATH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetFullRPATH.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetLibName.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetLibName.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetOutputPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetOutputPaths.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetPlatform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetPlatform.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupAllocator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupAllocator.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupApex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupApex.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupAsio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupAsio.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupBoost.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupBoostFilesystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupBoostFilesystem.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupBoostIostreams.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupBoostIostreams.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupBoostRegex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupBoostRegex.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupCUDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupCUDA.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupDatapar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupDatapar.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupEve.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupEve.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupGasnet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupGasnet.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupHIP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupHIP.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupHwloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupHwloc.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupLCI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupLCI.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupLibCDS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupLibCDS.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupMPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupMPI.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupNanobench.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupNanobench.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupPapi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupPapi.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupSVE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupSVE.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupSYCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupSYCL.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupStdexec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupStdexec.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupTarget.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupThreads.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupThreads.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupValgrind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupValgrind.cmake -------------------------------------------------------------------------------- /cmake/HPX_SetupVc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_SetupVc.cmake -------------------------------------------------------------------------------- /cmake/HPX_ShortenPseudoTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_ShortenPseudoTarget.cmake -------------------------------------------------------------------------------- /cmake/HPX_UpdateGitDocs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_UpdateGitDocs.cmake -------------------------------------------------------------------------------- /cmake/HPX_Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/HPX_Utils.cmake -------------------------------------------------------------------------------- /cmake/TargetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/TargetArch.cmake -------------------------------------------------------------------------------- /cmake/installed_hpx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/installed_hpx.cmake -------------------------------------------------------------------------------- /cmake/packaging/rpm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/packaging/rpm/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/packaging/rpm/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/packaging/rpm/Changelog.txt -------------------------------------------------------------------------------- /cmake/packaging/rpm/hpx-no-inspect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/templates/HPXConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/HPXConfig.cmake.in -------------------------------------------------------------------------------- /cmake/templates/HPXMacros.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/HPXMacros.cmake.in -------------------------------------------------------------------------------- /cmake/templates/cmake_variables.rst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/cmake_variables.rst.in -------------------------------------------------------------------------------- /cmake/templates/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/conf.py.in -------------------------------------------------------------------------------- /cmake/templates/hpx.ixx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/hpx.ixx.in -------------------------------------------------------------------------------- /cmake/templates/hpx_application.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/hpx_application.pc.in -------------------------------------------------------------------------------- /cmake/templates/hpx_component.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/hpx_component.pc.in -------------------------------------------------------------------------------- /cmake/templates/hpxcxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/hpxcxx.in -------------------------------------------------------------------------------- /cmake/templates/hpxdep_index.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/hpxdep_index.html.in -------------------------------------------------------------------------------- /cmake/templates/hpxrun.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/hpxrun.py.in -------------------------------------------------------------------------------- /cmake/templates/modules_enabled.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/modules_enabled.hpp.in -------------------------------------------------------------------------------- /cmake/templates/std_headers.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/templates/std_headers.hpp.in -------------------------------------------------------------------------------- /cmake/tests/builtin_forward_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/builtin_forward_move.cpp -------------------------------------------------------------------------------- /cmake/tests/builtin_frame_address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/builtin_frame_address.cpp -------------------------------------------------------------------------------- /cmake/tests/c11_aligned_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/c11_aligned_alloc.cpp -------------------------------------------------------------------------------- /cmake/tests/contracts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/contracts.cpp -------------------------------------------------------------------------------- /cmake/tests/cpuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cpuid.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx11_atomic_init_flag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx11_atomic_init_flag.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx11_std_atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx11_std_atomic.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx11_std_atomic_128bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx11_std_atomic_128bit.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx11_std_quick_exit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx11_std_quick_exit.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx17_aligned_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx17_aligned_new.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx17_copy_elision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx17_copy_elision.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx17_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx17_filesystem.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx17_noexcept_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx17_noexcept_function.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx17_shared_ptr_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx17_shared_ptr_array.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx17_std_aligned_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx17_std_aligned_alloc.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx20_coroutines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx20_coroutines.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx20_experimental_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx20_experimental_simd.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx20_lambda_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx20_lambda_capture.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx20_source_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx20_source_location.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx20_std_bit_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx20_std_bit_cast.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx20_std_construct_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx20_std_construct_at.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx20_std_endian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx20_std_endian.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx20_std_identity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx20_std_identity.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx23_std_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx23_std_generator.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx26_contracts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx26_contracts.cpp -------------------------------------------------------------------------------- /cmake/tests/cxx26_experimental_scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/cxx26_experimental_scope.cpp -------------------------------------------------------------------------------- /cmake/tests/mm_prefetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/mm_prefetch.cpp -------------------------------------------------------------------------------- /cmake/tests/set_thread_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/set_thread_name.cpp -------------------------------------------------------------------------------- /cmake/tests/stable_inplace_merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/stable_inplace_merge.cpp -------------------------------------------------------------------------------- /cmake/tests/unistd_h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/tests/unistd_h.cpp -------------------------------------------------------------------------------- /cmake/toolchains/ARM-gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/toolchains/ARM-gcc.cmake -------------------------------------------------------------------------------- /cmake/toolchains/BGION-gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/toolchains/BGION-gcc.cmake -------------------------------------------------------------------------------- /cmake/toolchains/BGQ.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/toolchains/BGQ.cmake -------------------------------------------------------------------------------- /cmake/toolchains/Cray.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/toolchains/Cray.cmake -------------------------------------------------------------------------------- /cmake/toolchains/CrayKNL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/toolchains/CrayKNL.cmake -------------------------------------------------------------------------------- /cmake/toolchains/CrayKNLStatic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/toolchains/CrayKNLStatic.cmake -------------------------------------------------------------------------------- /cmake/toolchains/CrayStatic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/toolchains/CrayStatic.cmake -------------------------------------------------------------------------------- /cmake/toolchains/XeonPhi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/cmake/toolchains/XeonPhi.cmake -------------------------------------------------------------------------------- /components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/CMakeLists.txt -------------------------------------------------------------------------------- /components/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/README.rst -------------------------------------------------------------------------------- /components/containers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/containers/CMakeLists.txt -------------------------------------------------------------------------------- /components/create_component_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/create_component_skeleton.py -------------------------------------------------------------------------------- /components/iostreams/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/iostreams/CMakeLists.txt -------------------------------------------------------------------------------- /components/parcel_plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/parcel_plugins/CMakeLists.txt -------------------------------------------------------------------------------- /components/process/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/process/CMakeLists.txt -------------------------------------------------------------------------------- /components/process/src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/process/src/process.cpp -------------------------------------------------------------------------------- /components/process/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/components/process/tests/CMakeLists.txt -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/joss_paper/hpx-no-inspect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/joss_paper/hpx_architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/joss_paper/hpx_architecture.pdf -------------------------------------------------------------------------------- /docs/joss_paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/joss_paper/paper.bib -------------------------------------------------------------------------------- /docs/joss_paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/joss_paper/paper.md -------------------------------------------------------------------------------- /docs/sphinx/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/_static/custom.css -------------------------------------------------------------------------------- /docs/sphinx/_static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/_static/images/favicon.png -------------------------------------------------------------------------------- /docs/sphinx/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/_templates/footer.html -------------------------------------------------------------------------------- /docs/sphinx/about_hpx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/about_hpx.rst -------------------------------------------------------------------------------- /docs/sphinx/about_hpx/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/about_hpx/history.rst -------------------------------------------------------------------------------- /docs/sphinx/about_hpx/people.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/about_hpx/people.rst -------------------------------------------------------------------------------- /docs/sphinx/additional_material.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/additional_material.rst -------------------------------------------------------------------------------- /docs/sphinx/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/api.rst -------------------------------------------------------------------------------- /docs/sphinx/api/full_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/api/full_api.rst -------------------------------------------------------------------------------- /docs/sphinx/api/public_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/api/public_api.rst -------------------------------------------------------------------------------- /docs/sphinx/citing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/citing.rst -------------------------------------------------------------------------------- /docs/sphinx/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/contributing.rst -------------------------------------------------------------------------------- /docs/sphinx/contributing/governance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/contributing/governance.rst -------------------------------------------------------------------------------- /docs/sphinx/contributing/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/contributing/modules.rst -------------------------------------------------------------------------------- /docs/sphinx/contributing/testing_hpx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/contributing/testing_hpx.rst -------------------------------------------------------------------------------- /docs/sphinx/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/examples.rst -------------------------------------------------------------------------------- /docs/sphinx/examples/1d_stencil.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/examples/1d_stencil.rst -------------------------------------------------------------------------------- /docs/sphinx/examples/accumulator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/examples/accumulator.rst -------------------------------------------------------------------------------- /docs/sphinx/examples/fibonacci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/examples/fibonacci.rst -------------------------------------------------------------------------------- /docs/sphinx/examples/fibonacci_local.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/examples/fibonacci_local.rst -------------------------------------------------------------------------------- /docs/sphinx/examples/hello_world.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/examples/hello_world.rst -------------------------------------------------------------------------------- /docs/sphinx/examples/serialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/examples/serialization.rst -------------------------------------------------------------------------------- /docs/sphinx/extensions/sphinx-hpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/extensions/sphinx-hpx.py -------------------------------------------------------------------------------- /docs/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/index.rst -------------------------------------------------------------------------------- /docs/sphinx/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual.rst -------------------------------------------------------------------------------- /docs/sphinx/manual/building_hpx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual/building_hpx.rst -------------------------------------------------------------------------------- /docs/sphinx/manual/cmake_variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual/cmake_variables.rst -------------------------------------------------------------------------------- /docs/sphinx/manual/executors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual/executors.rst -------------------------------------------------------------------------------- /docs/sphinx/manual/getting_hpx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual/getting_hpx.rst -------------------------------------------------------------------------------- /docs/sphinx/manual/migration_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual/migration_guide.rst -------------------------------------------------------------------------------- /docs/sphinx/manual/miscellaneous.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual/miscellaneous.rst -------------------------------------------------------------------------------- /docs/sphinx/manual/prerequisites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual/prerequisites.rst -------------------------------------------------------------------------------- /docs/sphinx/manual/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/manual/troubleshooting.rst -------------------------------------------------------------------------------- /docs/sphinx/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/quickstart.rst -------------------------------------------------------------------------------- /docs/sphinx/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/references.bib -------------------------------------------------------------------------------- /docs/sphinx/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_7_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_7_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_8_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_8_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_8_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_8_1.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_9_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_9_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_9_5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_9_5.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_9_6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_9_6.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_9_7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_9_7.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_9_8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_9_8.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_0_9_9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_0_9_9.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_0_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_0_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_1_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_1_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_2_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_2_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_2_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_2_1.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_3_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_3_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_4_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_4_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_4_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_4_1.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_5_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_5_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_5_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_5_1.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_6_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_6_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_7_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_7_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_7_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_7_1.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_8_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_8_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_8_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_8_1.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_9_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_9_0.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_1_9_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_1_9_1.rst -------------------------------------------------------------------------------- /docs/sphinx/releases/whats_new_2_0_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/releases/whats_new_2_0_0.rst -------------------------------------------------------------------------------- /docs/sphinx/terminology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/terminology.rst -------------------------------------------------------------------------------- /docs/sphinx/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/users.rst -------------------------------------------------------------------------------- /docs/sphinx/why_hpx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/docs/sphinx/why_hpx.rst -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_1.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_1_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_1_omp.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_2.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_3.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_3_omp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_3_omp.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_4.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_5.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_6.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_7.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/1d_stencil_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/1d_stencil_8.cpp -------------------------------------------------------------------------------- /examples/1d_stencil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/CMakeLists.txt -------------------------------------------------------------------------------- /examples/1d_stencil/README.APEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/README.APEX -------------------------------------------------------------------------------- /examples/1d_stencil/communicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/communicator.hpp -------------------------------------------------------------------------------- /examples/1d_stencil/stencil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/1d_stencil/stencil.hpp -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/accumulators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/accumulators/CMakeLists.txt -------------------------------------------------------------------------------- /examples/accumulators/accumulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/accumulators/accumulator.cpp -------------------------------------------------------------------------------- /examples/accumulators/accumulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/accumulators/accumulator.hpp -------------------------------------------------------------------------------- /examples/apex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/apex/CMakeLists.txt -------------------------------------------------------------------------------- /examples/apex/apex_balance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/apex/apex_balance.cpp -------------------------------------------------------------------------------- /examples/apex/apex_fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/apex/apex_fibonacci.cpp -------------------------------------------------------------------------------- /examples/async_io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/async_io/CMakeLists.txt -------------------------------------------------------------------------------- /examples/async_io/async_io_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/async_io/async_io_action.cpp -------------------------------------------------------------------------------- /examples/async_io/async_io_external.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/async_io/async_io_external.cpp -------------------------------------------------------------------------------- /examples/async_io/async_io_low_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/async_io/async_io_low_level.cpp -------------------------------------------------------------------------------- /examples/async_io/async_io_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/async_io/async_io_simple.cpp -------------------------------------------------------------------------------- /examples/balancing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/balancing/CMakeLists.txt -------------------------------------------------------------------------------- /examples/balancing/hpx_thread_phase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/balancing/hpx_thread_phase.cpp -------------------------------------------------------------------------------- /examples/balancing/os_thread_num.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/balancing/os_thread_num.cpp -------------------------------------------------------------------------------- /examples/future_reduce/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/future_reduce/CMakeLists.txt -------------------------------------------------------------------------------- /examples/gtest_emulation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/gtest_emulation/CMakeLists.txt -------------------------------------------------------------------------------- /examples/gtest_emulation/static_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/gtest_emulation/static_main.cpp -------------------------------------------------------------------------------- /examples/heartbeat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/heartbeat/CMakeLists.txt -------------------------------------------------------------------------------- /examples/heartbeat/heartbeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/heartbeat/heartbeat.cpp -------------------------------------------------------------------------------- /examples/heartbeat/heartbeat.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/heartbeat/heartbeat.man -------------------------------------------------------------------------------- /examples/heartbeat/heartbeat_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/heartbeat/heartbeat_console.cpp -------------------------------------------------------------------------------- /examples/heartbeat/hpx_counters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/heartbeat/hpx_counters.hpp -------------------------------------------------------------------------------- /examples/heartbeat/hpx_counters.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/heartbeat/hpx_counters.rc -------------------------------------------------------------------------------- /examples/heartbeat/win_perf_counters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/heartbeat/win_perf_counters.cpp -------------------------------------------------------------------------------- /examples/heartbeat/win_perf_counters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/heartbeat/win_perf_counters.hpp -------------------------------------------------------------------------------- /examples/hello_world_component/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/hello_world_component/Makefile -------------------------------------------------------------------------------- /examples/hello_world_component/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/hello_world_component/hello.sh -------------------------------------------------------------------------------- /examples/interpolate1d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/interpolate1d/CMakeLists.txt -------------------------------------------------------------------------------- /examples/interpolate1d/sine.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/interpolate1d/sine.h5 -------------------------------------------------------------------------------- /examples/jacobi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi/CMakeLists.txt -------------------------------------------------------------------------------- /examples/jacobi/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi/jacobi.cpp -------------------------------------------------------------------------------- /examples/jacobi/jacobi_component/row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi/jacobi_component/row.cpp -------------------------------------------------------------------------------- /examples/jacobi/jacobi_component/row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi/jacobi_component/row.hpp -------------------------------------------------------------------------------- /examples/jacobi_smp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi_smp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/jacobi_smp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi_smp/Readme.md -------------------------------------------------------------------------------- /examples/jacobi_smp/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi_smp/grid.cpp -------------------------------------------------------------------------------- /examples/jacobi_smp/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi_smp/jacobi.cpp -------------------------------------------------------------------------------- /examples/jacobi_smp/jacobi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi_smp/jacobi.hpp -------------------------------------------------------------------------------- /examples/jacobi_smp/jacobi_hpx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi_smp/jacobi_hpx.cpp -------------------------------------------------------------------------------- /examples/jacobi_smp/jacobi_omp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/jacobi_smp/jacobi_omp.hpp -------------------------------------------------------------------------------- /examples/nqueen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/nqueen/CMakeLists.txt -------------------------------------------------------------------------------- /examples/nqueen/nqueen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/nqueen/nqueen.cpp -------------------------------------------------------------------------------- /examples/nqueen/nqueen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/nqueen/nqueen.hpp -------------------------------------------------------------------------------- /examples/nqueen/nqueen_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/nqueen/nqueen_client.cpp -------------------------------------------------------------------------------- /examples/nqueen/server/nqueen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/nqueen/server/nqueen.hpp -------------------------------------------------------------------------------- /examples/pipeline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/pipeline/CMakeLists.txt -------------------------------------------------------------------------------- /examples/pipeline/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/pipeline/Readme.md -------------------------------------------------------------------------------- /examples/pipeline/collector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/pipeline/collector.cpp -------------------------------------------------------------------------------- /examples/pipeline/emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/pipeline/emitter.cpp -------------------------------------------------------------------------------- /examples/pipeline/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/pipeline/worker.cpp -------------------------------------------------------------------------------- /examples/qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/qt/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/qt/README.rst -------------------------------------------------------------------------------- /examples/qt/qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/qt/qt.cpp -------------------------------------------------------------------------------- /examples/qt/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/qt/widget.cpp -------------------------------------------------------------------------------- /examples/qt/widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/qt/widget.hpp -------------------------------------------------------------------------------- /examples/quickstart/1d_wave_equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/1d_wave_equation.cpp -------------------------------------------------------------------------------- /examples/quickstart/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/CMakeLists.txt -------------------------------------------------------------------------------- /examples/quickstart/barrier_docs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/barrier_docs.cpp -------------------------------------------------------------------------------- /examples/quickstart/channel_docs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/channel_docs.cpp -------------------------------------------------------------------------------- /examples/quickstart/component_ctors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/component_ctors.cpp -------------------------------------------------------------------------------- /examples/quickstart/composable_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/composable_guard.cpp -------------------------------------------------------------------------------- /examples/quickstart/customize_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/customize_async.cpp -------------------------------------------------------------------------------- /examples/quickstart/data_actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/data_actions.cpp -------------------------------------------------------------------------------- /examples/quickstart/error_handling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/error_handling.cpp -------------------------------------------------------------------------------- /examples/quickstart/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/factorial.cpp -------------------------------------------------------------------------------- /examples/quickstart/fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/fibonacci.cpp -------------------------------------------------------------------------------- /examples/quickstart/fibonacci_await.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/fibonacci_await.cpp -------------------------------------------------------------------------------- /examples/quickstart/fibonacci_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/fibonacci_local.cpp -------------------------------------------------------------------------------- /examples/quickstart/fibonacci_one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/fibonacci_one.cpp -------------------------------------------------------------------------------- /examples/quickstart/for_each_docs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/for_each_docs.cpp -------------------------------------------------------------------------------- /examples/quickstart/hello_world_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/hello_world_1.cpp -------------------------------------------------------------------------------- /examples/quickstart/hello_world_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/hello_world_2.cpp -------------------------------------------------------------------------------- /examples/quickstart/hello_world_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/hello_world_3.cpp -------------------------------------------------------------------------------- /examples/quickstart/init_globally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/init_globally.cpp -------------------------------------------------------------------------------- /examples/quickstart/interval_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/interval_timer.cpp -------------------------------------------------------------------------------- /examples/quickstart/latch_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/latch_local.cpp -------------------------------------------------------------------------------- /examples/quickstart/latch_remote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/latch_remote.cpp -------------------------------------------------------------------------------- /examples/quickstart/local_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/local_channel.cpp -------------------------------------------------------------------------------- /examples/quickstart/mutex_docs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/mutex_docs.cpp -------------------------------------------------------------------------------- /examples/quickstart/pingpong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/pingpong.cpp -------------------------------------------------------------------------------- /examples/quickstart/pipeline1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/pipeline1.cpp -------------------------------------------------------------------------------- /examples/quickstart/potpourri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/potpourri.cpp -------------------------------------------------------------------------------- /examples/quickstart/print_to_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/print_to_console.cpp -------------------------------------------------------------------------------- /examples/quickstart/receive_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/receive_buffer.cpp -------------------------------------------------------------------------------- /examples/quickstart/safe_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/safe_object.cpp -------------------------------------------------------------------------------- /examples/quickstart/shared_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/shared_mutex.cpp -------------------------------------------------------------------------------- /examples/quickstart/sierpinski.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/sierpinski.cpp -------------------------------------------------------------------------------- /examples/quickstart/sort_by_key_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/sort_by_key_demo.cpp -------------------------------------------------------------------------------- /examples/quickstart/task_group_docs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/task_group_docs.cpp -------------------------------------------------------------------------------- /examples/quickstart/timed_futures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/timed_futures.cpp -------------------------------------------------------------------------------- /examples/quickstart/timed_wake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/timed_wake.cpp -------------------------------------------------------------------------------- /examples/quickstart/use_main_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/use_main_thread.cpp -------------------------------------------------------------------------------- /examples/quickstart/wait_composition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/wait_composition.cpp -------------------------------------------------------------------------------- /examples/quickstart/zerocopy_rdma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/quickstart/zerocopy_rdma.cpp -------------------------------------------------------------------------------- /examples/random_mem_access/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/random_mem_access/README -------------------------------------------------------------------------------- /examples/sheneos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/CMakeLists.txt -------------------------------------------------------------------------------- /examples/sheneos/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/README.rst -------------------------------------------------------------------------------- /examples/sheneos/sheneos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/sheneos/CMakeLists.txt -------------------------------------------------------------------------------- /examples/sheneos/sheneos/dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/sheneos/dimension.cpp -------------------------------------------------------------------------------- /examples/sheneos/sheneos/dimension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/sheneos/dimension.hpp -------------------------------------------------------------------------------- /examples/sheneos/sheneos/partition3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/sheneos/partition3d.hpp -------------------------------------------------------------------------------- /examples/sheneos/sheneos/read_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/sheneos/read_values.cpp -------------------------------------------------------------------------------- /examples/sheneos/sheneos/read_values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/sheneos/read_values.hpp -------------------------------------------------------------------------------- /examples/sheneos/sheneos_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/sheneos_client.cpp -------------------------------------------------------------------------------- /examples/sheneos/sheneos_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/sheneos/sheneos_test.cpp -------------------------------------------------------------------------------- /examples/spell_check/5desk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/spell_check/5desk.txt -------------------------------------------------------------------------------- /examples/spell_check/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/spell_check/CMakeLists.txt -------------------------------------------------------------------------------- /examples/spell_check/example_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/spell_check/example_text.txt -------------------------------------------------------------------------------- /examples/spell_check/hpx-no-inspect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/startup_shutdown/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/startup_shutdown/CMakeLists.txt -------------------------------------------------------------------------------- /examples/throttle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/throttle/CMakeLists.txt -------------------------------------------------------------------------------- /examples/throttle/spin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/throttle/spin.cpp -------------------------------------------------------------------------------- /examples/throttle/throttle/throttle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/throttle/throttle/throttle.cpp -------------------------------------------------------------------------------- /examples/throttle/throttle/throttle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/throttle/throttle/throttle.hpp -------------------------------------------------------------------------------- /examples/throttle/throttle_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/throttle/throttle_client.cpp -------------------------------------------------------------------------------- /examples/transpose/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/transpose/CMakeLists.txt -------------------------------------------------------------------------------- /examples/transpose/transpose_await.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/transpose/transpose_await.cpp -------------------------------------------------------------------------------- /examples/transpose/transpose_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/transpose/transpose_block.cpp -------------------------------------------------------------------------------- /examples/transpose/transpose_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/transpose/transpose_serial.cpp -------------------------------------------------------------------------------- /examples/transpose/transpose_smp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/transpose/transpose_smp.cpp -------------------------------------------------------------------------------- /examples/tuplespace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/tuplespace/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tuplespace/small_big_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/examples/tuplespace/small_big_object.hpp -------------------------------------------------------------------------------- /hpx.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/hpx.spdx -------------------------------------------------------------------------------- /init/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/CMakeLists.txt -------------------------------------------------------------------------------- /init/include/hpx/hpx_main_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/include/hpx/hpx_main_impl.hpp -------------------------------------------------------------------------------- /init/include/hpx/manage_runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/include/hpx/manage_runtime.hpp -------------------------------------------------------------------------------- /init/src/hpx_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/src/hpx_init.cpp -------------------------------------------------------------------------------- /init/src/hpx_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/src/hpx_main.cpp -------------------------------------------------------------------------------- /init/src/hpx_main_argc_argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/src/hpx_main_argc_argv.cpp -------------------------------------------------------------------------------- /init/src/hpx_main_variables_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/src/hpx_main_variables_map.cpp -------------------------------------------------------------------------------- /init/src/hpx_user_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/src/hpx_user_main.cpp -------------------------------------------------------------------------------- /init/src/hpx_user_main_argc_argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/src/hpx_user_main_argc_argv.cpp -------------------------------------------------------------------------------- /init/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/src/main.cpp -------------------------------------------------------------------------------- /init/src/manage_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/init/src/manage_runtime.cpp -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/README.rst -------------------------------------------------------------------------------- /libs/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/affinity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/affinity/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/affinity/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/affinity/docs/index.rst -------------------------------------------------------------------------------- /libs/core/affinity/src/affinity_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/affinity/src/affinity_data.cpp -------------------------------------------------------------------------------- /libs/core/affinity/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/affinity/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/algorithms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/algorithms/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/algorithms/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/algorithms/docs/index.rst -------------------------------------------------------------------------------- /libs/core/algorithms/src/task_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/algorithms/src/task_group.cpp -------------------------------------------------------------------------------- /libs/core/asio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/asio/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/asio/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/asio/docs/index.rst -------------------------------------------------------------------------------- /libs/core/asio/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/asio/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/asio/src/asio_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/asio/src/asio_util.cpp -------------------------------------------------------------------------------- /libs/core/asio/src/map_hostnames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/asio/src/map_hostnames.cpp -------------------------------------------------------------------------------- /libs/core/asio/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/asio/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/asio/tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/asio/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/assertion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/assertion/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/assertion/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/assertion/docs/index.rst -------------------------------------------------------------------------------- /libs/core/assertion/src/assertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/assertion/src/assertion.cpp -------------------------------------------------------------------------------- /libs/core/assertion/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/assertion/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/async_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/async_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_base/docs/index.rst -------------------------------------------------------------------------------- /libs/core/async_cuda/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_cuda/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/async_cuda/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_cuda/docs/index.rst -------------------------------------------------------------------------------- /libs/core/async_cuda/src/cuda_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_cuda/src/cuda_event.cpp -------------------------------------------------------------------------------- /libs/core/async_cuda/src/cuda_future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_cuda/src/cuda_future.cpp -------------------------------------------------------------------------------- /libs/core/async_cuda/src/cuda_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_cuda/src/cuda_target.cpp -------------------------------------------------------------------------------- /libs/core/async_cuda/src/get_targets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_cuda/src/get_targets.cpp -------------------------------------------------------------------------------- /libs/core/async_cuda/tests/unit/saxpy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_cuda/tests/unit/saxpy.cu -------------------------------------------------------------------------------- /libs/core/async_local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_local/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/async_local/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_local/docs/index.rst -------------------------------------------------------------------------------- /libs/core/async_mpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_mpi/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/async_mpi/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_mpi/docs/index.rst -------------------------------------------------------------------------------- /libs/core/async_mpi/src/mpi_future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_mpi/src/mpi_future.cpp -------------------------------------------------------------------------------- /libs/core/async_mpi/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_mpi/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/async_sycl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_sycl/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/async_sycl/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_sycl/docs/index.rst -------------------------------------------------------------------------------- /libs/core/async_sycl/src/sycl_future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/async_sycl/src/sycl_future.cpp -------------------------------------------------------------------------------- /libs/core/cache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/cache/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/cache/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/cache/docs/index.rst -------------------------------------------------------------------------------- /libs/core/cache/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/cache/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/cache/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/cache/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/compute_local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/compute_local/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/compute_local/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/compute_local/docs/index.rst -------------------------------------------------------------------------------- /libs/core/concepts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/concepts/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/concepts/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/concepts/docs/index.rst -------------------------------------------------------------------------------- /libs/core/concepts/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/concepts/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/concurrency/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/concurrency/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/concurrency/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/concurrency/docs/index.rst -------------------------------------------------------------------------------- /libs/core/concurrency/src/barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/concurrency/src/barrier.cpp -------------------------------------------------------------------------------- /libs/core/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/config/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/config/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/config/docs/index.rst -------------------------------------------------------------------------------- /libs/core/config/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/config/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/config/include/hpx/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/config/include/hpx/config.hpp -------------------------------------------------------------------------------- /libs/core/config/src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/config/src/version.cpp -------------------------------------------------------------------------------- /libs/core/config/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/config/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/config_registry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/config_registry/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/config_registry/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/config_registry/docs/index.rst -------------------------------------------------------------------------------- /libs/core/contracts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/contracts/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/contracts/README.md -------------------------------------------------------------------------------- /libs/core/contracts/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/contracts/docs/index.rst -------------------------------------------------------------------------------- /libs/core/contracts/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/contracts/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/coroutines/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/coroutines/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/coroutines/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/coroutines/docs/index.rst -------------------------------------------------------------------------------- /libs/core/coroutines/src/detail/tss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/coroutines/src/detail/tss.cpp -------------------------------------------------------------------------------- /libs/core/coroutines/src/swapcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/coroutines/src/swapcontext.cpp -------------------------------------------------------------------------------- /libs/core/coroutines/src/swapcontext.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/coroutines/src/swapcontext.s -------------------------------------------------------------------------------- /libs/core/coroutines/src/swapcontext64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/coroutines/src/swapcontext64.s -------------------------------------------------------------------------------- /libs/core/datastructures/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/datastructures/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/datastructures/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/datastructures/docs/index.rst -------------------------------------------------------------------------------- /libs/core/debugging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/debugging/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/debugging/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/debugging/docs/index.rst -------------------------------------------------------------------------------- /libs/core/debugging/src/backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/debugging/src/backtrace.cpp -------------------------------------------------------------------------------- /libs/core/debugging/src/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/debugging/src/print.cpp -------------------------------------------------------------------------------- /libs/core/debugging/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/debugging/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/debugging/tests/unit/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/debugging/tests/unit/print.cpp -------------------------------------------------------------------------------- /libs/core/errors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/errors/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/errors/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/errors/docs/index.rst -------------------------------------------------------------------------------- /libs/core/errors/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/errors/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/errors/src/error_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/errors/src/error_code.cpp -------------------------------------------------------------------------------- /libs/core/errors/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/errors/src/exception.cpp -------------------------------------------------------------------------------- /libs/core/errors/src/exception_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/errors/src/exception_list.cpp -------------------------------------------------------------------------------- /libs/core/errors/src/throw_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/errors/src/throw_exception.cpp -------------------------------------------------------------------------------- /libs/core/errors/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/errors/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/execution/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/execution/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/execution/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/execution/docs/index.rst -------------------------------------------------------------------------------- /libs/core/execution/src/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/execution/src/run_loop.cpp -------------------------------------------------------------------------------- /libs/core/execution/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/execution/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/execution_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/execution_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/execution_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/execution_base/docs/index.rst -------------------------------------------------------------------------------- /libs/core/executors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/executors/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/executors/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/executors/docs/index.rst -------------------------------------------------------------------------------- /libs/core/executors/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/executors/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/filesystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/filesystem/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/filesystem/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/filesystem/docs/index.rst -------------------------------------------------------------------------------- /libs/core/format/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/format/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/format/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/format/docs/index.rst -------------------------------------------------------------------------------- /libs/core/format/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/format/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/format/include/hpx/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/format/include/hpx/format.hpp -------------------------------------------------------------------------------- /libs/core/format/src/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/format/src/format.cpp -------------------------------------------------------------------------------- /libs/core/format/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/format/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/format/tests/unit/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/format/tests/unit/format.cpp -------------------------------------------------------------------------------- /libs/core/functional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/functional/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/functional/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/functional/docs/index.rst -------------------------------------------------------------------------------- /libs/core/futures/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/futures/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/futures/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/futures/docs/index.rst -------------------------------------------------------------------------------- /libs/core/futures/src/future_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/futures/src/future_data.cpp -------------------------------------------------------------------------------- /libs/core/futures/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/futures/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/futures/tests/unit/await.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/futures/tests/unit/await.cpp -------------------------------------------------------------------------------- /libs/core/futures/tests/unit/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/futures/tests/unit/future.cpp -------------------------------------------------------------------------------- /libs/core/gasnet_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/gasnet_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/hardware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/hardware/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/hardware/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/hardware/docs/index.rst -------------------------------------------------------------------------------- /libs/core/hardware/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/hardware/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/hashing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/hashing/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/hashing/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/hashing/docs/index.rst -------------------------------------------------------------------------------- /libs/core/hashing/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/hashing/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/include_local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/include_local/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/include_local/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/include_local/docs/index.rst -------------------------------------------------------------------------------- /libs/core/ini/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/ini/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/ini/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/ini/docs/index.rst -------------------------------------------------------------------------------- /libs/core/ini/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/ini/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/ini/include/hpx/ini/ini.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/ini/include/hpx/ini/ini.hpp -------------------------------------------------------------------------------- /libs/core/ini/src/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/ini/src/ini.cpp -------------------------------------------------------------------------------- /libs/core/ini/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/ini/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/ini/tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/ini/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/io_service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/io_service/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/io_service/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/io_service/docs/index.rst -------------------------------------------------------------------------------- /libs/core/itt_notify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/itt_notify/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/itt_notify/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/itt_notify/docs/index.rst -------------------------------------------------------------------------------- /libs/core/itt_notify/src/itt_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/itt_notify/src/itt_notify.cpp -------------------------------------------------------------------------------- /libs/core/itt_notify/src/thread_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/itt_notify/src/thread_name.cpp -------------------------------------------------------------------------------- /libs/core/lci_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/lci_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/lci_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/lci_base/docs/index.rst -------------------------------------------------------------------------------- /libs/core/lci_base/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/lci_base/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/lcos_local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/lcos_local/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/lcos_local/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/lcos_local/docs/index.rst -------------------------------------------------------------------------------- /libs/core/logging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/logging/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/logging/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/logging/docs/index.rst -------------------------------------------------------------------------------- /libs/core/logging/src/level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/logging/src/level.cpp -------------------------------------------------------------------------------- /libs/core/logging/src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/logging/src/logging.cpp -------------------------------------------------------------------------------- /libs/core/logging/src/manipulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/logging/src/manipulator.cpp -------------------------------------------------------------------------------- /libs/core/logging/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/logging/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/memory/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/memory/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/memory/docs/index.rst -------------------------------------------------------------------------------- /libs/core/memory/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/memory/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/memory/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/memory/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/memory/tests/unit/ip_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/memory/tests/unit/ip_hash.cpp -------------------------------------------------------------------------------- /libs/core/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/modules.rst -------------------------------------------------------------------------------- /libs/core/mpi_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/mpi_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/mpi_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/mpi_base/docs/index.rst -------------------------------------------------------------------------------- /libs/core/mpi_base/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/mpi_base/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/pack_traversal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/pack_traversal/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/pack_traversal/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/pack_traversal/docs/index.rst -------------------------------------------------------------------------------- /libs/core/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/plugin/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/plugin/docs/index.rst -------------------------------------------------------------------------------- /libs/core/plugin/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/plugin/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/prefix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/prefix/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/prefix/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/prefix/docs/index.rst -------------------------------------------------------------------------------- /libs/core/prefix/src/find_prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/prefix/src/find_prefix.cpp -------------------------------------------------------------------------------- /libs/core/prefix/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/prefix/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/preprocessor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/preprocessor/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/preprocessor/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/preprocessor/docs/index.rst -------------------------------------------------------------------------------- /libs/core/program_options/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/program_options/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/program_options/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/program_options/docs/index.rst -------------------------------------------------------------------------------- /libs/core/program_options/examples/response_file.rsp: -------------------------------------------------------------------------------- 1 | -I bar 2 | -I biz 3 | --magic 10 4 | -------------------------------------------------------------------------------- /libs/core/program_options/src/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/program_options/src/errors.cpp -------------------------------------------------------------------------------- /libs/core/program_options/src/split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/program_options/src/split.cpp -------------------------------------------------------------------------------- /libs/core/properties/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/properties/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/properties/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/properties/docs/index.rst -------------------------------------------------------------------------------- /libs/core/resiliency/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/resiliency/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/resiliency/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/resiliency/docs/index.rst -------------------------------------------------------------------------------- /libs/core/resiliency/src/resiliency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/resiliency/src/resiliency.cpp -------------------------------------------------------------------------------- /libs/core/resiliency/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/resiliency/src/util.cpp -------------------------------------------------------------------------------- /libs/core/runtime_local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/runtime_local/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/runtime_local/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/runtime_local/docs/index.rst -------------------------------------------------------------------------------- /libs/core/runtime_local/src/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/runtime_local/src/state.cpp -------------------------------------------------------------------------------- /libs/core/schedulers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/schedulers/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/schedulers/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/schedulers/docs/index.rst -------------------------------------------------------------------------------- /libs/core/serialization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/serialization/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/serialization/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/serialization/docs/index.rst -------------------------------------------------------------------------------- /libs/core/static_reinit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/static_reinit/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/static_reinit/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/static_reinit/docs/index.rst -------------------------------------------------------------------------------- /libs/core/string_util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/string_util/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/string_util/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/string_util/docs/index.rst -------------------------------------------------------------------------------- /libs/core/synchronization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/synchronization/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/synchronization/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/synchronization/docs/index.rst -------------------------------------------------------------------------------- /libs/core/synchronization/src/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/synchronization/src/mutex.cpp -------------------------------------------------------------------------------- /libs/core/tag_invoke/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/tag_invoke/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/tag_invoke/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/tag_invoke/docs/index.rst -------------------------------------------------------------------------------- /libs/core/testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/testing/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/testing/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/testing/docs/index.rst -------------------------------------------------------------------------------- /libs/core/testing/src/performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/testing/src/performance.cpp -------------------------------------------------------------------------------- /libs/core/testing/src/testing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/testing/src/testing.cpp -------------------------------------------------------------------------------- /libs/core/testing/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/testing/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/thread_pools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thread_pools/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/thread_pools/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thread_pools/docs/index.rst -------------------------------------------------------------------------------- /libs/core/thread_support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thread_support/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/thread_support/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thread_support/docs/index.rst -------------------------------------------------------------------------------- /libs/core/threading/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threading/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/threading/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threading/docs/index.rst -------------------------------------------------------------------------------- /libs/core/threading/src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threading/src/thread.cpp -------------------------------------------------------------------------------- /libs/core/threading/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threading/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/threading/tests/unit/tss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threading/tests/unit/tss.cpp -------------------------------------------------------------------------------- /libs/core/threading_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threading_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/threading_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threading_base/docs/index.rst -------------------------------------------------------------------------------- /libs/core/threading_base/src/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threading_base/src/print.cpp -------------------------------------------------------------------------------- /libs/core/threadmanager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threadmanager/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/threadmanager/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/threadmanager/docs/index.rst -------------------------------------------------------------------------------- /libs/core/thrust/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thrust/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/thrust/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thrust/docs/index.rst -------------------------------------------------------------------------------- /libs/core/thrust/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thrust/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/thrust/examples/device_copy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thrust/examples/device_copy.cu -------------------------------------------------------------------------------- /libs/core/thrust/examples/device_fill.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thrust/examples/device_fill.cu -------------------------------------------------------------------------------- /libs/core/thrust/examples/host_fill.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thrust/examples/host_fill.cu -------------------------------------------------------------------------------- /libs/core/thrust/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/thrust/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/timed_execution/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/timed_execution/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/timed_execution/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/timed_execution/docs/index.rst -------------------------------------------------------------------------------- /libs/core/timing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/timing/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/timing/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/timing/docs/index.rst -------------------------------------------------------------------------------- /libs/core/timing/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/timing/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/timing/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/timing/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/topology/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/topology/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/topology/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/topology/docs/index.rst -------------------------------------------------------------------------------- /libs/core/topology/src/cpu_mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/topology/src/cpu_mask.cpp -------------------------------------------------------------------------------- /libs/core/topology/src/topology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/topology/src/topology.cpp -------------------------------------------------------------------------------- /libs/core/topology/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/topology/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/type_support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/type_support/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/type_support/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/type_support/docs/index.rst -------------------------------------------------------------------------------- /libs/core/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/util/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/docs/index.rst -------------------------------------------------------------------------------- /libs/core/util/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/util/include/hpx/util/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/include/hpx/util/max.hpp -------------------------------------------------------------------------------- /libs/core/util/include/hpx/util/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/include/hpx/util/min.hpp -------------------------------------------------------------------------------- /libs/core/util/src/manage_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/src/manage_config.cpp -------------------------------------------------------------------------------- /libs/core/util/src/sed_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/src/sed_transform.cpp -------------------------------------------------------------------------------- /libs/core/util/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/util/tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/util/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/version/CMakeLists.txt -------------------------------------------------------------------------------- /libs/core/version/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/version/docs/index.rst -------------------------------------------------------------------------------- /libs/core/version/src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/version/src/version.cpp -------------------------------------------------------------------------------- /libs/core/version/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/core/version/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/create_module_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/create_module_skeleton.py -------------------------------------------------------------------------------- /libs/full/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/actions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/actions/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/actions/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/actions/docs/index.rst -------------------------------------------------------------------------------- /libs/full/actions/src/base_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/actions/src/base_action.cpp -------------------------------------------------------------------------------- /libs/full/actions/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/actions/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/actions_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/actions_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/actions_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/actions_base/docs/index.rst -------------------------------------------------------------------------------- /libs/full/agas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/agas/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas/docs/index.rst -------------------------------------------------------------------------------- /libs/full/agas/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/agas/src/detail/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas/src/detail/interface.cpp -------------------------------------------------------------------------------- /libs/full/agas/src/route.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas/src/route.cpp -------------------------------------------------------------------------------- /libs/full/agas/src/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas/src/state.cpp -------------------------------------------------------------------------------- /libs/full/agas/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/agas/tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/agas_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/agas_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas_base/docs/index.rst -------------------------------------------------------------------------------- /libs/full/agas_base/src/gva.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas_base/src/gva.cpp -------------------------------------------------------------------------------- /libs/full/agas_base/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/agas_base/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/async_colocated/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/async_colocated/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/async_colocated/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/async_colocated/docs/index.rst -------------------------------------------------------------------------------- /libs/full/checkpoint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/checkpoint/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/checkpoint/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/checkpoint/docs/index.rst -------------------------------------------------------------------------------- /libs/full/checkpoint_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/checkpoint_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/checkpoint_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/checkpoint_base/docs/index.rst -------------------------------------------------------------------------------- /libs/full/collectives/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/collectives/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/collectives/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/collectives/docs/index.rst -------------------------------------------------------------------------------- /libs/full/collectives/src/barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/collectives/src/barrier.cpp -------------------------------------------------------------------------------- /libs/full/collectives/src/gather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/collectives/src/gather.cpp -------------------------------------------------------------------------------- /libs/full/collectives/src/latch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/collectives/src/latch.cpp -------------------------------------------------------------------------------- /libs/full/collectives/src/reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/collectives/src/reduce.cpp -------------------------------------------------------------------------------- /libs/full/collectives/src/scatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/collectives/src/scatter.cpp -------------------------------------------------------------------------------- /libs/full/components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/components/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/components/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/components/docs/index.rst -------------------------------------------------------------------------------- /libs/full/compute/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/compute/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/compute/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/compute/docs/index.rst -------------------------------------------------------------------------------- /libs/full/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/include/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/include/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/include/docs/index.rst -------------------------------------------------------------------------------- /libs/full/include/include/hpx/hpx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/include/include/hpx/hpx.hpp -------------------------------------------------------------------------------- /libs/full/init_runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/init_runtime/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/init_runtime/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/init_runtime/docs/index.rst -------------------------------------------------------------------------------- /libs/full/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/modules.rst -------------------------------------------------------------------------------- /libs/full/naming/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/naming/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/naming/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/naming/docs/index.rst -------------------------------------------------------------------------------- /libs/full/naming/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/naming/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/naming_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/naming_base/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/naming_base/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/naming_base/docs/index.rst -------------------------------------------------------------------------------- /libs/full/naming_base/src/address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/naming_base/src/address.cpp -------------------------------------------------------------------------------- /libs/full/naming_base/src/id_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/naming_base/src/id_type.cpp -------------------------------------------------------------------------------- /libs/full/parcelports/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/parcelports/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/parcelset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/parcelset/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/parcelset/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/parcelset/docs/index.rst -------------------------------------------------------------------------------- /libs/full/parcelset/src/parcel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/parcelset/src/parcel.cpp -------------------------------------------------------------------------------- /libs/full/statistics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/statistics/CMakeLists.txt -------------------------------------------------------------------------------- /libs/full/statistics/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/full/statistics/docs/index.rst -------------------------------------------------------------------------------- /libs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/index.rst -------------------------------------------------------------------------------- /libs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/overview.rst -------------------------------------------------------------------------------- /libs/src/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/src/dummy.cpp -------------------------------------------------------------------------------- /libs/src/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/libs/src/empty.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/performance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/performance/CMakeLists.txt -------------------------------------------------------------------------------- /tests/performance/local/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/performance/local/sizeof.cpp -------------------------------------------------------------------------------- /tests/performance/local/skynet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/performance/local/skynet.cpp -------------------------------------------------------------------------------- /tests/performance/local/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/performance/local/stream.cpp -------------------------------------------------------------------------------- /tests/regressions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/regressions/CMakeLists.txt -------------------------------------------------------------------------------- /tests/regressions/lcos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/regressions/lcos/CMakeLists.txt -------------------------------------------------------------------------------- /tests/regressions/lcos/after_588.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/regressions/lcos/after_588.cpp -------------------------------------------------------------------------------- /tests/regressions/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/regressions/util/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/apex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/unit/apex/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/apex/annotation_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/unit/apex/annotation_check.cpp -------------------------------------------------------------------------------- /tests/unit/apex/apex_action_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/unit/apex/apex_action_count.cpp -------------------------------------------------------------------------------- /tests/unit/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/unit/build/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/init/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/unit/init/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/init/auto_wrap_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/unit/init/auto_wrap_main.cpp -------------------------------------------------------------------------------- /tests/unit/init/manage_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tests/unit/init/manage_runtime.cpp -------------------------------------------------------------------------------- /tools/.codespell_whitelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/.codespell_whitelist -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/VS/backtrace.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/backtrace.natvis -------------------------------------------------------------------------------- /tools/VS/client_base.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/client_base.natvis -------------------------------------------------------------------------------- /tools/VS/future.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/future.natvis -------------------------------------------------------------------------------- /tools/VS/gid_type.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/gid_type.natvis -------------------------------------------------------------------------------- /tools/VS/intrusive_ptr.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/intrusive_ptr.natvis -------------------------------------------------------------------------------- /tools/VS/thread_data.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/thread_data.natvis -------------------------------------------------------------------------------- /tools/VS/thread_description.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/thread_description.natvis -------------------------------------------------------------------------------- /tools/VS/thread_id.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/thread_id.natvis -------------------------------------------------------------------------------- /tools/VS/thread_state.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/thread_state.natvis -------------------------------------------------------------------------------- /tools/VS/tuple.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/VS/tuple.natvis -------------------------------------------------------------------------------- /tools/add_compat_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/add_compat_headers.sh -------------------------------------------------------------------------------- /tools/asan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/asan.supp -------------------------------------------------------------------------------- /tools/build_boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/build_boost.sh -------------------------------------------------------------------------------- /tools/change_includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/change_includes.sh -------------------------------------------------------------------------------- /tools/check_module_cmakelists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/check_module_cmakelists.sh -------------------------------------------------------------------------------- /tools/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/docker/Dockerfile -------------------------------------------------------------------------------- /tools/gdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/gdb/README.md -------------------------------------------------------------------------------- /tools/gdb/hpx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/gdb/hpx.py -------------------------------------------------------------------------------- /tools/generate_issue_pr_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/generate_issue_pr_list.sh -------------------------------------------------------------------------------- /tools/hpxdep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/hpxdep/CMakeLists.txt -------------------------------------------------------------------------------- /tools/hpxdep/hpxdep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/hpxdep/hpxdep.cpp -------------------------------------------------------------------------------- /tools/hpxdep/report.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/hpxdep/report.bat -------------------------------------------------------------------------------- /tools/inspect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/CMakeLists.txt -------------------------------------------------------------------------------- /tools/inspect/apple_macro_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/apple_macro_check.cpp -------------------------------------------------------------------------------- /tools/inspect/apple_macro_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/apple_macro_check.hpp -------------------------------------------------------------------------------- /tools/inspect/ascii_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/ascii_check.cpp -------------------------------------------------------------------------------- /tools/inspect/ascii_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/ascii_check.hpp -------------------------------------------------------------------------------- /tools/inspect/assert_macro_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/assert_macro_check.cpp -------------------------------------------------------------------------------- /tools/inspect/assert_macro_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/assert_macro_check.hpp -------------------------------------------------------------------------------- /tools/inspect/copyright_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/copyright_check.cpp -------------------------------------------------------------------------------- /tools/inspect/copyright_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/copyright_check.hpp -------------------------------------------------------------------------------- /tools/inspect/crlf_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/crlf_check.cpp -------------------------------------------------------------------------------- /tools/inspect/crlf_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/crlf_check.hpp -------------------------------------------------------------------------------- /tools/inspect/doc/inspect.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/doc/inspect.qbk -------------------------------------------------------------------------------- /tools/inspect/end_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/end_check.cpp -------------------------------------------------------------------------------- /tools/inspect/end_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/end_check.hpp -------------------------------------------------------------------------------- /tools/inspect/function_hyper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/function_hyper.hpp -------------------------------------------------------------------------------- /tools/inspect/hpx-no-inspect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/hpx-no-inspect -------------------------------------------------------------------------------- /tools/inspect/include_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/include_check.cpp -------------------------------------------------------------------------------- /tools/inspect/include_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/include_check.hpp -------------------------------------------------------------------------------- /tools/inspect/inspect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/inspect.cpp -------------------------------------------------------------------------------- /tools/inspect/inspect_to_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/inspect_to_junit.py -------------------------------------------------------------------------------- /tools/inspect/inspector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/inspector.hpp -------------------------------------------------------------------------------- /tools/inspect/length_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/length_check.cpp -------------------------------------------------------------------------------- /tools/inspect/length_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/length_check.hpp -------------------------------------------------------------------------------- /tools/inspect/license_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/license_check.cpp -------------------------------------------------------------------------------- /tools/inspect/license_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/license_check.hpp -------------------------------------------------------------------------------- /tools/inspect/link_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/link_check.cpp -------------------------------------------------------------------------------- /tools/inspect/link_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/link_check.hpp -------------------------------------------------------------------------------- /tools/inspect/minmax_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/minmax_check.cpp -------------------------------------------------------------------------------- /tools/inspect/minmax_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/minmax_check.hpp -------------------------------------------------------------------------------- /tools/inspect/path_name_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/path_name_check.cpp -------------------------------------------------------------------------------- /tools/inspect/path_name_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/path_name_check.hpp -------------------------------------------------------------------------------- /tools/inspect/pragma_once_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/pragma_once_check.cpp -------------------------------------------------------------------------------- /tools/inspect/pragma_once_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/pragma_once_check.hpp -------------------------------------------------------------------------------- /tools/inspect/spdx_license_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/spdx_license_check.cpp -------------------------------------------------------------------------------- /tools/inspect/spdx_license_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/spdx_license_check.hpp -------------------------------------------------------------------------------- /tools/inspect/tab_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/tab_check.cpp -------------------------------------------------------------------------------- /tools/inspect/tab_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/tab_check.hpp -------------------------------------------------------------------------------- /tools/inspect/time_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/time_string.hpp -------------------------------------------------------------------------------- /tools/inspect/windows_macro_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/windows_macro_check.cpp -------------------------------------------------------------------------------- /tools/inspect/windows_macro_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/inspect/windows_macro_check.hpp -------------------------------------------------------------------------------- /tools/perftests_ci/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/CMakeLists.txt -------------------------------------------------------------------------------- /tools/perftests_ci/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/build/__init__.py -------------------------------------------------------------------------------- /tools/perftests_ci/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/driver.py -------------------------------------------------------------------------------- /tools/perftests_ci/local_run-lsu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/local_run-lsu.sh -------------------------------------------------------------------------------- /tools/perftests_ci/local_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/local_run.sh -------------------------------------------------------------------------------- /tools/perftests_ci/perftest/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/perftest/html.py -------------------------------------------------------------------------------- /tools/perftests_ci/perftest/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/perftest/plot.py -------------------------------------------------------------------------------- /tools/perftests_ci/pyutils/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/pyutils/args.py -------------------------------------------------------------------------------- /tools/perftests_ci/pyutils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/pyutils/env.py -------------------------------------------------------------------------------- /tools/perftests_ci/pyutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/pyutils/log.py -------------------------------------------------------------------------------- /tools/perftests_ci/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | python-dateutil 4 | lxml 5 | # hpx-no-inspect 6 | -------------------------------------------------------------------------------- /tools/perftests_ci/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/perftests_ci/test/__init__.py -------------------------------------------------------------------------------- /tools/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/pre-commit -------------------------------------------------------------------------------- /tools/roll_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/roll_release.sh -------------------------------------------------------------------------------- /tools/ubsan.supp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/valgrind/memcheck.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/valgrind/memcheck.supp -------------------------------------------------------------------------------- /tools/vim/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/vim/.ycm_extra_conf.py -------------------------------------------------------------------------------- /tools/vim/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/tools/vim/Readme -------------------------------------------------------------------------------- /wrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/wrap/CMakeLists.txt -------------------------------------------------------------------------------- /wrap/include/hpx/hpx_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/wrap/include/hpx/hpx_main.hpp -------------------------------------------------------------------------------- /wrap/include/hpx/wrap_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/wrap/include/hpx/wrap_main.hpp -------------------------------------------------------------------------------- /wrap/src/hpx_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/wrap/src/hpx_main.cpp -------------------------------------------------------------------------------- /wrap/src/hpx_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STEllAR-GROUP/hpx/HEAD/wrap/src/hpx_wrap.cpp --------------------------------------------------------------------------------