pxr-tbb-dev 2022.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pxr_tbb_dev-2022.1.0/.gitignore +91 -0
- pxr_tbb_dev-2022.1.0/BUILD.bazel +173 -0
- pxr_tbb_dev-2022.1.0/Bazel.md +108 -0
- pxr_tbb_dev-2022.1.0/CMakeLists.txt +384 -0
- pxr_tbb_dev-2022.1.0/CODEOWNERS +26 -0
- pxr_tbb_dev-2022.1.0/CODE_OF_CONDUCT.md +134 -0
- pxr_tbb_dev-2022.1.0/CONTRIBUTING.md +45 -0
- pxr_tbb_dev-2022.1.0/INSTALL.md +135 -0
- pxr_tbb_dev-2022.1.0/LICENSE.txt +201 -0
- pxr_tbb_dev-2022.1.0/MAINTAINERS.md +143 -0
- pxr_tbb_dev-2022.1.0/MODULE.bazel +24 -0
- pxr_tbb_dev-2022.1.0/MODULE.bazel.lock +65 -0
- pxr_tbb_dev-2022.1.0/PKG-INFO +31 -0
- pxr_tbb_dev-2022.1.0/README.md +16 -0
- pxr_tbb_dev-2022.1.0/RELEASE_NOTES.md +51 -0
- pxr_tbb_dev-2022.1.0/SECURITY.md +66 -0
- pxr_tbb_dev-2022.1.0/SUPPORT.md +35 -0
- pxr_tbb_dev-2022.1.0/SYSTEM_REQUIREMENTS.md +86 -0
- pxr_tbb_dev-2022.1.0/WASM_Support.md +81 -0
- pxr_tbb_dev-2022.1.0/WORKSPACE.bazel +19 -0
- pxr_tbb_dev-2022.1.0/cmake/README.md +335 -0
- pxr_tbb_dev-2022.1.0/cmake/android/device_environment_cleanup.cmake +17 -0
- pxr_tbb_dev-2022.1.0/cmake/android/environment.cmake +35 -0
- pxr_tbb_dev-2022.1.0/cmake/android/test_launcher.cmake +27 -0
- pxr_tbb_dev-2022.1.0/cmake/compilers/AppleClang.cmake +51 -0
- pxr_tbb_dev-2022.1.0/cmake/compilers/Clang.cmake +91 -0
- pxr_tbb_dev-2022.1.0/cmake/compilers/GNU.cmake +122 -0
- pxr_tbb_dev-2022.1.0/cmake/compilers/Intel.cmake +38 -0
- pxr_tbb_dev-2022.1.0/cmake/compilers/IntelLLVM.cmake +28 -0
- pxr_tbb_dev-2022.1.0/cmake/compilers/MSVC.cmake +103 -0
- pxr_tbb_dev-2022.1.0/cmake/compilers/QCC.cmake +18 -0
- pxr_tbb_dev-2022.1.0/cmake/config_generation.cmake +142 -0
- pxr_tbb_dev-2022.1.0/cmake/hwloc_detection.cmake +64 -0
- pxr_tbb_dev-2022.1.0/cmake/memcheck.cmake +112 -0
- pxr_tbb_dev-2022.1.0/cmake/packaging.cmake +24 -0
- pxr_tbb_dev-2022.1.0/cmake/post_install/CMakeLists.txt +22 -0
- pxr_tbb_dev-2022.1.0/cmake/resumable_tasks.cmake +31 -0
- pxr_tbb_dev-2022.1.0/cmake/sanitize.cmake +43 -0
- pxr_tbb_dev-2022.1.0/cmake/scripts/cmake_gen_github_configs.cmake +49 -0
- pxr_tbb_dev-2022.1.0/cmake/suppressions/lsan.suppressions +2 -0
- pxr_tbb_dev-2022.1.0/cmake/suppressions/tsan.suppressions +4 -0
- pxr_tbb_dev-2022.1.0/cmake/templates/TBBConfig.cmake.in +128 -0
- pxr_tbb_dev-2022.1.0/cmake/templates/TBBConfigVersion.cmake.in +24 -0
- pxr_tbb_dev-2022.1.0/cmake/test_spec.cmake +35 -0
- pxr_tbb_dev-2022.1.0/cmake/toolchains/mips.cmake +40 -0
- pxr_tbb_dev-2022.1.0/cmake/toolchains/riscv64.cmake +34 -0
- pxr_tbb_dev-2022.1.0/cmake/utils.cmake +74 -0
- pxr_tbb_dev-2022.1.0/cmake/vars_utils.cmake +56 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_nd_range.h +195 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_range.h +169 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_range2d.h +111 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_range3d.h +130 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_rangeNd.h +147 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/cache_aligned_allocator.h +189 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/collaborative_call_once.h +256 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/combinable.h +69 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_hash_map.h +1668 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_lru_cache.h +374 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_map.h +350 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_priority_queue.h +490 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_queue.h +704 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_set.h +267 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_unordered_map.h +414 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_unordered_set.h +333 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_vector.h +1129 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_aggregator.h +176 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_aligned_space.h +46 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_allocator_traits.h +107 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_assert.h +64 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_attach.h +32 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_concurrent_queue_base.h +650 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_concurrent_skip_list.h +1290 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_concurrent_unordered_base.h +1515 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_config.h +547 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_containers_helpers.h +67 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_exception.h +94 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_export.h +54 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_body_impl.h +429 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_cache_impl.h +501 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_impl.h +573 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_indexer_impl.h +370 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_item_buffer_impl.h +422 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_join_impl.h +1970 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_node_impl.h +894 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_node_set_impl.h +265 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_nodes_deduction.h +277 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_tagged_buffer_impl.h +380 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_trace_impl.h +364 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_types_impl.h +422 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_hash_compare.h +147 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_intrusive_list_node.h +41 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_machine.h +373 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_mutex_common.h +61 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_namespace_injection.h +24 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_node_handle.h +162 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_pipeline_filters.h +461 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_pipeline_filters_deduction.h +46 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_range_common.h +133 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_rtm_mutex.h +162 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_rtm_rw_mutex.h +215 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_scoped_lock.h +174 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_segment_table.h +581 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_small_object_pool.h +108 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_string_resource.h +78 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_task.h +302 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_task_handle.h +123 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_template_helpers.h +407 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_utils.h +393 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_waitable_atomic.h +90 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/enumerable_thread_specific.h +1121 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/flow_graph.h +3718 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/flow_graph_abstractions.h +51 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/global_control.h +200 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/info.h +125 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/memory_pool.h +272 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/mutex.h +93 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/null_mutex.h +80 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/null_rw_mutex.h +87 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_for.h +469 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_for_each.h +712 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_invoke.h +227 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_pipeline.h +153 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_reduce.h +772 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_scan.h +630 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_sort.h +288 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/partitioner.h +681 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/profiling.h +243 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/queuing_mutex.h +192 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/queuing_rw_mutex.h +207 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/rw_mutex.h +216 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/scalable_allocator.h +335 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/spin_mutex.h +134 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/spin_rw_mutex.h +229 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/task.h +37 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/task_arena.h +630 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/task_group.h +712 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/task_scheduler_observer.h +116 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/tbb_allocator.h +126 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/tbbmalloc_proxy.h +65 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/tick_count.h +99 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb/version.h +118 -0
- pxr_tbb_dev-2022.1.0/include/oneapi/tbb.h +74 -0
- pxr_tbb_dev-2022.1.0/include/tbb/blocked_nd_range.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/blocked_range.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/blocked_range2d.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/blocked_range3d.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/blocked_rangeNd.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/cache_aligned_allocator.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/collaborative_call_once.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/combinable.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_hash_map.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_lru_cache.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_map.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_priority_queue.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_queue.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_set.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_unordered_map.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_unordered_set.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/concurrent_vector.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/enumerable_thread_specific.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/flow_graph.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/flow_graph_abstractions.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/global_control.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/info.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/memory_pool.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/null_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/null_rw_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/parallel_for.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/parallel_for_each.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/parallel_invoke.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/parallel_pipeline.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/parallel_reduce.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/parallel_scan.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/parallel_sort.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/partitioner.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/profiling.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/queuing_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/queuing_rw_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/rw_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/scalable_allocator.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/spin_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/spin_rw_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/task.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/task_arena.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/task_group.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/task_scheduler_observer.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/tbb.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/tbb_allocator.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/tbbmalloc_proxy.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/tick_count.h +17 -0
- pxr_tbb_dev-2022.1.0/include/tbb/version.h +17 -0
- pxr_tbb_dev-2022.1.0/integration/cmake/generate_vars.cmake +51 -0
- pxr_tbb_dev-2022.1.0/integration/linux/modulefiles/tbb +69 -0
- pxr_tbb_dev-2022.1.0/integration/linux/modulefiles/tbb32 +69 -0
- pxr_tbb_dev-2022.1.0/integration/linux/oneapi/vars.sh +34 -0
- pxr_tbb_dev-2022.1.0/integration/linux/sys_check/sys_check.sh +21 -0
- pxr_tbb_dev-2022.1.0/integration/pkg-config/tbb.pc.in +24 -0
- pxr_tbb_dev-2022.1.0/integration/windows/nuget/inteltbb.devel.win.targets +64 -0
- pxr_tbb_dev-2022.1.0/integration/windows/nuget/inteltbb.redist.win.targets +30 -0
- pxr_tbb_dev-2022.1.0/integration/windows/oneapi/vars.bat +56 -0
- pxr_tbb_dev-2022.1.0/integration/windows/sys_check/sys_check.bat +18 -0
- pxr_tbb_dev-2022.1.0/oneTBB/.bazelrc +19 -0
- pxr_tbb_dev-2022.1.0/oneTBB/.bazelversion +1 -0
- pxr_tbb_dev-2022.1.0/oneTBB/.gitattributes +45 -0
- pxr_tbb_dev-2022.1.0/oneTBB/.gitignore +62 -0
- pxr_tbb_dev-2022.1.0/oneTBB/BUILD.bazel +173 -0
- pxr_tbb_dev-2022.1.0/oneTBB/Bazel.md +108 -0
- pxr_tbb_dev-2022.1.0/oneTBB/CMakeLists.txt +378 -0
- pxr_tbb_dev-2022.1.0/oneTBB/CODEOWNERS +26 -0
- pxr_tbb_dev-2022.1.0/oneTBB/CODE_OF_CONDUCT.md +134 -0
- pxr_tbb_dev-2022.1.0/oneTBB/CONTRIBUTING.md +45 -0
- pxr_tbb_dev-2022.1.0/oneTBB/INSTALL.md +135 -0
- pxr_tbb_dev-2022.1.0/oneTBB/LICENSE.txt +201 -0
- pxr_tbb_dev-2022.1.0/oneTBB/MAINTAINERS.md +143 -0
- pxr_tbb_dev-2022.1.0/oneTBB/MODULE.bazel +24 -0
- pxr_tbb_dev-2022.1.0/oneTBB/MODULE.bazel.lock +65 -0
- pxr_tbb_dev-2022.1.0/oneTBB/RELEASE_NOTES.md +51 -0
- pxr_tbb_dev-2022.1.0/oneTBB/SECURITY.md +66 -0
- pxr_tbb_dev-2022.1.0/oneTBB/SUPPORT.md +35 -0
- pxr_tbb_dev-2022.1.0/oneTBB/SYSTEM_REQUIREMENTS.md +86 -0
- pxr_tbb_dev-2022.1.0/oneTBB/WASM_Support.md +81 -0
- pxr_tbb_dev-2022.1.0/oneTBB/WORKSPACE.bazel +19 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/README.md +335 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/android/device_environment_cleanup.cmake +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/android/environment.cmake +35 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/android/test_launcher.cmake +27 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/AppleClang.cmake +51 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/Clang.cmake +91 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/GNU.cmake +122 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/Intel.cmake +38 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/IntelLLVM.cmake +28 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/MSVC.cmake +103 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/QCC.cmake +18 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/config_generation.cmake +142 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/hwloc_detection.cmake +64 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/memcheck.cmake +112 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/packaging.cmake +24 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/post_install/CMakeLists.txt +22 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/resumable_tasks.cmake +31 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/sanitize.cmake +43 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/scripts/cmake_gen_github_configs.cmake +49 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/suppressions/lsan.suppressions +2 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/suppressions/tsan.suppressions +4 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/templates/TBBConfig.cmake.in +128 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/templates/TBBConfigVersion.cmake.in +24 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/test_spec.cmake +35 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/toolchains/mips.cmake +40 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/toolchains/riscv64.cmake +34 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/utils.cmake +74 -0
- pxr_tbb_dev-2022.1.0/oneTBB/cmake/vars_utils.cmake +56 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_nd_range.h +195 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_range.h +169 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_range2d.h +111 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_range3d.h +130 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_rangeNd.h +147 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/cache_aligned_allocator.h +189 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/collaborative_call_once.h +256 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/combinable.h +69 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_hash_map.h +1668 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_lru_cache.h +374 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_map.h +350 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_priority_queue.h +490 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_queue.h +704 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_set.h +267 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_unordered_map.h +414 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_unordered_set.h +333 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_vector.h +1129 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_aggregator.h +176 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_aligned_space.h +46 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_allocator_traits.h +107 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_assert.h +64 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_attach.h +32 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_concurrent_queue_base.h +650 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_concurrent_skip_list.h +1290 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_concurrent_unordered_base.h +1515 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_config.h +547 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_containers_helpers.h +67 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_exception.h +94 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_export.h +54 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_body_impl.h +429 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_cache_impl.h +501 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_impl.h +573 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_indexer_impl.h +370 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_item_buffer_impl.h +422 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_join_impl.h +1970 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_node_impl.h +894 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_node_set_impl.h +265 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_nodes_deduction.h +277 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_tagged_buffer_impl.h +380 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_trace_impl.h +364 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_types_impl.h +422 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_hash_compare.h +147 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_intrusive_list_node.h +41 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_machine.h +373 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_mutex_common.h +61 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_namespace_injection.h +24 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_node_handle.h +162 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_pipeline_filters.h +461 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_pipeline_filters_deduction.h +46 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_range_common.h +133 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_rtm_mutex.h +162 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_rtm_rw_mutex.h +215 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_scoped_lock.h +174 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_segment_table.h +581 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_small_object_pool.h +108 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_string_resource.h +78 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_task.h +302 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_task_handle.h +123 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_template_helpers.h +407 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_utils.h +393 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_waitable_atomic.h +90 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/enumerable_thread_specific.h +1121 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/flow_graph.h +3718 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/flow_graph_abstractions.h +51 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/global_control.h +200 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/info.h +125 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/memory_pool.h +272 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/mutex.h +93 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/null_mutex.h +80 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/null_rw_mutex.h +87 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_for.h +469 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_for_each.h +712 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_invoke.h +227 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_pipeline.h +153 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_reduce.h +772 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_scan.h +630 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_sort.h +288 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/partitioner.h +681 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/profiling.h +243 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/queuing_mutex.h +192 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/queuing_rw_mutex.h +207 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/rw_mutex.h +216 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/scalable_allocator.h +335 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/spin_mutex.h +134 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/spin_rw_mutex.h +229 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/task.h +37 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/task_arena.h +630 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/task_group.h +712 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/task_scheduler_observer.h +116 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/tbb_allocator.h +126 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/tbbmalloc_proxy.h +65 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/tick_count.h +99 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/version.h +118 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb.h +74 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_nd_range.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_range.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_range2d.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_range3d.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_rangeNd.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/cache_aligned_allocator.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/collaborative_call_once.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/combinable.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_hash_map.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_lru_cache.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_map.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_priority_queue.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_queue.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_set.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_unordered_map.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_unordered_set.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_vector.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/enumerable_thread_specific.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/flow_graph.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/flow_graph_abstractions.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/global_control.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/info.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/memory_pool.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/null_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/null_rw_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_for.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_for_each.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_invoke.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_pipeline.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_reduce.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_scan.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_sort.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/partitioner.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/profiling.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/queuing_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/queuing_rw_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/rw_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/scalable_allocator.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/spin_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/spin_rw_mutex.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/task.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/task_arena.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/task_group.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/task_scheduler_observer.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/tbb.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/tbb_allocator.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/tbbmalloc_proxy.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/tick_count.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/version.h +17 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/cmake/generate_vars.cmake +51 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/linux/modulefiles/tbb +69 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/linux/modulefiles/tbb32 +69 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/linux/oneapi/vars.sh +34 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/linux/sys_check/sys_check.sh +21 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/pkg-config/tbb.pc.in +24 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/windows/nuget/inteltbb.devel.win.targets +64 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/windows/nuget/inteltbb.redist.win.targets +30 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/windows/oneapi/vars.bat +56 -0
- pxr_tbb_dev-2022.1.0/oneTBB/integration/windows/sys_check/sys_check.bat +18 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/README.md +77 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/archived/README.md +14 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/README.md +28 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/blocked_nd_range_ctad/README.md +227 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/README.md +306 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/alternative_proposal.png +0 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/completely_disable_new_behavior.png +0 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_introduction.png +0 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_sequence_diagram.png +0 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_state_final.png +0 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_state_initial.png +0 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/proposed/README.md +9 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/proposed/loading-dependencies/loading-dependencies-by-module-name.org +104 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/proposed/numa_support/README.md +156 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/proposed/numa_support/tbbbind-link-static-hwloc.org +120 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/supported/README.md +11 -0
- pxr_tbb_dev-2022.1.0/oneTBB/rfcs/template.md +56 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/CMakeLists.txt +221 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/address_waiter.cpp +106 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/allocator.cpp +288 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/arena.cpp +956 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/arena.h +602 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/arena_slot.cpp +218 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/arena_slot.h +414 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/assert_impl.h +97 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/cancellation_disseminator.h +85 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/co_context.h +378 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/concurrent_bounded_queue.cpp +84 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/concurrent_monitor.h +498 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/concurrent_monitor_mutex.h +113 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/lin32-tbb.def +165 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/lin64-tbb.def +165 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/mac64-tbb.def +162 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/win32-tbb.def +154 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/win64-tbb.def +154 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/dynamic_link.cpp +504 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/dynamic_link.h +118 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/environment.h +81 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/exception.cpp +166 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/global_control.cpp +285 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/governor.cpp +605 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/governor.h +158 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/intrusive_list.h +233 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/itt_notify.cpp +69 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/itt_notify.h +117 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/mailbox.h +246 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/main.cpp +161 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/main.h +99 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/market.cpp +143 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/market.h +78 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/market_concurrent_monitor.h +116 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/misc.cpp +156 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/misc.h +287 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/misc_ex.cpp +409 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/observer_proxy.cpp +319 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/observer_proxy.h +152 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/parallel_pipeline.cpp +471 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/permit_manager.h +61 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/pm_client.h +76 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/private_server.cpp +436 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/profiling.cpp +265 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/queuing_rw_mutex.cpp +617 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rml_base.h +163 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rml_tbb.cpp +112 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rml_tbb.h +94 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rml_thread_monitor.h +247 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rtm_mutex.cpp +121 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rtm_rw_mutex.cpp +271 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/scheduler_common.h +611 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/semaphore.cpp +92 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/semaphore.h +307 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/small_object_pool.cpp +156 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/small_object_pool_impl.h +59 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task.cpp +257 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task_dispatcher.cpp +244 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task_dispatcher.h +479 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task_group_context.cpp +358 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task_stream.h +286 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tbb.rc +74 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tcm.h +174 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tcm_adaptor.cpp +327 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tcm_adaptor.h +63 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_control_monitor.h +116 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_data.h +262 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_dispatcher.cpp +236 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_dispatcher.h +107 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_dispatcher_client.h +69 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_request_serializer.cpp +139 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_request_serializer.h +84 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/threading_control.cpp +411 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/threading_control.h +154 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/threading_control_client.h +58 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tls.h +81 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/disable_warnings.h +39 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify.h +4677 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify_config.h +775 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify_static.c +1807 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify_static.h +378 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify_types.h +75 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/legacy/ittnotify.h +1015 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/version.cpp +26 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/waiters.h +225 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/CMakeLists.txt +105 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/lin32-tbbbind.def +26 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/lin64-tbbbind.def +26 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/mac64-tbbbind.def +18 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/win32-tbbbind.def +23 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/win64-tbbbind.def +23 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/tbb_bind.cpp +604 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/tbb_bind.rc +74 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/CMakeLists.txt +123 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/Customize.h +139 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/MapMemory.h +205 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/Statistics.h +125 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/Synchronize.h +97 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/TypeDefinitions.h +58 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/backend.cpp +1513 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/backend.h +392 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/backref.cpp +358 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/lin32-tbbmalloc.def +73 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/lin64-tbbmalloc.def +73 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/mac64-tbbmalloc.def +44 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/win32-tbbmalloc.def +47 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/win64-tbbmalloc.def +47 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/frontend.cpp +3309 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/large_objects.cpp +1073 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/large_objects.h +380 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/shared_utils.h +146 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/tbbmalloc.cpp +115 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/tbbmalloc.rc +74 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/tbbmalloc_internal.h +763 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/tbbmalloc_internal_api.h +40 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/CMakeLists.txt +103 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/def/lin32-proxy.def +55 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/def/lin64-proxy.def +55 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/function_replacement.cpp +582 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/function_replacement.h +79 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/proxy.cpp +796 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/proxy.h +55 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/proxy_overload_osx.h +186 -0
- pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/tbbmalloc_proxy.rc +74 -0
- pxr_tbb_dev-2022.1.0/oneTBB/third-party-programs.txt +198 -0
- pxr_tbb_dev-2022.1.0/pxr-tbb.patch +42 -0
- pxr_tbb_dev-2022.1.0/pyproject-dev.toml +35 -0
- pxr_tbb_dev-2022.1.0/pyproject.toml +35 -0
- pxr_tbb_dev-2022.1.0/rfcs/README.md +77 -0
- pxr_tbb_dev-2022.1.0/rfcs/archived/README.md +14 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/README.md +28 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/blocked_nd_range_ctad/README.md +227 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/README.md +306 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/alternative_proposal.png +0 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/completely_disable_new_behavior.png +0 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_introduction.png +0 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_sequence_diagram.png +0 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_state_final.png +0 -0
- pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_state_initial.png +0 -0
- pxr_tbb_dev-2022.1.0/rfcs/proposed/README.md +9 -0
- pxr_tbb_dev-2022.1.0/rfcs/proposed/loading-dependencies/loading-dependencies-by-module-name.org +104 -0
- pxr_tbb_dev-2022.1.0/rfcs/proposed/numa_support/README.md +156 -0
- pxr_tbb_dev-2022.1.0/rfcs/proposed/numa_support/tbbbind-link-static-hwloc.org +120 -0
- pxr_tbb_dev-2022.1.0/rfcs/supported/README.md +11 -0
- pxr_tbb_dev-2022.1.0/rfcs/template.md +56 -0
- pxr_tbb_dev-2022.1.0/src/tbb/CMakeLists.txt +221 -0
- pxr_tbb_dev-2022.1.0/src/tbb/address_waiter.cpp +106 -0
- pxr_tbb_dev-2022.1.0/src/tbb/allocator.cpp +288 -0
- pxr_tbb_dev-2022.1.0/src/tbb/arena.cpp +956 -0
- pxr_tbb_dev-2022.1.0/src/tbb/arena.h +602 -0
- pxr_tbb_dev-2022.1.0/src/tbb/arena_slot.cpp +218 -0
- pxr_tbb_dev-2022.1.0/src/tbb/arena_slot.h +414 -0
- pxr_tbb_dev-2022.1.0/src/tbb/assert_impl.h +97 -0
- pxr_tbb_dev-2022.1.0/src/tbb/cancellation_disseminator.h +85 -0
- pxr_tbb_dev-2022.1.0/src/tbb/co_context.h +378 -0
- pxr_tbb_dev-2022.1.0/src/tbb/concurrent_bounded_queue.cpp +84 -0
- pxr_tbb_dev-2022.1.0/src/tbb/concurrent_monitor.h +498 -0
- pxr_tbb_dev-2022.1.0/src/tbb/concurrent_monitor_mutex.h +113 -0
- pxr_tbb_dev-2022.1.0/src/tbb/def/lin32-tbb.def +165 -0
- pxr_tbb_dev-2022.1.0/src/tbb/def/lin64-tbb.def +165 -0
- pxr_tbb_dev-2022.1.0/src/tbb/def/mac64-tbb.def +162 -0
- pxr_tbb_dev-2022.1.0/src/tbb/def/win32-tbb.def +154 -0
- pxr_tbb_dev-2022.1.0/src/tbb/def/win64-tbb.def +154 -0
- pxr_tbb_dev-2022.1.0/src/tbb/dynamic_link.cpp +504 -0
- pxr_tbb_dev-2022.1.0/src/tbb/dynamic_link.h +118 -0
- pxr_tbb_dev-2022.1.0/src/tbb/environment.h +81 -0
- pxr_tbb_dev-2022.1.0/src/tbb/exception.cpp +166 -0
- pxr_tbb_dev-2022.1.0/src/tbb/global_control.cpp +285 -0
- pxr_tbb_dev-2022.1.0/src/tbb/governor.cpp +605 -0
- pxr_tbb_dev-2022.1.0/src/tbb/governor.h +158 -0
- pxr_tbb_dev-2022.1.0/src/tbb/intrusive_list.h +233 -0
- pxr_tbb_dev-2022.1.0/src/tbb/itt_notify.cpp +69 -0
- pxr_tbb_dev-2022.1.0/src/tbb/itt_notify.h +117 -0
- pxr_tbb_dev-2022.1.0/src/tbb/mailbox.h +246 -0
- pxr_tbb_dev-2022.1.0/src/tbb/main.cpp +161 -0
- pxr_tbb_dev-2022.1.0/src/tbb/main.h +99 -0
- pxr_tbb_dev-2022.1.0/src/tbb/market.cpp +143 -0
- pxr_tbb_dev-2022.1.0/src/tbb/market.h +78 -0
- pxr_tbb_dev-2022.1.0/src/tbb/market_concurrent_monitor.h +116 -0
- pxr_tbb_dev-2022.1.0/src/tbb/misc.cpp +156 -0
- pxr_tbb_dev-2022.1.0/src/tbb/misc.h +287 -0
- pxr_tbb_dev-2022.1.0/src/tbb/misc_ex.cpp +409 -0
- pxr_tbb_dev-2022.1.0/src/tbb/observer_proxy.cpp +319 -0
- pxr_tbb_dev-2022.1.0/src/tbb/observer_proxy.h +152 -0
- pxr_tbb_dev-2022.1.0/src/tbb/parallel_pipeline.cpp +471 -0
- pxr_tbb_dev-2022.1.0/src/tbb/permit_manager.h +61 -0
- pxr_tbb_dev-2022.1.0/src/tbb/pm_client.h +76 -0
- pxr_tbb_dev-2022.1.0/src/tbb/private_server.cpp +436 -0
- pxr_tbb_dev-2022.1.0/src/tbb/profiling.cpp +265 -0
- pxr_tbb_dev-2022.1.0/src/tbb/queuing_rw_mutex.cpp +617 -0
- pxr_tbb_dev-2022.1.0/src/tbb/rml_base.h +163 -0
- pxr_tbb_dev-2022.1.0/src/tbb/rml_tbb.cpp +112 -0
- pxr_tbb_dev-2022.1.0/src/tbb/rml_tbb.h +94 -0
- pxr_tbb_dev-2022.1.0/src/tbb/rml_thread_monitor.h +247 -0
- pxr_tbb_dev-2022.1.0/src/tbb/rtm_mutex.cpp +121 -0
- pxr_tbb_dev-2022.1.0/src/tbb/rtm_rw_mutex.cpp +271 -0
- pxr_tbb_dev-2022.1.0/src/tbb/scheduler_common.h +611 -0
- pxr_tbb_dev-2022.1.0/src/tbb/semaphore.cpp +92 -0
- pxr_tbb_dev-2022.1.0/src/tbb/semaphore.h +307 -0
- pxr_tbb_dev-2022.1.0/src/tbb/small_object_pool.cpp +156 -0
- pxr_tbb_dev-2022.1.0/src/tbb/small_object_pool_impl.h +59 -0
- pxr_tbb_dev-2022.1.0/src/tbb/task.cpp +257 -0
- pxr_tbb_dev-2022.1.0/src/tbb/task_dispatcher.cpp +244 -0
- pxr_tbb_dev-2022.1.0/src/tbb/task_dispatcher.h +479 -0
- pxr_tbb_dev-2022.1.0/src/tbb/task_group_context.cpp +358 -0
- pxr_tbb_dev-2022.1.0/src/tbb/task_stream.h +286 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tbb.rc +74 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tcm.h +174 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tcm_adaptor.cpp +327 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tcm_adaptor.h +63 -0
- pxr_tbb_dev-2022.1.0/src/tbb/thread_control_monitor.h +116 -0
- pxr_tbb_dev-2022.1.0/src/tbb/thread_data.h +262 -0
- pxr_tbb_dev-2022.1.0/src/tbb/thread_dispatcher.cpp +236 -0
- pxr_tbb_dev-2022.1.0/src/tbb/thread_dispatcher.h +107 -0
- pxr_tbb_dev-2022.1.0/src/tbb/thread_dispatcher_client.h +69 -0
- pxr_tbb_dev-2022.1.0/src/tbb/thread_request_serializer.cpp +139 -0
- pxr_tbb_dev-2022.1.0/src/tbb/thread_request_serializer.h +84 -0
- pxr_tbb_dev-2022.1.0/src/tbb/threading_control.cpp +411 -0
- pxr_tbb_dev-2022.1.0/src/tbb/threading_control.h +154 -0
- pxr_tbb_dev-2022.1.0/src/tbb/threading_control_client.h +58 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tls.h +81 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tools_api/disable_warnings.h +39 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify.h +4677 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify_config.h +775 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify_static.c +1807 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify_static.h +378 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify_types.h +75 -0
- pxr_tbb_dev-2022.1.0/src/tbb/tools_api/legacy/ittnotify.h +1015 -0
- pxr_tbb_dev-2022.1.0/src/tbb/version.cpp +26 -0
- pxr_tbb_dev-2022.1.0/src/tbb/waiters.h +225 -0
- pxr_tbb_dev-2022.1.0/src/tbbbind/CMakeLists.txt +105 -0
- pxr_tbb_dev-2022.1.0/src/tbbbind/def/lin32-tbbbind.def +26 -0
- pxr_tbb_dev-2022.1.0/src/tbbbind/def/lin64-tbbbind.def +26 -0
- pxr_tbb_dev-2022.1.0/src/tbbbind/def/mac64-tbbbind.def +18 -0
- pxr_tbb_dev-2022.1.0/src/tbbbind/def/win32-tbbbind.def +23 -0
- pxr_tbb_dev-2022.1.0/src/tbbbind/def/win64-tbbbind.def +23 -0
- pxr_tbb_dev-2022.1.0/src/tbbbind/tbb_bind.cpp +604 -0
- pxr_tbb_dev-2022.1.0/src/tbbbind/tbb_bind.rc +74 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/CMakeLists.txt +123 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/Customize.h +139 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/MapMemory.h +205 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/Statistics.h +125 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/Synchronize.h +97 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/TypeDefinitions.h +58 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/backend.cpp +1513 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/backend.h +392 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/backref.cpp +358 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/lin32-tbbmalloc.def +73 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/lin64-tbbmalloc.def +73 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/mac64-tbbmalloc.def +44 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/win32-tbbmalloc.def +47 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/win64-tbbmalloc.def +47 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/frontend.cpp +3309 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/large_objects.cpp +1073 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/large_objects.h +380 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/shared_utils.h +146 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/tbbmalloc.cpp +115 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/tbbmalloc.rc +74 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/tbbmalloc_internal.h +763 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc/tbbmalloc_internal_api.h +40 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/CMakeLists.txt +103 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/def/lin32-proxy.def +55 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/def/lin64-proxy.def +55 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/function_replacement.cpp +582 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/function_replacement.h +79 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/proxy.cpp +796 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/proxy.h +55 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/proxy_overload_osx.h +186 -0
- pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/tbbmalloc_proxy.rc +74 -0
- pxr_tbb_dev-2022.1.0/third-party-programs.txt +198 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# Prerequisites
|
|
2
|
+
*.d
|
|
3
|
+
|
|
4
|
+
# Compiled Object files
|
|
5
|
+
*.slo
|
|
6
|
+
*.lo
|
|
7
|
+
*.o
|
|
8
|
+
*.obj
|
|
9
|
+
|
|
10
|
+
# Precompiled Headers
|
|
11
|
+
*.gch
|
|
12
|
+
*.pch
|
|
13
|
+
|
|
14
|
+
# Compiled Dynamic libraries
|
|
15
|
+
*.so
|
|
16
|
+
*.dylib
|
|
17
|
+
*.dll
|
|
18
|
+
|
|
19
|
+
# Fortran module files
|
|
20
|
+
*.mod
|
|
21
|
+
*.smod
|
|
22
|
+
|
|
23
|
+
# Compiled Static libraries
|
|
24
|
+
*.lai
|
|
25
|
+
*.la
|
|
26
|
+
*.a
|
|
27
|
+
*.lib
|
|
28
|
+
|
|
29
|
+
# Executables
|
|
30
|
+
*.exe
|
|
31
|
+
*.out
|
|
32
|
+
*.app
|
|
33
|
+
!test/baseline/**/*.out
|
|
34
|
+
|
|
35
|
+
# Environment
|
|
36
|
+
.DS_Store
|
|
37
|
+
.AppleDouble
|
|
38
|
+
|
|
39
|
+
# Development
|
|
40
|
+
build/
|
|
41
|
+
.vscode
|
|
42
|
+
.project
|
|
43
|
+
.settings
|
|
44
|
+
.idea/
|
|
45
|
+
.history/
|
|
46
|
+
|
|
47
|
+
# CMake
|
|
48
|
+
cmake-build-*/
|
|
49
|
+
|
|
50
|
+
# Python byte-compiled / optimized / DLL files
|
|
51
|
+
__pycache__/
|
|
52
|
+
*.py[cod]
|
|
53
|
+
*$py.class
|
|
54
|
+
|
|
55
|
+
# Python Distribution / packaging
|
|
56
|
+
.Python
|
|
57
|
+
build/
|
|
58
|
+
develop-eggs/
|
|
59
|
+
dist/
|
|
60
|
+
downloads/
|
|
61
|
+
eggs/
|
|
62
|
+
.eggs/
|
|
63
|
+
lib/
|
|
64
|
+
lib64/
|
|
65
|
+
parts/
|
|
66
|
+
sdist/
|
|
67
|
+
var/
|
|
68
|
+
wheels/
|
|
69
|
+
share/python-wheels/
|
|
70
|
+
*.egg-info/
|
|
71
|
+
.installed.cfg
|
|
72
|
+
*.egg
|
|
73
|
+
MANIFEST
|
|
74
|
+
_skbuild/
|
|
75
|
+
wheelhouse/
|
|
76
|
+
|
|
77
|
+
# Unit test / coverage reports
|
|
78
|
+
.coverage
|
|
79
|
+
.coverage.*
|
|
80
|
+
.cache
|
|
81
|
+
.pytest_cache/
|
|
82
|
+
.benchmarks/
|
|
83
|
+
|
|
84
|
+
# Environments
|
|
85
|
+
.env
|
|
86
|
+
.venv
|
|
87
|
+
env/
|
|
88
|
+
venv/
|
|
89
|
+
ENV/
|
|
90
|
+
env.bak/
|
|
91
|
+
venv.bak/
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
# Copyright (c) 2021-2024 Intel Corporation
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# DISCLAIMER: Bazel support is community-based. The maintainers do not
|
|
16
|
+
# use Bazel internally. The Bazel build can have security risks or
|
|
17
|
+
# optimization gaps.
|
|
18
|
+
|
|
19
|
+
package(
|
|
20
|
+
default_visibility = ["//visibility:public"],
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
cc_library(
|
|
24
|
+
name = "tbb",
|
|
25
|
+
srcs = glob([
|
|
26
|
+
"src/tbb/*.cpp",
|
|
27
|
+
"src/tbb/*.h",
|
|
28
|
+
]) + select({
|
|
29
|
+
"@platforms//cpu:x86_64": glob(["src/tbb/tools_api/**/*.h"]),
|
|
30
|
+
"//conditions:default": [],
|
|
31
|
+
}),
|
|
32
|
+
hdrs = glob([
|
|
33
|
+
"include/tbb/*.h",
|
|
34
|
+
"include/oneapi/*.h",
|
|
35
|
+
"include/oneapi/tbb/*.h",
|
|
36
|
+
"include/oneapi/tbb/detail/*.h",
|
|
37
|
+
]),
|
|
38
|
+
copts = ["-w"] + select({
|
|
39
|
+
"@platforms//os:windows": [""],
|
|
40
|
+
"@platforms//cpu:arm64": [""],
|
|
41
|
+
"//conditions:default": ["-mwaitpkg"],
|
|
42
|
+
}),
|
|
43
|
+
defines =
|
|
44
|
+
select({
|
|
45
|
+
"@platforms//cpu:x86_64": ["__TBB_NO_IMPLICIT_LINKAGE"],
|
|
46
|
+
"//conditions:default": [
|
|
47
|
+
"USE_PTHREAD",
|
|
48
|
+
],
|
|
49
|
+
}) +
|
|
50
|
+
select({
|
|
51
|
+
"@platforms//os:osx": ["_XOPEN_SOURCE"],
|
|
52
|
+
"//conditions:default": [],
|
|
53
|
+
}),
|
|
54
|
+
includes = [
|
|
55
|
+
"include",
|
|
56
|
+
],
|
|
57
|
+
linkopts =
|
|
58
|
+
select({
|
|
59
|
+
"@platforms//os:windows": [],
|
|
60
|
+
"@platforms//os:linux": [
|
|
61
|
+
"-ldl",
|
|
62
|
+
"-pthread",
|
|
63
|
+
"-lrt",
|
|
64
|
+
],
|
|
65
|
+
"//conditions:default": ["-pthread"],
|
|
66
|
+
}),
|
|
67
|
+
local_defines = select({
|
|
68
|
+
"@platforms//cpu:x86_64": [
|
|
69
|
+
"__TBB_USE_ITT_NOTIFY",
|
|
70
|
+
],
|
|
71
|
+
"//conditions:default": [],
|
|
72
|
+
}) + [
|
|
73
|
+
"__TBB_BUILD",
|
|
74
|
+
],
|
|
75
|
+
textual_hdrs = select({
|
|
76
|
+
"@platforms//cpu:x86_64": [
|
|
77
|
+
"src/tbb/tools_api/ittnotify_static.c",
|
|
78
|
+
],
|
|
79
|
+
"//conditions:default": [],
|
|
80
|
+
}),
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
cc_library(
|
|
84
|
+
name = "tbbmalloc",
|
|
85
|
+
srcs =
|
|
86
|
+
glob([
|
|
87
|
+
"src/tbbmalloc/*.h",
|
|
88
|
+
"src/tbb/*.h",
|
|
89
|
+
"src/tbbmalloc_proxy/*.h",
|
|
90
|
+
]) + [
|
|
91
|
+
"src/tbbmalloc/backend.cpp",
|
|
92
|
+
"src/tbbmalloc/backref.cpp",
|
|
93
|
+
"src/tbbmalloc/frontend.cpp",
|
|
94
|
+
"src/tbbmalloc/large_objects.cpp",
|
|
95
|
+
"src/tbbmalloc/tbbmalloc.cpp",
|
|
96
|
+
],
|
|
97
|
+
hdrs = glob([
|
|
98
|
+
"include/tbb/*.h",
|
|
99
|
+
"include/oneapi/tbb/detail/*.h",
|
|
100
|
+
"include/oneapi/tbb/*.h",
|
|
101
|
+
]),
|
|
102
|
+
includes = [
|
|
103
|
+
"include",
|
|
104
|
+
],
|
|
105
|
+
local_defines = [
|
|
106
|
+
"__TBBMALLOC_BUILD",
|
|
107
|
+
],
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
cc_library(
|
|
111
|
+
name = "tbbmalloc_proxy",
|
|
112
|
+
srcs = [
|
|
113
|
+
"src/tbbmalloc_proxy/function_replacement.cpp",
|
|
114
|
+
"src/tbbmalloc_proxy/proxy.cpp",
|
|
115
|
+
],
|
|
116
|
+
deps = [
|
|
117
|
+
":tbbmalloc",
|
|
118
|
+
],
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
cc_test(
|
|
122
|
+
name = "test_mutex",
|
|
123
|
+
srcs = [
|
|
124
|
+
"test/tbb/test_mutex.cpp",
|
|
125
|
+
"test/tbb/test_mutex.h"
|
|
126
|
+
] + glob([
|
|
127
|
+
"test/common/*.h",
|
|
128
|
+
]),
|
|
129
|
+
includes = ["test"],
|
|
130
|
+
deps = [
|
|
131
|
+
":tbb",
|
|
132
|
+
],
|
|
133
|
+
)
|
|
134
|
+
|
|
135
|
+
cc_test(
|
|
136
|
+
name = "test_parallel_for",
|
|
137
|
+
srcs = [
|
|
138
|
+
"test/tbb/test_parallel_for.cpp",
|
|
139
|
+
"test/tbb/test_partitioner.h"
|
|
140
|
+
] + glob([
|
|
141
|
+
"test/common/*.h",
|
|
142
|
+
]),
|
|
143
|
+
includes = ["test"],
|
|
144
|
+
deps = [
|
|
145
|
+
":tbb",
|
|
146
|
+
],
|
|
147
|
+
)
|
|
148
|
+
|
|
149
|
+
cc_test(
|
|
150
|
+
name = "test_parallel_reduce",
|
|
151
|
+
srcs = [
|
|
152
|
+
"test/tbb/test_parallel_reduce.cpp",
|
|
153
|
+
] + glob([
|
|
154
|
+
"test/common/*.h",
|
|
155
|
+
]),
|
|
156
|
+
includes = ["test"],
|
|
157
|
+
deps = [
|
|
158
|
+
":tbb",
|
|
159
|
+
],
|
|
160
|
+
)
|
|
161
|
+
|
|
162
|
+
cc_test(
|
|
163
|
+
name = "test_task",
|
|
164
|
+
srcs = [
|
|
165
|
+
"test/tbb/test_task.cpp",
|
|
166
|
+
] + glob([
|
|
167
|
+
"test/common/*.h",
|
|
168
|
+
]),
|
|
169
|
+
includes = ["test"],
|
|
170
|
+
deps = [
|
|
171
|
+
":tbb",
|
|
172
|
+
],
|
|
173
|
+
)
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# Bazel* build support
|
|
2
|
+
|
|
3
|
+
The main build system of oneTBB is CMake*.
|
|
4
|
+
[Bazel*](https://bazel.build/) support is community-based.
|
|
5
|
+
The Bazel configuration may not include recommended compiler and/or linker flags used in the official CMake configuration.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
**NOTE**
|
|
9
|
+
|
|
10
|
+
Bazel is not recommended for use by oneTBB maintainers. Thus, it is not used internally.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
The Bazel oneTBB build is currently only intended for a subset of oneTBB that suffices restricted use cases.
|
|
16
|
+
Pull requests to improve the Bazel build experience are welcome.
|
|
17
|
+
|
|
18
|
+
The standard Bazel approach to handling third-party libraries is static linking. It is the best practice within the Bazel ecosystem.
|
|
19
|
+
|
|
20
|
+
## Using oneTBB as a dependency
|
|
21
|
+
|
|
22
|
+
### Traditional WORKSPACE approach
|
|
23
|
+
|
|
24
|
+
This example demonstrates how to use oneTBB as a dependency within a Bazel project.
|
|
25
|
+
|
|
26
|
+
The following file structure is assumed:
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
example
|
|
30
|
+
├── .bazelrc
|
|
31
|
+
├── BUILD.bazel
|
|
32
|
+
├── main.cpp
|
|
33
|
+
└── WORKSPACE.bazel
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_WORKSPACE.bazel_:
|
|
37
|
+
```python
|
|
38
|
+
load("@platforms//tools/build_defs/repo:git.bzl", "git_repository")
|
|
39
|
+
|
|
40
|
+
git_repository(
|
|
41
|
+
name = "oneTBB",
|
|
42
|
+
branch = "master",
|
|
43
|
+
remote = "https://github.com/uxlfoundation/oneTBB/",
|
|
44
|
+
)
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
In the *WORKSPACE* file, the oneTBB GitHub* repository is fetched.
|
|
48
|
+
|
|
49
|
+
_BUILD.bazel_:
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
cc_binary(
|
|
53
|
+
name = "Demo",
|
|
54
|
+
srcs = ["main.cpp"],
|
|
55
|
+
deps = ["@oneTBB//:tbb"],
|
|
56
|
+
)
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
The *BUILD* file defines a binary named `Demo` that has a dependency to oneTBB.
|
|
60
|
+
|
|
61
|
+
_main.cpp_:
|
|
62
|
+
|
|
63
|
+
```c++
|
|
64
|
+
#include "oneapi/tbb/version.h"
|
|
65
|
+
|
|
66
|
+
#include <iostream>
|
|
67
|
+
|
|
68
|
+
int main() {
|
|
69
|
+
std::cout << "Hello from oneTBB "
|
|
70
|
+
<< TBB_VERSION_MAJOR << "."
|
|
71
|
+
<< TBB_VERSION_MINOR << "."
|
|
72
|
+
<< TBB_VERSION_PATCH
|
|
73
|
+
<< "!" << std::endl;
|
|
74
|
+
|
|
75
|
+
return 0;
|
|
76
|
+
}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
The expected output of this program is the current version of oneTBB.
|
|
80
|
+
|
|
81
|
+
Switch to the folder with the files created earlier and run the binary with `bazel run //:Demo`.
|
|
82
|
+
|
|
83
|
+
### Bzlmod
|
|
84
|
+
|
|
85
|
+
If you use Bzlmod, you can fetch oneTBB with the [Bazel Central Registry](https://registry.bazel.build/).
|
|
86
|
+
|
|
87
|
+
Add the following line to your `MODULE.bazel` file:
|
|
88
|
+
|
|
89
|
+
```bazel
|
|
90
|
+
bazel_dep(name = "onetbb", version = "2021.13.0")
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Build oneTBB using Bazel
|
|
94
|
+
|
|
95
|
+
Run ```bazel build //...``` in the oneTBB root directory.
|
|
96
|
+
|
|
97
|
+
## Compiler support
|
|
98
|
+
|
|
99
|
+
The Bazel build uses the compiler flag `-mwaitpkg` in non-Windows* builds.
|
|
100
|
+
This flag is supported by the GNU* Compiler Collection (GCC) version 9.3, Clang* 12, and newer versions of those tools.
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
**NOTE**
|
|
105
|
+
|
|
106
|
+
To use the Bazel build with earlier versions of GCC, remove `-mwaitpkg` flag as it leads to errors during compilation.
|
|
107
|
+
|
|
108
|
+
---
|