├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── RcppParallel-package.R ├── aaa.R ├── flags.R ├── options.R ├── platform.R ├── plugin.R ├── skeleton.R ├── tbb-autodetected.R.in ├── tbb.R ├── utils.R └── zzz.R ├── README.md ├── RcppParallel.Rproj ├── cleanup ├── cleanup.win ├── configure ├── configure.win ├── doc └── rtools_tbb_notes.md ├── inst ├── .gitignore ├── include │ ├── .gitignore │ ├── RcppParallel.h │ ├── RcppParallel │ │ ├── Backend.h │ │ ├── Common.h │ │ ├── RMatrix.h │ │ ├── RVector.h │ │ ├── TBB.h │ │ ├── Timer.h │ │ └── TinyThread.h │ └── tthread │ │ ├── fast_mutex.h │ │ ├── tinythread.h │ │ └── tinythread.inl ├── presentations │ ├── .gitignore │ ├── header.tex │ ├── images │ │ └── big-data-big-machine-tweet.png │ └── rcpp_parallel_talk_jan2015.Rmd ├── rstudio │ └── templates │ │ └── project │ │ └── RcppParallel.package.skeleton.dcf ├── skeleton │ ├── vector-sum.Rd │ └── vector-sum.cpp └── tests │ ├── cpp │ ├── distance.cpp │ ├── innerproduct.cpp │ ├── sum.cpp │ ├── transform.cpp │ └── truefalse_macros.cpp │ ├── runit.distance.R │ ├── runit.innerproduct.R │ ├── runit.sum.R │ ├── runit.transform.R │ └── runit.truefalse_macros.R ├── man ├── RcppParallel-package.Rd ├── RcppParallel.package.skeleton.Rd ├── flags.Rd ├── setThreadOptions.Rd └── tbbLibraryPath.Rd ├── patches └── windows_arm64.diff ├── src ├── .gitignore ├── Makevars.in ├── init.cpp ├── install.libs.R ├── options.cpp ├── tbb-compat │ └── tbb-compat.cpp ├── tbb.cpp └── tbb │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── INSTALL.md │ ├── LICENSE.txt │ ├── README.md │ ├── RELEASE_NOTES.md │ ├── SECURITY.md │ ├── SUPPORT.md │ ├── SYSTEM_REQUIREMENTS.md │ ├── WASM_Support.md │ ├── cmake │ ├── README.md │ ├── android │ │ ├── device_environment_cleanup.cmake │ │ ├── environment.cmake │ │ └── test_launcher.cmake │ ├── compilers │ │ ├── AppleClang.cmake │ │ ├── Clang.cmake │ │ ├── GNU.cmake │ │ ├── Intel.cmake │ │ ├── IntelLLVM.cmake │ │ ├── MSVC.cmake │ │ └── QCC.cmake │ ├── config_generation.cmake │ ├── hwloc_detection.cmake │ ├── memcheck.cmake │ ├── packaging.cmake │ ├── post_install │ │ └── CMakeLists.txt │ ├── python │ │ └── test_launcher.cmake │ ├── resumable_tasks.cmake │ ├── sanitize.cmake │ ├── scripts │ │ └── cmake_gen_github_configs.cmake │ ├── suppressions │ │ ├── lsan.suppressions │ │ └── tsan.suppressions │ ├── templates │ │ ├── TBBConfig.cmake.in │ │ └── TBBConfigVersion.cmake.in │ ├── test_spec.cmake │ ├── toolchains │ │ ├── mips.cmake │ │ └── riscv64.cmake │ ├── utils.cmake │ └── vars_utils.cmake │ ├── include │ ├── oneapi │ │ ├── tbb.h │ │ └── tbb │ │ │ ├── blocked_range.h │ │ │ ├── blocked_range2d.h │ │ │ ├── blocked_range3d.h │ │ │ ├── blocked_rangeNd.h │ │ │ ├── cache_aligned_allocator.h │ │ │ ├── collaborative_call_once.h │ │ │ ├── combinable.h │ │ │ ├── concurrent_hash_map.h │ │ │ ├── concurrent_lru_cache.h │ │ │ ├── concurrent_map.h │ │ │ ├── concurrent_priority_queue.h │ │ │ ├── concurrent_queue.h │ │ │ ├── concurrent_set.h │ │ │ ├── concurrent_unordered_map.h │ │ │ ├── concurrent_unordered_set.h │ │ │ ├── concurrent_vector.h │ │ │ ├── detail │ │ │ ├── _aggregator.h │ │ │ ├── _aligned_space.h │ │ │ ├── _allocator_traits.h │ │ │ ├── _assert.h │ │ │ ├── _attach.h │ │ │ ├── _concurrent_queue_base.h │ │ │ ├── _concurrent_skip_list.h │ │ │ ├── _concurrent_unordered_base.h │ │ │ ├── _config.h │ │ │ ├── _containers_helpers.h │ │ │ ├── _exception.h │ │ │ ├── _export.h │ │ │ ├── _flow_graph_body_impl.h │ │ │ ├── _flow_graph_cache_impl.h │ │ │ ├── _flow_graph_impl.h │ │ │ ├── _flow_graph_indexer_impl.h │ │ │ ├── _flow_graph_item_buffer_impl.h │ │ │ ├── _flow_graph_join_impl.h │ │ │ ├── _flow_graph_node_impl.h │ │ │ ├── _flow_graph_node_set_impl.h │ │ │ ├── _flow_graph_nodes_deduction.h │ │ │ ├── _flow_graph_tagged_buffer_impl.h │ │ │ ├── _flow_graph_trace_impl.h │ │ │ ├── _flow_graph_types_impl.h │ │ │ ├── _hash_compare.h │ │ │ ├── _intrusive_list_node.h │ │ │ ├── _machine.h │ │ │ ├── _mutex_common.h │ │ │ ├── _namespace_injection.h │ │ │ ├── _node_handle.h │ │ │ ├── _pipeline_filters.h │ │ │ ├── _pipeline_filters_deduction.h │ │ │ ├── _range_common.h │ │ │ ├── _rtm_mutex.h │ │ │ ├── _rtm_rw_mutex.h │ │ │ ├── _scoped_lock.h │ │ │ ├── _segment_table.h │ │ │ ├── _small_object_pool.h │ │ │ ├── _string_resource.h │ │ │ ├── _task.h │ │ │ ├── _task_handle.h │ │ │ ├── _template_helpers.h │ │ │ ├── _utils.h │ │ │ └── _waitable_atomic.h │ │ │ ├── enumerable_thread_specific.h │ │ │ ├── flow_graph.h │ │ │ ├── flow_graph_abstractions.h │ │ │ ├── global_control.h │ │ │ ├── info.h │ │ │ ├── memory_pool.h │ │ │ ├── mutex.h │ │ │ ├── null_mutex.h │ │ │ ├── null_rw_mutex.h │ │ │ ├── parallel_for.h │ │ │ ├── parallel_for_each.h │ │ │ ├── parallel_invoke.h │ │ │ ├── parallel_pipeline.h │ │ │ ├── parallel_reduce.h │ │ │ ├── parallel_scan.h │ │ │ ├── parallel_sort.h │ │ │ ├── partitioner.h │ │ │ ├── profiling.h │ │ │ ├── queuing_mutex.h │ │ │ ├── queuing_rw_mutex.h │ │ │ ├── rw_mutex.h │ │ │ ├── scalable_allocator.h │ │ │ ├── spin_mutex.h │ │ │ ├── spin_rw_mutex.h │ │ │ ├── task.h │ │ │ ├── task_arena.h │ │ │ ├── task_group.h │ │ │ ├── task_scheduler_observer.h │ │ │ ├── tbb_allocator.h │ │ │ ├── tbbmalloc_proxy.h │ │ │ ├── tick_count.h │ │ │ └── version.h │ └── tbb │ │ ├── blocked_range.h │ │ ├── blocked_range2d.h │ │ ├── blocked_range3d.h │ │ ├── blocked_rangeNd.h │ │ ├── cache_aligned_allocator.h │ │ ├── collaborative_call_once.h │ │ ├── combinable.h │ │ ├── concurrent_hash_map.h │ │ ├── concurrent_lru_cache.h │ │ ├── concurrent_map.h │ │ ├── concurrent_priority_queue.h │ │ ├── concurrent_queue.h │ │ ├── concurrent_set.h │ │ ├── concurrent_unordered_map.h │ │ ├── concurrent_unordered_set.h │ │ ├── concurrent_vector.h │ │ ├── enumerable_thread_specific.h │ │ ├── flow_graph.h │ │ ├── flow_graph_abstractions.h │ │ ├── global_control.h │ │ ├── info.h │ │ ├── memory_pool.h │ │ ├── mutex.h │ │ ├── null_mutex.h │ │ ├── null_rw_mutex.h │ │ ├── parallel_for.h │ │ ├── parallel_for_each.h │ │ ├── parallel_invoke.h │ │ ├── parallel_pipeline.h │ │ ├── parallel_reduce.h │ │ ├── parallel_scan.h │ │ ├── parallel_sort.h │ │ ├── partitioner.h │ │ ├── profiling.h │ │ ├── queuing_mutex.h │ │ ├── queuing_rw_mutex.h │ │ ├── rw_mutex.h │ │ ├── scalable_allocator.h │ │ ├── spin_mutex.h │ │ ├── spin_rw_mutex.h │ │ ├── task.h │ │ ├── task_arena.h │ │ ├── task_group.h │ │ ├── task_scheduler_observer.h │ │ ├── tbb.h │ │ ├── tbb_allocator.h │ │ ├── tbbmalloc_proxy.h │ │ ├── tick_count.h │ │ └── version.h │ ├── integration │ ├── cmake │ │ └── generate_vars.cmake │ ├── linux │ │ ├── env │ │ │ ├── vars.sh │ │ │ └── vars.sh.in │ │ ├── modulefiles │ │ │ ├── tbb │ │ │ └── tbb32 │ │ ├── oneapi │ │ │ └── vars.sh │ │ └── sys_check │ │ │ └── sys_check.sh │ ├── mac │ │ └── env │ │ │ ├── vars.sh │ │ │ └── vars.sh.in │ ├── pkg-config │ │ └── tbb.pc.in │ └── windows │ │ ├── env │ │ ├── vars.bat │ │ └── vars.bat.in │ │ ├── nuget │ │ ├── inteltbb.devel.win.targets │ │ └── inteltbb.redist.win.targets │ │ ├── oneapi │ │ └── vars.bat │ │ └── sys_check │ │ └── sys_check.bat │ ├── src │ ├── tbb │ │ ├── CMakeLists.txt │ │ ├── address_waiter.cpp │ │ ├── allocator.cpp │ │ ├── arena.cpp │ │ ├── arena.h │ │ ├── arena_slot.cpp │ │ ├── arena_slot.h │ │ ├── assert_impl.h │ │ ├── cancellation_disseminator.h │ │ ├── co_context.h │ │ ├── concurrent_bounded_queue.cpp │ │ ├── concurrent_monitor.h │ │ ├── concurrent_monitor_mutex.h │ │ ├── def │ │ │ ├── lin32-tbb.def │ │ │ ├── lin64-tbb.def │ │ │ ├── mac64-tbb.def │ │ │ ├── win32-tbb.def │ │ │ └── win64-tbb.def │ │ ├── dynamic_link.cpp │ │ ├── dynamic_link.h │ │ ├── environment.h │ │ ├── exception.cpp │ │ ├── global_control.cpp │ │ ├── governor.cpp │ │ ├── governor.h │ │ ├── intrusive_list.h │ │ ├── itt_notify.cpp │ │ ├── itt_notify.h │ │ ├── mailbox.h │ │ ├── main.cpp │ │ ├── main.h │ │ ├── market.cpp │ │ ├── market.h │ │ ├── market_concurrent_monitor.h │ │ ├── misc.cpp │ │ ├── misc.h │ │ ├── misc_ex.cpp │ │ ├── observer_proxy.cpp │ │ ├── observer_proxy.h │ │ ├── parallel_pipeline.cpp │ │ ├── permit_manager.h │ │ ├── pm_client.h │ │ ├── private_server.cpp │ │ ├── profiling.cpp │ │ ├── queuing_rw_mutex.cpp │ │ ├── rml_base.h │ │ ├── rml_tbb.cpp │ │ ├── rml_tbb.h │ │ ├── rml_thread_monitor.h │ │ ├── rtm_mutex.cpp │ │ ├── rtm_rw_mutex.cpp │ │ ├── scheduler_common.h │ │ ├── semaphore.cpp │ │ ├── semaphore.h │ │ ├── small_object_pool.cpp │ │ ├── small_object_pool_impl.h │ │ ├── task.cpp │ │ ├── task_dispatcher.cpp │ │ ├── task_dispatcher.h │ │ ├── task_group_context.cpp │ │ ├── task_stream.h │ │ ├── tbb.rc │ │ ├── tcm.h │ │ ├── tcm_adaptor.cpp │ │ ├── tcm_adaptor.h │ │ ├── thread_control_monitor.h │ │ ├── thread_data.h │ │ ├── thread_dispatcher.cpp │ │ ├── thread_dispatcher.h │ │ ├── thread_dispatcher_client.h │ │ ├── thread_request_serializer.cpp │ │ ├── thread_request_serializer.h │ │ ├── threading_control.cpp │ │ ├── threading_control.h │ │ ├── threading_control_client.h │ │ ├── tls.h │ │ ├── tools_api │ │ │ ├── disable_warnings.h │ │ │ ├── ittnotify.h │ │ │ ├── ittnotify_config.h │ │ │ ├── ittnotify_static.c │ │ │ ├── ittnotify_static.h │ │ │ ├── ittnotify_types.h │ │ │ └── legacy │ │ │ │ └── ittnotify.h │ │ ├── version.cpp │ │ └── waiters.h │ ├── tbbbind │ │ ├── CMakeLists.txt │ │ ├── def │ │ │ ├── lin32-tbbbind.def │ │ │ ├── lin64-tbbbind.def │ │ │ ├── mac64-tbbbind.def │ │ │ ├── win32-tbbbind.def │ │ │ └── win64-tbbbind.def │ │ ├── tbb_bind.cpp │ │ └── tbb_bind.rc │ ├── tbbmalloc │ │ ├── CMakeLists.txt │ │ ├── Customize.h │ │ ├── MapMemory.h │ │ ├── Statistics.h │ │ ├── Synchronize.h │ │ ├── TypeDefinitions.h │ │ ├── backend.cpp │ │ ├── backend.h │ │ ├── backref.cpp │ │ ├── def │ │ │ ├── lin32-tbbmalloc.def │ │ │ ├── lin64-tbbmalloc.def │ │ │ ├── mac64-tbbmalloc.def │ │ │ ├── win32-tbbmalloc.def │ │ │ └── win64-tbbmalloc.def │ │ ├── frontend.cpp │ │ ├── large_objects.cpp │ │ ├── large_objects.h │ │ ├── shared_utils.h │ │ ├── tbbmalloc.cpp │ │ ├── tbbmalloc.rc │ │ ├── tbbmalloc_internal.h │ │ └── tbbmalloc_internal_api.h │ └── tbbmalloc_proxy │ │ ├── CMakeLists.txt │ │ ├── def │ │ ├── lin32-proxy.def │ │ └── lin64-proxy.def │ │ ├── function_replacement.cpp │ │ ├── function_replacement.h │ │ ├── proxy.cpp │ │ ├── proxy.h │ │ ├── proxy_overload_osx.h │ │ └── tbbmalloc_proxy.rc │ └── third-party-programs.txt ├── tests └── doRUnit.R └── tools ├── config.R ├── config ├── cleanup.R └── configure.R └── tbb ├── disable-pragmas.R ├── fix-memset.R └── update-tbb.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | Makevars text eol=lf 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppParallel-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/RcppParallel-package.R -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/flags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/flags.R -------------------------------------------------------------------------------- /R/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/options.R -------------------------------------------------------------------------------- /R/platform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/platform.R -------------------------------------------------------------------------------- /R/plugin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/plugin.R -------------------------------------------------------------------------------- /R/skeleton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/skeleton.R -------------------------------------------------------------------------------- /R/tbb-autodetected.R.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/tbb-autodetected.R.in -------------------------------------------------------------------------------- /R/tbb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/tbb.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/README.md -------------------------------------------------------------------------------- /RcppParallel.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/RcppParallel.Rproj -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/cleanup -------------------------------------------------------------------------------- /cleanup.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/cleanup.win -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/configure -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/configure.win -------------------------------------------------------------------------------- /doc/rtools_tbb_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/doc/rtools_tbb_notes.md -------------------------------------------------------------------------------- /inst/.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | libs/ 3 | -------------------------------------------------------------------------------- /inst/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/.gitignore -------------------------------------------------------------------------------- /inst/include/RcppParallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/RcppParallel.h -------------------------------------------------------------------------------- /inst/include/RcppParallel/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/RcppParallel/Backend.h -------------------------------------------------------------------------------- /inst/include/RcppParallel/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/RcppParallel/Common.h -------------------------------------------------------------------------------- /inst/include/RcppParallel/RMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/RcppParallel/RMatrix.h -------------------------------------------------------------------------------- /inst/include/RcppParallel/RVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/RcppParallel/RVector.h -------------------------------------------------------------------------------- /inst/include/RcppParallel/TBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/RcppParallel/TBB.h -------------------------------------------------------------------------------- /inst/include/RcppParallel/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/RcppParallel/Timer.h -------------------------------------------------------------------------------- /inst/include/RcppParallel/TinyThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/RcppParallel/TinyThread.h -------------------------------------------------------------------------------- /inst/include/tthread/fast_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/tthread/fast_mutex.h -------------------------------------------------------------------------------- /inst/include/tthread/tinythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/tthread/tinythread.h -------------------------------------------------------------------------------- /inst/include/tthread/tinythread.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/include/tthread/tinythread.inl -------------------------------------------------------------------------------- /inst/presentations/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | *.pdf 3 | -------------------------------------------------------------------------------- /inst/presentations/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/presentations/header.tex -------------------------------------------------------------------------------- /inst/presentations/images/big-data-big-machine-tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/presentations/images/big-data-big-machine-tweet.png -------------------------------------------------------------------------------- /inst/presentations/rcpp_parallel_talk_jan2015.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/presentations/rcpp_parallel_talk_jan2015.Rmd -------------------------------------------------------------------------------- /inst/rstudio/templates/project/RcppParallel.package.skeleton.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/rstudio/templates/project/RcppParallel.package.skeleton.dcf -------------------------------------------------------------------------------- /inst/skeleton/vector-sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/skeleton/vector-sum.Rd -------------------------------------------------------------------------------- /inst/skeleton/vector-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/skeleton/vector-sum.cpp -------------------------------------------------------------------------------- /inst/tests/cpp/distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/cpp/distance.cpp -------------------------------------------------------------------------------- /inst/tests/cpp/innerproduct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/cpp/innerproduct.cpp -------------------------------------------------------------------------------- /inst/tests/cpp/sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/cpp/sum.cpp -------------------------------------------------------------------------------- /inst/tests/cpp/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/cpp/transform.cpp -------------------------------------------------------------------------------- /inst/tests/cpp/truefalse_macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/cpp/truefalse_macros.cpp -------------------------------------------------------------------------------- /inst/tests/runit.distance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/runit.distance.R -------------------------------------------------------------------------------- /inst/tests/runit.innerproduct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/runit.innerproduct.R -------------------------------------------------------------------------------- /inst/tests/runit.sum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/runit.sum.R -------------------------------------------------------------------------------- /inst/tests/runit.transform.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/runit.transform.R -------------------------------------------------------------------------------- /inst/tests/runit.truefalse_macros.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/inst/tests/runit.truefalse_macros.R -------------------------------------------------------------------------------- /man/RcppParallel-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/man/RcppParallel-package.Rd -------------------------------------------------------------------------------- /man/RcppParallel.package.skeleton.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/man/RcppParallel.package.skeleton.Rd -------------------------------------------------------------------------------- /man/flags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/man/flags.Rd -------------------------------------------------------------------------------- /man/setThreadOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/man/setThreadOptions.Rd -------------------------------------------------------------------------------- /man/tbbLibraryPath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/man/tbbLibraryPath.Rd -------------------------------------------------------------------------------- /patches/windows_arm64.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/patches/windows_arm64.diff -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/init.cpp -------------------------------------------------------------------------------- /src/install.libs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/install.libs.R -------------------------------------------------------------------------------- /src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/options.cpp -------------------------------------------------------------------------------- /src/tbb-compat/tbb-compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb-compat/tbb-compat.cpp -------------------------------------------------------------------------------- /src/tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb.cpp -------------------------------------------------------------------------------- /src/tbb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/.gitignore -------------------------------------------------------------------------------- /src/tbb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/CMakeLists.txt -------------------------------------------------------------------------------- /src/tbb/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/CODEOWNERS -------------------------------------------------------------------------------- /src/tbb/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /src/tbb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/tbb/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/INSTALL.md -------------------------------------------------------------------------------- /src/tbb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/LICENSE.txt -------------------------------------------------------------------------------- /src/tbb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/README.md -------------------------------------------------------------------------------- /src/tbb/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/RELEASE_NOTES.md -------------------------------------------------------------------------------- /src/tbb/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/SECURITY.md -------------------------------------------------------------------------------- /src/tbb/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/SUPPORT.md -------------------------------------------------------------------------------- /src/tbb/SYSTEM_REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/SYSTEM_REQUIREMENTS.md -------------------------------------------------------------------------------- /src/tbb/WASM_Support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/WASM_Support.md -------------------------------------------------------------------------------- /src/tbb/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/README.md -------------------------------------------------------------------------------- /src/tbb/cmake/android/device_environment_cleanup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/android/device_environment_cleanup.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/android/environment.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/android/environment.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/android/test_launcher.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/android/test_launcher.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/compilers/AppleClang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/compilers/AppleClang.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/compilers/Clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/compilers/Clang.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/compilers/GNU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/compilers/GNU.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/compilers/Intel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/compilers/Intel.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/compilers/IntelLLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/compilers/IntelLLVM.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/compilers/MSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/compilers/MSVC.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/compilers/QCC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/compilers/QCC.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/config_generation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/config_generation.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/hwloc_detection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/hwloc_detection.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/memcheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/memcheck.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/packaging.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/post_install/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/post_install/CMakeLists.txt -------------------------------------------------------------------------------- /src/tbb/cmake/python/test_launcher.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/python/test_launcher.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/resumable_tasks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/resumable_tasks.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/sanitize.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/sanitize.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/scripts/cmake_gen_github_configs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/scripts/cmake_gen_github_configs.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/suppressions/lsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/suppressions/lsan.suppressions -------------------------------------------------------------------------------- /src/tbb/cmake/suppressions/tsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/suppressions/tsan.suppressions -------------------------------------------------------------------------------- /src/tbb/cmake/templates/TBBConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/templates/TBBConfig.cmake.in -------------------------------------------------------------------------------- /src/tbb/cmake/templates/TBBConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/templates/TBBConfigVersion.cmake.in -------------------------------------------------------------------------------- /src/tbb/cmake/test_spec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/test_spec.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/toolchains/mips.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/toolchains/mips.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/toolchains/riscv64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/toolchains/riscv64.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/utils.cmake -------------------------------------------------------------------------------- /src/tbb/cmake/vars_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/cmake/vars_utils.cmake -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/blocked_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/blocked_range.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/blocked_range2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/blocked_range2d.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/blocked_range3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/blocked_range3d.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/blocked_rangeNd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/blocked_rangeNd.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/cache_aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/cache_aligned_allocator.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/collaborative_call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/collaborative_call_once.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/combinable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/combinable.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_hash_map.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_lru_cache.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_map.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_priority_queue.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_queue.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_set.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_unordered_map.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_unordered_set.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/concurrent_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/concurrent_vector.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_aggregator.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_aligned_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_aligned_space.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_allocator_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_allocator_traits.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_assert.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_attach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_attach.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_concurrent_queue_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_concurrent_queue_base.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_concurrent_skip_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_concurrent_skip_list.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_concurrent_unordered_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_concurrent_unordered_base.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_config.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_containers_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_containers_helpers.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_exception.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_export.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_body_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_body_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_cache_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_cache_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_indexer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_indexer_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_item_buffer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_item_buffer_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_join_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_join_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_node_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_node_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_node_set_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_node_set_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_nodes_deduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_nodes_deduction.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_tagged_buffer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_tagged_buffer_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_trace_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_trace_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_flow_graph_types_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_flow_graph_types_impl.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_hash_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_hash_compare.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_intrusive_list_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_intrusive_list_node.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_machine.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_mutex_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_mutex_common.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_namespace_injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_namespace_injection.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_node_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_node_handle.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_pipeline_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_pipeline_filters.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_pipeline_filters_deduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_pipeline_filters_deduction.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_range_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_range_common.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_rtm_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_rtm_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_rtm_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_rtm_rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_scoped_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_scoped_lock.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_segment_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_segment_table.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_small_object_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_small_object_pool.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_string_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_string_resource.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_task.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_task_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_task_handle.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_template_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_template_helpers.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_utils.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/detail/_waitable_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/detail/_waitable_atomic.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/enumerable_thread_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/enumerable_thread_specific.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/flow_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/flow_graph.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/flow_graph_abstractions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/flow_graph_abstractions.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/global_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/global_control.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/info.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/memory_pool.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/null_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/null_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/null_rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/parallel_for.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/parallel_for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/parallel_for_each.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/parallel_invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/parallel_invoke.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/parallel_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/parallel_pipeline.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/parallel_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/parallel_reduce.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/parallel_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/parallel_scan.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/parallel_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/parallel_sort.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/partitioner.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/profiling.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/queuing_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/queuing_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/queuing_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/queuing_rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/scalable_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/scalable_allocator.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/spin_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/spin_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/spin_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/spin_rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/task.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/task_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/task_arena.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/task_group.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/task_scheduler_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/task_scheduler_observer.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/tbb_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/tbb_allocator.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/tbbmalloc_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/tbbmalloc_proxy.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/tick_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/tick_count.h -------------------------------------------------------------------------------- /src/tbb/include/oneapi/tbb/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/oneapi/tbb/version.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/blocked_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/blocked_range.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/blocked_range2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/blocked_range2d.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/blocked_range3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/blocked_range3d.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/blocked_rangeNd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/blocked_rangeNd.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/cache_aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/cache_aligned_allocator.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/collaborative_call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/collaborative_call_once.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/combinable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/combinable.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_hash_map.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_lru_cache.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_map.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_priority_queue.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_queue.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_set.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_unordered_map.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_unordered_set.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/concurrent_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/concurrent_vector.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/enumerable_thread_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/enumerable_thread_specific.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/flow_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/flow_graph.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/flow_graph_abstractions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/flow_graph_abstractions.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/global_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/global_control.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/info.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/memory_pool.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/mutex.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/null_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/null_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/null_rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/parallel_for.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/parallel_for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/parallel_for_each.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/parallel_invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/parallel_invoke.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/parallel_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/parallel_pipeline.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/parallel_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/parallel_reduce.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/parallel_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/parallel_scan.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/parallel_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/parallel_sort.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/partitioner.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/profiling.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/queuing_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/queuing_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/queuing_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/queuing_rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/scalable_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/scalable_allocator.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/spin_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/spin_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/spin_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/spin_rw_mutex.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/task.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/task_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/task_arena.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/task_group.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/task_scheduler_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/task_scheduler_observer.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/tbb.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/tbb_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/tbb_allocator.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/tbbmalloc_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/tbbmalloc_proxy.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/tick_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/tick_count.h -------------------------------------------------------------------------------- /src/tbb/include/tbb/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/include/tbb/version.h -------------------------------------------------------------------------------- /src/tbb/integration/cmake/generate_vars.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/cmake/generate_vars.cmake -------------------------------------------------------------------------------- /src/tbb/integration/linux/env/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/linux/env/vars.sh -------------------------------------------------------------------------------- /src/tbb/integration/linux/env/vars.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/linux/env/vars.sh.in -------------------------------------------------------------------------------- /src/tbb/integration/linux/modulefiles/tbb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/linux/modulefiles/tbb -------------------------------------------------------------------------------- /src/tbb/integration/linux/modulefiles/tbb32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/linux/modulefiles/tbb32 -------------------------------------------------------------------------------- /src/tbb/integration/linux/oneapi/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/linux/oneapi/vars.sh -------------------------------------------------------------------------------- /src/tbb/integration/linux/sys_check/sys_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/linux/sys_check/sys_check.sh -------------------------------------------------------------------------------- /src/tbb/integration/mac/env/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/mac/env/vars.sh -------------------------------------------------------------------------------- /src/tbb/integration/mac/env/vars.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/mac/env/vars.sh.in -------------------------------------------------------------------------------- /src/tbb/integration/pkg-config/tbb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/pkg-config/tbb.pc.in -------------------------------------------------------------------------------- /src/tbb/integration/windows/env/vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/windows/env/vars.bat -------------------------------------------------------------------------------- /src/tbb/integration/windows/env/vars.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/windows/env/vars.bat.in -------------------------------------------------------------------------------- /src/tbb/integration/windows/nuget/inteltbb.devel.win.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/windows/nuget/inteltbb.devel.win.targets -------------------------------------------------------------------------------- /src/tbb/integration/windows/nuget/inteltbb.redist.win.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/windows/nuget/inteltbb.redist.win.targets -------------------------------------------------------------------------------- /src/tbb/integration/windows/oneapi/vars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/windows/oneapi/vars.bat -------------------------------------------------------------------------------- /src/tbb/integration/windows/sys_check/sys_check.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/integration/windows/sys_check/sys_check.bat -------------------------------------------------------------------------------- /src/tbb/src/tbb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/CMakeLists.txt -------------------------------------------------------------------------------- /src/tbb/src/tbb/address_waiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/address_waiter.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/allocator.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/arena.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/arena.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/arena_slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/arena_slot.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/arena_slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/arena_slot.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/assert_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/assert_impl.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/cancellation_disseminator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/cancellation_disseminator.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/co_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/co_context.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/concurrent_bounded_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/concurrent_bounded_queue.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/concurrent_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/concurrent_monitor.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/concurrent_monitor_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/concurrent_monitor_mutex.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/def/lin32-tbb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/def/lin32-tbb.def -------------------------------------------------------------------------------- /src/tbb/src/tbb/def/lin64-tbb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/def/lin64-tbb.def -------------------------------------------------------------------------------- /src/tbb/src/tbb/def/mac64-tbb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/def/mac64-tbb.def -------------------------------------------------------------------------------- /src/tbb/src/tbb/def/win32-tbb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/def/win32-tbb.def -------------------------------------------------------------------------------- /src/tbb/src/tbb/def/win64-tbb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/def/win64-tbb.def -------------------------------------------------------------------------------- /src/tbb/src/tbb/dynamic_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/dynamic_link.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/dynamic_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/dynamic_link.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/environment.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/exception.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/global_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/global_control.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/governor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/governor.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/governor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/governor.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/intrusive_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/intrusive_list.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/itt_notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/itt_notify.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/itt_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/itt_notify.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/mailbox.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/main.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/main.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/market.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/market.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/market.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/market.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/market_concurrent_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/market_concurrent_monitor.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/misc.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/misc.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/misc_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/misc_ex.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/observer_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/observer_proxy.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/observer_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/observer_proxy.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/parallel_pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/parallel_pipeline.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/permit_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/permit_manager.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/pm_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/pm_client.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/private_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/private_server.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/profiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/profiling.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/queuing_rw_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/queuing_rw_mutex.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/rml_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/rml_base.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/rml_tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/rml_tbb.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/rml_tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/rml_tbb.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/rml_thread_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/rml_thread_monitor.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/rtm_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/rtm_mutex.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/rtm_rw_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/rtm_rw_mutex.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/scheduler_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/scheduler_common.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/semaphore.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/semaphore.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/small_object_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/small_object_pool.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/small_object_pool_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/small_object_pool_impl.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/task.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/task_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/task_dispatcher.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/task_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/task_dispatcher.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/task_group_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/task_group_context.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/task_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/task_stream.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tbb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tbb.rc -------------------------------------------------------------------------------- /src/tbb/src/tbb/tcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tcm.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tcm_adaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tcm_adaptor.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/tcm_adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tcm_adaptor.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/thread_control_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/thread_control_monitor.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/thread_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/thread_data.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/thread_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/thread_dispatcher.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/thread_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/thread_dispatcher.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/thread_dispatcher_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/thread_dispatcher_client.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/thread_request_serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/thread_request_serializer.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/thread_request_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/thread_request_serializer.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/threading_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/threading_control.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/threading_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/threading_control.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/threading_control_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/threading_control_client.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tls.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tools_api/disable_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tools_api/disable_warnings.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tools_api/ittnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tools_api/ittnotify.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tools_api/ittnotify_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tools_api/ittnotify_config.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tools_api/ittnotify_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tools_api/ittnotify_static.c -------------------------------------------------------------------------------- /src/tbb/src/tbb/tools_api/ittnotify_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tools_api/ittnotify_static.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tools_api/ittnotify_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tools_api/ittnotify_types.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/tools_api/legacy/ittnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/tools_api/legacy/ittnotify.h -------------------------------------------------------------------------------- /src/tbb/src/tbb/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/version.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbb/waiters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbb/waiters.h -------------------------------------------------------------------------------- /src/tbb/src/tbbbind/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbbind/CMakeLists.txt -------------------------------------------------------------------------------- /src/tbb/src/tbbbind/def/lin32-tbbbind.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbbind/def/lin32-tbbbind.def -------------------------------------------------------------------------------- /src/tbb/src/tbbbind/def/lin64-tbbbind.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbbind/def/lin64-tbbbind.def -------------------------------------------------------------------------------- /src/tbb/src/tbbbind/def/mac64-tbbbind.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbbind/def/mac64-tbbbind.def -------------------------------------------------------------------------------- /src/tbb/src/tbbbind/def/win32-tbbbind.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbbind/def/win32-tbbbind.def -------------------------------------------------------------------------------- /src/tbb/src/tbbbind/def/win64-tbbbind.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbbind/def/win64-tbbbind.def -------------------------------------------------------------------------------- /src/tbb/src/tbbbind/tbb_bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbbind/tbb_bind.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbbbind/tbb_bind.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbbind/tbb_bind.rc -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/CMakeLists.txt -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/Customize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/Customize.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/MapMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/MapMemory.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/Statistics.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/Synchronize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/Synchronize.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/TypeDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/TypeDefinitions.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/backend.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/backend.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/backref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/backref.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/def/lin32-tbbmalloc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/def/lin32-tbbmalloc.def -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/def/lin64-tbbmalloc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/def/lin64-tbbmalloc.def -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/def/mac64-tbbmalloc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/def/mac64-tbbmalloc.def -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/def/win32-tbbmalloc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/def/win32-tbbmalloc.def -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/def/win64-tbbmalloc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/def/win64-tbbmalloc.def -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/frontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/frontend.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/large_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/large_objects.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/large_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/large_objects.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/shared_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/shared_utils.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/tbbmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/tbbmalloc.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/tbbmalloc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/tbbmalloc.rc -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/tbbmalloc_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/tbbmalloc_internal.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc/tbbmalloc_internal_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc/tbbmalloc_internal_api.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/CMakeLists.txt -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/def/lin32-proxy.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/def/lin32-proxy.def -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/def/lin64-proxy.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/def/lin64-proxy.def -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/function_replacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/function_replacement.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/function_replacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/function_replacement.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/proxy.cpp -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/proxy.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/proxy_overload_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/proxy_overload_osx.h -------------------------------------------------------------------------------- /src/tbb/src/tbbmalloc_proxy/tbbmalloc_proxy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/src/tbbmalloc_proxy/tbbmalloc_proxy.rc -------------------------------------------------------------------------------- /src/tbb/third-party-programs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/src/tbb/third-party-programs.txt -------------------------------------------------------------------------------- /tests/doRUnit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/tests/doRUnit.R -------------------------------------------------------------------------------- /tools/config.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/tools/config.R -------------------------------------------------------------------------------- /tools/config/cleanup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/tools/config/cleanup.R -------------------------------------------------------------------------------- /tools/config/configure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/tools/config/configure.R -------------------------------------------------------------------------------- /tools/tbb/disable-pragmas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/tools/tbb/disable-pragmas.R -------------------------------------------------------------------------------- /tools/tbb/fix-memset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/tools/tbb/fix-memset.R -------------------------------------------------------------------------------- /tools/tbb/update-tbb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RcppCore/RcppParallel/HEAD/tools/tbb/update-tbb.R --------------------------------------------------------------------------------