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.
Files changed (692) hide show
  1. pxr_tbb_dev-2022.1.0/.gitignore +91 -0
  2. pxr_tbb_dev-2022.1.0/BUILD.bazel +173 -0
  3. pxr_tbb_dev-2022.1.0/Bazel.md +108 -0
  4. pxr_tbb_dev-2022.1.0/CMakeLists.txt +384 -0
  5. pxr_tbb_dev-2022.1.0/CODEOWNERS +26 -0
  6. pxr_tbb_dev-2022.1.0/CODE_OF_CONDUCT.md +134 -0
  7. pxr_tbb_dev-2022.1.0/CONTRIBUTING.md +45 -0
  8. pxr_tbb_dev-2022.1.0/INSTALL.md +135 -0
  9. pxr_tbb_dev-2022.1.0/LICENSE.txt +201 -0
  10. pxr_tbb_dev-2022.1.0/MAINTAINERS.md +143 -0
  11. pxr_tbb_dev-2022.1.0/MODULE.bazel +24 -0
  12. pxr_tbb_dev-2022.1.0/MODULE.bazel.lock +65 -0
  13. pxr_tbb_dev-2022.1.0/PKG-INFO +31 -0
  14. pxr_tbb_dev-2022.1.0/README.md +16 -0
  15. pxr_tbb_dev-2022.1.0/RELEASE_NOTES.md +51 -0
  16. pxr_tbb_dev-2022.1.0/SECURITY.md +66 -0
  17. pxr_tbb_dev-2022.1.0/SUPPORT.md +35 -0
  18. pxr_tbb_dev-2022.1.0/SYSTEM_REQUIREMENTS.md +86 -0
  19. pxr_tbb_dev-2022.1.0/WASM_Support.md +81 -0
  20. pxr_tbb_dev-2022.1.0/WORKSPACE.bazel +19 -0
  21. pxr_tbb_dev-2022.1.0/cmake/README.md +335 -0
  22. pxr_tbb_dev-2022.1.0/cmake/android/device_environment_cleanup.cmake +17 -0
  23. pxr_tbb_dev-2022.1.0/cmake/android/environment.cmake +35 -0
  24. pxr_tbb_dev-2022.1.0/cmake/android/test_launcher.cmake +27 -0
  25. pxr_tbb_dev-2022.1.0/cmake/compilers/AppleClang.cmake +51 -0
  26. pxr_tbb_dev-2022.1.0/cmake/compilers/Clang.cmake +91 -0
  27. pxr_tbb_dev-2022.1.0/cmake/compilers/GNU.cmake +122 -0
  28. pxr_tbb_dev-2022.1.0/cmake/compilers/Intel.cmake +38 -0
  29. pxr_tbb_dev-2022.1.0/cmake/compilers/IntelLLVM.cmake +28 -0
  30. pxr_tbb_dev-2022.1.0/cmake/compilers/MSVC.cmake +103 -0
  31. pxr_tbb_dev-2022.1.0/cmake/compilers/QCC.cmake +18 -0
  32. pxr_tbb_dev-2022.1.0/cmake/config_generation.cmake +142 -0
  33. pxr_tbb_dev-2022.1.0/cmake/hwloc_detection.cmake +64 -0
  34. pxr_tbb_dev-2022.1.0/cmake/memcheck.cmake +112 -0
  35. pxr_tbb_dev-2022.1.0/cmake/packaging.cmake +24 -0
  36. pxr_tbb_dev-2022.1.0/cmake/post_install/CMakeLists.txt +22 -0
  37. pxr_tbb_dev-2022.1.0/cmake/resumable_tasks.cmake +31 -0
  38. pxr_tbb_dev-2022.1.0/cmake/sanitize.cmake +43 -0
  39. pxr_tbb_dev-2022.1.0/cmake/scripts/cmake_gen_github_configs.cmake +49 -0
  40. pxr_tbb_dev-2022.1.0/cmake/suppressions/lsan.suppressions +2 -0
  41. pxr_tbb_dev-2022.1.0/cmake/suppressions/tsan.suppressions +4 -0
  42. pxr_tbb_dev-2022.1.0/cmake/templates/TBBConfig.cmake.in +128 -0
  43. pxr_tbb_dev-2022.1.0/cmake/templates/TBBConfigVersion.cmake.in +24 -0
  44. pxr_tbb_dev-2022.1.0/cmake/test_spec.cmake +35 -0
  45. pxr_tbb_dev-2022.1.0/cmake/toolchains/mips.cmake +40 -0
  46. pxr_tbb_dev-2022.1.0/cmake/toolchains/riscv64.cmake +34 -0
  47. pxr_tbb_dev-2022.1.0/cmake/utils.cmake +74 -0
  48. pxr_tbb_dev-2022.1.0/cmake/vars_utils.cmake +56 -0
  49. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_nd_range.h +195 -0
  50. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_range.h +169 -0
  51. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_range2d.h +111 -0
  52. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_range3d.h +130 -0
  53. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/blocked_rangeNd.h +147 -0
  54. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/cache_aligned_allocator.h +189 -0
  55. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/collaborative_call_once.h +256 -0
  56. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/combinable.h +69 -0
  57. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_hash_map.h +1668 -0
  58. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_lru_cache.h +374 -0
  59. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_map.h +350 -0
  60. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_priority_queue.h +490 -0
  61. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_queue.h +704 -0
  62. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_set.h +267 -0
  63. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_unordered_map.h +414 -0
  64. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_unordered_set.h +333 -0
  65. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/concurrent_vector.h +1129 -0
  66. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_aggregator.h +176 -0
  67. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_aligned_space.h +46 -0
  68. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_allocator_traits.h +107 -0
  69. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_assert.h +64 -0
  70. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_attach.h +32 -0
  71. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_concurrent_queue_base.h +650 -0
  72. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_concurrent_skip_list.h +1290 -0
  73. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_concurrent_unordered_base.h +1515 -0
  74. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_config.h +547 -0
  75. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_containers_helpers.h +67 -0
  76. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_exception.h +94 -0
  77. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_export.h +54 -0
  78. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_body_impl.h +429 -0
  79. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_cache_impl.h +501 -0
  80. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_impl.h +573 -0
  81. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_indexer_impl.h +370 -0
  82. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_item_buffer_impl.h +422 -0
  83. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_join_impl.h +1970 -0
  84. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_node_impl.h +894 -0
  85. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_node_set_impl.h +265 -0
  86. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_nodes_deduction.h +277 -0
  87. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_tagged_buffer_impl.h +380 -0
  88. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_trace_impl.h +364 -0
  89. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_flow_graph_types_impl.h +422 -0
  90. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_hash_compare.h +147 -0
  91. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_intrusive_list_node.h +41 -0
  92. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_machine.h +373 -0
  93. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_mutex_common.h +61 -0
  94. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_namespace_injection.h +24 -0
  95. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_node_handle.h +162 -0
  96. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_pipeline_filters.h +461 -0
  97. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_pipeline_filters_deduction.h +46 -0
  98. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_range_common.h +133 -0
  99. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_rtm_mutex.h +162 -0
  100. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_rtm_rw_mutex.h +215 -0
  101. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_scoped_lock.h +174 -0
  102. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_segment_table.h +581 -0
  103. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_small_object_pool.h +108 -0
  104. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_string_resource.h +78 -0
  105. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_task.h +302 -0
  106. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_task_handle.h +123 -0
  107. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_template_helpers.h +407 -0
  108. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_utils.h +393 -0
  109. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/detail/_waitable_atomic.h +90 -0
  110. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/enumerable_thread_specific.h +1121 -0
  111. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/flow_graph.h +3718 -0
  112. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/flow_graph_abstractions.h +51 -0
  113. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/global_control.h +200 -0
  114. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/info.h +125 -0
  115. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/memory_pool.h +272 -0
  116. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/mutex.h +93 -0
  117. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/null_mutex.h +80 -0
  118. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/null_rw_mutex.h +87 -0
  119. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_for.h +469 -0
  120. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_for_each.h +712 -0
  121. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_invoke.h +227 -0
  122. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_pipeline.h +153 -0
  123. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_reduce.h +772 -0
  124. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_scan.h +630 -0
  125. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/parallel_sort.h +288 -0
  126. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/partitioner.h +681 -0
  127. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/profiling.h +243 -0
  128. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/queuing_mutex.h +192 -0
  129. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/queuing_rw_mutex.h +207 -0
  130. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/rw_mutex.h +216 -0
  131. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/scalable_allocator.h +335 -0
  132. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/spin_mutex.h +134 -0
  133. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/spin_rw_mutex.h +229 -0
  134. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/task.h +37 -0
  135. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/task_arena.h +630 -0
  136. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/task_group.h +712 -0
  137. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/task_scheduler_observer.h +116 -0
  138. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/tbb_allocator.h +126 -0
  139. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/tbbmalloc_proxy.h +65 -0
  140. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/tick_count.h +99 -0
  141. pxr_tbb_dev-2022.1.0/include/oneapi/tbb/version.h +118 -0
  142. pxr_tbb_dev-2022.1.0/include/oneapi/tbb.h +74 -0
  143. pxr_tbb_dev-2022.1.0/include/tbb/blocked_nd_range.h +17 -0
  144. pxr_tbb_dev-2022.1.0/include/tbb/blocked_range.h +17 -0
  145. pxr_tbb_dev-2022.1.0/include/tbb/blocked_range2d.h +17 -0
  146. pxr_tbb_dev-2022.1.0/include/tbb/blocked_range3d.h +17 -0
  147. pxr_tbb_dev-2022.1.0/include/tbb/blocked_rangeNd.h +17 -0
  148. pxr_tbb_dev-2022.1.0/include/tbb/cache_aligned_allocator.h +17 -0
  149. pxr_tbb_dev-2022.1.0/include/tbb/collaborative_call_once.h +17 -0
  150. pxr_tbb_dev-2022.1.0/include/tbb/combinable.h +17 -0
  151. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_hash_map.h +17 -0
  152. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_lru_cache.h +17 -0
  153. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_map.h +17 -0
  154. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_priority_queue.h +17 -0
  155. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_queue.h +17 -0
  156. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_set.h +17 -0
  157. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_unordered_map.h +17 -0
  158. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_unordered_set.h +17 -0
  159. pxr_tbb_dev-2022.1.0/include/tbb/concurrent_vector.h +17 -0
  160. pxr_tbb_dev-2022.1.0/include/tbb/enumerable_thread_specific.h +17 -0
  161. pxr_tbb_dev-2022.1.0/include/tbb/flow_graph.h +17 -0
  162. pxr_tbb_dev-2022.1.0/include/tbb/flow_graph_abstractions.h +17 -0
  163. pxr_tbb_dev-2022.1.0/include/tbb/global_control.h +17 -0
  164. pxr_tbb_dev-2022.1.0/include/tbb/info.h +17 -0
  165. pxr_tbb_dev-2022.1.0/include/tbb/memory_pool.h +17 -0
  166. pxr_tbb_dev-2022.1.0/include/tbb/mutex.h +17 -0
  167. pxr_tbb_dev-2022.1.0/include/tbb/null_mutex.h +17 -0
  168. pxr_tbb_dev-2022.1.0/include/tbb/null_rw_mutex.h +17 -0
  169. pxr_tbb_dev-2022.1.0/include/tbb/parallel_for.h +17 -0
  170. pxr_tbb_dev-2022.1.0/include/tbb/parallel_for_each.h +17 -0
  171. pxr_tbb_dev-2022.1.0/include/tbb/parallel_invoke.h +17 -0
  172. pxr_tbb_dev-2022.1.0/include/tbb/parallel_pipeline.h +17 -0
  173. pxr_tbb_dev-2022.1.0/include/tbb/parallel_reduce.h +17 -0
  174. pxr_tbb_dev-2022.1.0/include/tbb/parallel_scan.h +17 -0
  175. pxr_tbb_dev-2022.1.0/include/tbb/parallel_sort.h +17 -0
  176. pxr_tbb_dev-2022.1.0/include/tbb/partitioner.h +17 -0
  177. pxr_tbb_dev-2022.1.0/include/tbb/profiling.h +17 -0
  178. pxr_tbb_dev-2022.1.0/include/tbb/queuing_mutex.h +17 -0
  179. pxr_tbb_dev-2022.1.0/include/tbb/queuing_rw_mutex.h +17 -0
  180. pxr_tbb_dev-2022.1.0/include/tbb/rw_mutex.h +17 -0
  181. pxr_tbb_dev-2022.1.0/include/tbb/scalable_allocator.h +17 -0
  182. pxr_tbb_dev-2022.1.0/include/tbb/spin_mutex.h +17 -0
  183. pxr_tbb_dev-2022.1.0/include/tbb/spin_rw_mutex.h +17 -0
  184. pxr_tbb_dev-2022.1.0/include/tbb/task.h +17 -0
  185. pxr_tbb_dev-2022.1.0/include/tbb/task_arena.h +17 -0
  186. pxr_tbb_dev-2022.1.0/include/tbb/task_group.h +17 -0
  187. pxr_tbb_dev-2022.1.0/include/tbb/task_scheduler_observer.h +17 -0
  188. pxr_tbb_dev-2022.1.0/include/tbb/tbb.h +17 -0
  189. pxr_tbb_dev-2022.1.0/include/tbb/tbb_allocator.h +17 -0
  190. pxr_tbb_dev-2022.1.0/include/tbb/tbbmalloc_proxy.h +17 -0
  191. pxr_tbb_dev-2022.1.0/include/tbb/tick_count.h +17 -0
  192. pxr_tbb_dev-2022.1.0/include/tbb/version.h +17 -0
  193. pxr_tbb_dev-2022.1.0/integration/cmake/generate_vars.cmake +51 -0
  194. pxr_tbb_dev-2022.1.0/integration/linux/modulefiles/tbb +69 -0
  195. pxr_tbb_dev-2022.1.0/integration/linux/modulefiles/tbb32 +69 -0
  196. pxr_tbb_dev-2022.1.0/integration/linux/oneapi/vars.sh +34 -0
  197. pxr_tbb_dev-2022.1.0/integration/linux/sys_check/sys_check.sh +21 -0
  198. pxr_tbb_dev-2022.1.0/integration/pkg-config/tbb.pc.in +24 -0
  199. pxr_tbb_dev-2022.1.0/integration/windows/nuget/inteltbb.devel.win.targets +64 -0
  200. pxr_tbb_dev-2022.1.0/integration/windows/nuget/inteltbb.redist.win.targets +30 -0
  201. pxr_tbb_dev-2022.1.0/integration/windows/oneapi/vars.bat +56 -0
  202. pxr_tbb_dev-2022.1.0/integration/windows/sys_check/sys_check.bat +18 -0
  203. pxr_tbb_dev-2022.1.0/oneTBB/.bazelrc +19 -0
  204. pxr_tbb_dev-2022.1.0/oneTBB/.bazelversion +1 -0
  205. pxr_tbb_dev-2022.1.0/oneTBB/.gitattributes +45 -0
  206. pxr_tbb_dev-2022.1.0/oneTBB/.gitignore +62 -0
  207. pxr_tbb_dev-2022.1.0/oneTBB/BUILD.bazel +173 -0
  208. pxr_tbb_dev-2022.1.0/oneTBB/Bazel.md +108 -0
  209. pxr_tbb_dev-2022.1.0/oneTBB/CMakeLists.txt +378 -0
  210. pxr_tbb_dev-2022.1.0/oneTBB/CODEOWNERS +26 -0
  211. pxr_tbb_dev-2022.1.0/oneTBB/CODE_OF_CONDUCT.md +134 -0
  212. pxr_tbb_dev-2022.1.0/oneTBB/CONTRIBUTING.md +45 -0
  213. pxr_tbb_dev-2022.1.0/oneTBB/INSTALL.md +135 -0
  214. pxr_tbb_dev-2022.1.0/oneTBB/LICENSE.txt +201 -0
  215. pxr_tbb_dev-2022.1.0/oneTBB/MAINTAINERS.md +143 -0
  216. pxr_tbb_dev-2022.1.0/oneTBB/MODULE.bazel +24 -0
  217. pxr_tbb_dev-2022.1.0/oneTBB/MODULE.bazel.lock +65 -0
  218. pxr_tbb_dev-2022.1.0/oneTBB/RELEASE_NOTES.md +51 -0
  219. pxr_tbb_dev-2022.1.0/oneTBB/SECURITY.md +66 -0
  220. pxr_tbb_dev-2022.1.0/oneTBB/SUPPORT.md +35 -0
  221. pxr_tbb_dev-2022.1.0/oneTBB/SYSTEM_REQUIREMENTS.md +86 -0
  222. pxr_tbb_dev-2022.1.0/oneTBB/WASM_Support.md +81 -0
  223. pxr_tbb_dev-2022.1.0/oneTBB/WORKSPACE.bazel +19 -0
  224. pxr_tbb_dev-2022.1.0/oneTBB/cmake/README.md +335 -0
  225. pxr_tbb_dev-2022.1.0/oneTBB/cmake/android/device_environment_cleanup.cmake +17 -0
  226. pxr_tbb_dev-2022.1.0/oneTBB/cmake/android/environment.cmake +35 -0
  227. pxr_tbb_dev-2022.1.0/oneTBB/cmake/android/test_launcher.cmake +27 -0
  228. pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/AppleClang.cmake +51 -0
  229. pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/Clang.cmake +91 -0
  230. pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/GNU.cmake +122 -0
  231. pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/Intel.cmake +38 -0
  232. pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/IntelLLVM.cmake +28 -0
  233. pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/MSVC.cmake +103 -0
  234. pxr_tbb_dev-2022.1.0/oneTBB/cmake/compilers/QCC.cmake +18 -0
  235. pxr_tbb_dev-2022.1.0/oneTBB/cmake/config_generation.cmake +142 -0
  236. pxr_tbb_dev-2022.1.0/oneTBB/cmake/hwloc_detection.cmake +64 -0
  237. pxr_tbb_dev-2022.1.0/oneTBB/cmake/memcheck.cmake +112 -0
  238. pxr_tbb_dev-2022.1.0/oneTBB/cmake/packaging.cmake +24 -0
  239. pxr_tbb_dev-2022.1.0/oneTBB/cmake/post_install/CMakeLists.txt +22 -0
  240. pxr_tbb_dev-2022.1.0/oneTBB/cmake/resumable_tasks.cmake +31 -0
  241. pxr_tbb_dev-2022.1.0/oneTBB/cmake/sanitize.cmake +43 -0
  242. pxr_tbb_dev-2022.1.0/oneTBB/cmake/scripts/cmake_gen_github_configs.cmake +49 -0
  243. pxr_tbb_dev-2022.1.0/oneTBB/cmake/suppressions/lsan.suppressions +2 -0
  244. pxr_tbb_dev-2022.1.0/oneTBB/cmake/suppressions/tsan.suppressions +4 -0
  245. pxr_tbb_dev-2022.1.0/oneTBB/cmake/templates/TBBConfig.cmake.in +128 -0
  246. pxr_tbb_dev-2022.1.0/oneTBB/cmake/templates/TBBConfigVersion.cmake.in +24 -0
  247. pxr_tbb_dev-2022.1.0/oneTBB/cmake/test_spec.cmake +35 -0
  248. pxr_tbb_dev-2022.1.0/oneTBB/cmake/toolchains/mips.cmake +40 -0
  249. pxr_tbb_dev-2022.1.0/oneTBB/cmake/toolchains/riscv64.cmake +34 -0
  250. pxr_tbb_dev-2022.1.0/oneTBB/cmake/utils.cmake +74 -0
  251. pxr_tbb_dev-2022.1.0/oneTBB/cmake/vars_utils.cmake +56 -0
  252. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_nd_range.h +195 -0
  253. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_range.h +169 -0
  254. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_range2d.h +111 -0
  255. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_range3d.h +130 -0
  256. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/blocked_rangeNd.h +147 -0
  257. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/cache_aligned_allocator.h +189 -0
  258. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/collaborative_call_once.h +256 -0
  259. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/combinable.h +69 -0
  260. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_hash_map.h +1668 -0
  261. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_lru_cache.h +374 -0
  262. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_map.h +350 -0
  263. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_priority_queue.h +490 -0
  264. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_queue.h +704 -0
  265. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_set.h +267 -0
  266. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_unordered_map.h +414 -0
  267. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_unordered_set.h +333 -0
  268. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/concurrent_vector.h +1129 -0
  269. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_aggregator.h +176 -0
  270. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_aligned_space.h +46 -0
  271. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_allocator_traits.h +107 -0
  272. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_assert.h +64 -0
  273. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_attach.h +32 -0
  274. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_concurrent_queue_base.h +650 -0
  275. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_concurrent_skip_list.h +1290 -0
  276. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_concurrent_unordered_base.h +1515 -0
  277. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_config.h +547 -0
  278. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_containers_helpers.h +67 -0
  279. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_exception.h +94 -0
  280. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_export.h +54 -0
  281. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_body_impl.h +429 -0
  282. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_cache_impl.h +501 -0
  283. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_impl.h +573 -0
  284. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_indexer_impl.h +370 -0
  285. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_item_buffer_impl.h +422 -0
  286. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_join_impl.h +1970 -0
  287. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_node_impl.h +894 -0
  288. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_node_set_impl.h +265 -0
  289. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_nodes_deduction.h +277 -0
  290. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_tagged_buffer_impl.h +380 -0
  291. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_trace_impl.h +364 -0
  292. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_flow_graph_types_impl.h +422 -0
  293. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_hash_compare.h +147 -0
  294. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_intrusive_list_node.h +41 -0
  295. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_machine.h +373 -0
  296. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_mutex_common.h +61 -0
  297. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_namespace_injection.h +24 -0
  298. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_node_handle.h +162 -0
  299. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_pipeline_filters.h +461 -0
  300. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_pipeline_filters_deduction.h +46 -0
  301. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_range_common.h +133 -0
  302. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_rtm_mutex.h +162 -0
  303. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_rtm_rw_mutex.h +215 -0
  304. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_scoped_lock.h +174 -0
  305. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_segment_table.h +581 -0
  306. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_small_object_pool.h +108 -0
  307. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_string_resource.h +78 -0
  308. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_task.h +302 -0
  309. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_task_handle.h +123 -0
  310. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_template_helpers.h +407 -0
  311. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_utils.h +393 -0
  312. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/detail/_waitable_atomic.h +90 -0
  313. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/enumerable_thread_specific.h +1121 -0
  314. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/flow_graph.h +3718 -0
  315. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/flow_graph_abstractions.h +51 -0
  316. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/global_control.h +200 -0
  317. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/info.h +125 -0
  318. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/memory_pool.h +272 -0
  319. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/mutex.h +93 -0
  320. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/null_mutex.h +80 -0
  321. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/null_rw_mutex.h +87 -0
  322. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_for.h +469 -0
  323. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_for_each.h +712 -0
  324. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_invoke.h +227 -0
  325. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_pipeline.h +153 -0
  326. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_reduce.h +772 -0
  327. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_scan.h +630 -0
  328. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/parallel_sort.h +288 -0
  329. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/partitioner.h +681 -0
  330. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/profiling.h +243 -0
  331. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/queuing_mutex.h +192 -0
  332. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/queuing_rw_mutex.h +207 -0
  333. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/rw_mutex.h +216 -0
  334. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/scalable_allocator.h +335 -0
  335. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/spin_mutex.h +134 -0
  336. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/spin_rw_mutex.h +229 -0
  337. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/task.h +37 -0
  338. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/task_arena.h +630 -0
  339. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/task_group.h +712 -0
  340. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/task_scheduler_observer.h +116 -0
  341. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/tbb_allocator.h +126 -0
  342. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/tbbmalloc_proxy.h +65 -0
  343. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/tick_count.h +99 -0
  344. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb/version.h +118 -0
  345. pxr_tbb_dev-2022.1.0/oneTBB/include/oneapi/tbb.h +74 -0
  346. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_nd_range.h +17 -0
  347. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_range.h +17 -0
  348. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_range2d.h +17 -0
  349. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_range3d.h +17 -0
  350. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/blocked_rangeNd.h +17 -0
  351. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/cache_aligned_allocator.h +17 -0
  352. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/collaborative_call_once.h +17 -0
  353. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/combinable.h +17 -0
  354. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_hash_map.h +17 -0
  355. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_lru_cache.h +17 -0
  356. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_map.h +17 -0
  357. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_priority_queue.h +17 -0
  358. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_queue.h +17 -0
  359. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_set.h +17 -0
  360. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_unordered_map.h +17 -0
  361. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_unordered_set.h +17 -0
  362. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/concurrent_vector.h +17 -0
  363. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/enumerable_thread_specific.h +17 -0
  364. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/flow_graph.h +17 -0
  365. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/flow_graph_abstractions.h +17 -0
  366. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/global_control.h +17 -0
  367. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/info.h +17 -0
  368. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/memory_pool.h +17 -0
  369. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/mutex.h +17 -0
  370. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/null_mutex.h +17 -0
  371. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/null_rw_mutex.h +17 -0
  372. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_for.h +17 -0
  373. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_for_each.h +17 -0
  374. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_invoke.h +17 -0
  375. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_pipeline.h +17 -0
  376. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_reduce.h +17 -0
  377. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_scan.h +17 -0
  378. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/parallel_sort.h +17 -0
  379. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/partitioner.h +17 -0
  380. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/profiling.h +17 -0
  381. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/queuing_mutex.h +17 -0
  382. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/queuing_rw_mutex.h +17 -0
  383. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/rw_mutex.h +17 -0
  384. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/scalable_allocator.h +17 -0
  385. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/spin_mutex.h +17 -0
  386. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/spin_rw_mutex.h +17 -0
  387. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/task.h +17 -0
  388. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/task_arena.h +17 -0
  389. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/task_group.h +17 -0
  390. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/task_scheduler_observer.h +17 -0
  391. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/tbb.h +17 -0
  392. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/tbb_allocator.h +17 -0
  393. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/tbbmalloc_proxy.h +17 -0
  394. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/tick_count.h +17 -0
  395. pxr_tbb_dev-2022.1.0/oneTBB/include/tbb/version.h +17 -0
  396. pxr_tbb_dev-2022.1.0/oneTBB/integration/cmake/generate_vars.cmake +51 -0
  397. pxr_tbb_dev-2022.1.0/oneTBB/integration/linux/modulefiles/tbb +69 -0
  398. pxr_tbb_dev-2022.1.0/oneTBB/integration/linux/modulefiles/tbb32 +69 -0
  399. pxr_tbb_dev-2022.1.0/oneTBB/integration/linux/oneapi/vars.sh +34 -0
  400. pxr_tbb_dev-2022.1.0/oneTBB/integration/linux/sys_check/sys_check.sh +21 -0
  401. pxr_tbb_dev-2022.1.0/oneTBB/integration/pkg-config/tbb.pc.in +24 -0
  402. pxr_tbb_dev-2022.1.0/oneTBB/integration/windows/nuget/inteltbb.devel.win.targets +64 -0
  403. pxr_tbb_dev-2022.1.0/oneTBB/integration/windows/nuget/inteltbb.redist.win.targets +30 -0
  404. pxr_tbb_dev-2022.1.0/oneTBB/integration/windows/oneapi/vars.bat +56 -0
  405. pxr_tbb_dev-2022.1.0/oneTBB/integration/windows/sys_check/sys_check.bat +18 -0
  406. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/README.md +77 -0
  407. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/archived/README.md +14 -0
  408. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/README.md +28 -0
  409. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/blocked_nd_range_ctad/README.md +227 -0
  410. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/README.md +306 -0
  411. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/alternative_proposal.png +0 -0
  412. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/completely_disable_new_behavior.png +0 -0
  413. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_introduction.png +0 -0
  414. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_sequence_diagram.png +0 -0
  415. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_state_final.png +0 -0
  416. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_state_initial.png +0 -0
  417. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/proposed/README.md +9 -0
  418. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/proposed/loading-dependencies/loading-dependencies-by-module-name.org +104 -0
  419. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/proposed/numa_support/README.md +156 -0
  420. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/proposed/numa_support/tbbbind-link-static-hwloc.org +120 -0
  421. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/supported/README.md +11 -0
  422. pxr_tbb_dev-2022.1.0/oneTBB/rfcs/template.md +56 -0
  423. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/CMakeLists.txt +221 -0
  424. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/address_waiter.cpp +106 -0
  425. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/allocator.cpp +288 -0
  426. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/arena.cpp +956 -0
  427. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/arena.h +602 -0
  428. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/arena_slot.cpp +218 -0
  429. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/arena_slot.h +414 -0
  430. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/assert_impl.h +97 -0
  431. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/cancellation_disseminator.h +85 -0
  432. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/co_context.h +378 -0
  433. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/concurrent_bounded_queue.cpp +84 -0
  434. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/concurrent_monitor.h +498 -0
  435. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/concurrent_monitor_mutex.h +113 -0
  436. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/lin32-tbb.def +165 -0
  437. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/lin64-tbb.def +165 -0
  438. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/mac64-tbb.def +162 -0
  439. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/win32-tbb.def +154 -0
  440. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/def/win64-tbb.def +154 -0
  441. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/dynamic_link.cpp +504 -0
  442. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/dynamic_link.h +118 -0
  443. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/environment.h +81 -0
  444. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/exception.cpp +166 -0
  445. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/global_control.cpp +285 -0
  446. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/governor.cpp +605 -0
  447. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/governor.h +158 -0
  448. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/intrusive_list.h +233 -0
  449. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/itt_notify.cpp +69 -0
  450. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/itt_notify.h +117 -0
  451. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/mailbox.h +246 -0
  452. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/main.cpp +161 -0
  453. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/main.h +99 -0
  454. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/market.cpp +143 -0
  455. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/market.h +78 -0
  456. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/market_concurrent_monitor.h +116 -0
  457. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/misc.cpp +156 -0
  458. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/misc.h +287 -0
  459. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/misc_ex.cpp +409 -0
  460. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/observer_proxy.cpp +319 -0
  461. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/observer_proxy.h +152 -0
  462. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/parallel_pipeline.cpp +471 -0
  463. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/permit_manager.h +61 -0
  464. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/pm_client.h +76 -0
  465. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/private_server.cpp +436 -0
  466. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/profiling.cpp +265 -0
  467. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/queuing_rw_mutex.cpp +617 -0
  468. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rml_base.h +163 -0
  469. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rml_tbb.cpp +112 -0
  470. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rml_tbb.h +94 -0
  471. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rml_thread_monitor.h +247 -0
  472. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rtm_mutex.cpp +121 -0
  473. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/rtm_rw_mutex.cpp +271 -0
  474. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/scheduler_common.h +611 -0
  475. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/semaphore.cpp +92 -0
  476. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/semaphore.h +307 -0
  477. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/small_object_pool.cpp +156 -0
  478. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/small_object_pool_impl.h +59 -0
  479. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task.cpp +257 -0
  480. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task_dispatcher.cpp +244 -0
  481. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task_dispatcher.h +479 -0
  482. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task_group_context.cpp +358 -0
  483. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/task_stream.h +286 -0
  484. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tbb.rc +74 -0
  485. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tcm.h +174 -0
  486. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tcm_adaptor.cpp +327 -0
  487. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tcm_adaptor.h +63 -0
  488. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_control_monitor.h +116 -0
  489. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_data.h +262 -0
  490. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_dispatcher.cpp +236 -0
  491. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_dispatcher.h +107 -0
  492. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_dispatcher_client.h +69 -0
  493. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_request_serializer.cpp +139 -0
  494. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/thread_request_serializer.h +84 -0
  495. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/threading_control.cpp +411 -0
  496. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/threading_control.h +154 -0
  497. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/threading_control_client.h +58 -0
  498. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tls.h +81 -0
  499. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/disable_warnings.h +39 -0
  500. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify.h +4677 -0
  501. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify_config.h +775 -0
  502. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify_static.c +1807 -0
  503. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify_static.h +378 -0
  504. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/ittnotify_types.h +75 -0
  505. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/tools_api/legacy/ittnotify.h +1015 -0
  506. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/version.cpp +26 -0
  507. pxr_tbb_dev-2022.1.0/oneTBB/src/tbb/waiters.h +225 -0
  508. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/CMakeLists.txt +105 -0
  509. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/lin32-tbbbind.def +26 -0
  510. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/lin64-tbbbind.def +26 -0
  511. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/mac64-tbbbind.def +18 -0
  512. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/win32-tbbbind.def +23 -0
  513. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/def/win64-tbbbind.def +23 -0
  514. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/tbb_bind.cpp +604 -0
  515. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbbind/tbb_bind.rc +74 -0
  516. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/CMakeLists.txt +123 -0
  517. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/Customize.h +139 -0
  518. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/MapMemory.h +205 -0
  519. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/Statistics.h +125 -0
  520. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/Synchronize.h +97 -0
  521. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/TypeDefinitions.h +58 -0
  522. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/backend.cpp +1513 -0
  523. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/backend.h +392 -0
  524. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/backref.cpp +358 -0
  525. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/lin32-tbbmalloc.def +73 -0
  526. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/lin64-tbbmalloc.def +73 -0
  527. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/mac64-tbbmalloc.def +44 -0
  528. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/win32-tbbmalloc.def +47 -0
  529. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/def/win64-tbbmalloc.def +47 -0
  530. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/frontend.cpp +3309 -0
  531. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/large_objects.cpp +1073 -0
  532. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/large_objects.h +380 -0
  533. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/shared_utils.h +146 -0
  534. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/tbbmalloc.cpp +115 -0
  535. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/tbbmalloc.rc +74 -0
  536. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/tbbmalloc_internal.h +763 -0
  537. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc/tbbmalloc_internal_api.h +40 -0
  538. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/CMakeLists.txt +103 -0
  539. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/def/lin32-proxy.def +55 -0
  540. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/def/lin64-proxy.def +55 -0
  541. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/function_replacement.cpp +582 -0
  542. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/function_replacement.h +79 -0
  543. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/proxy.cpp +796 -0
  544. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/proxy.h +55 -0
  545. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/proxy_overload_osx.h +186 -0
  546. pxr_tbb_dev-2022.1.0/oneTBB/src/tbbmalloc_proxy/tbbmalloc_proxy.rc +74 -0
  547. pxr_tbb_dev-2022.1.0/oneTBB/third-party-programs.txt +198 -0
  548. pxr_tbb_dev-2022.1.0/pxr-tbb.patch +42 -0
  549. pxr_tbb_dev-2022.1.0/pyproject-dev.toml +35 -0
  550. pxr_tbb_dev-2022.1.0/pyproject.toml +35 -0
  551. pxr_tbb_dev-2022.1.0/rfcs/README.md +77 -0
  552. pxr_tbb_dev-2022.1.0/rfcs/archived/README.md +14 -0
  553. pxr_tbb_dev-2022.1.0/rfcs/experimental/README.md +28 -0
  554. pxr_tbb_dev-2022.1.0/rfcs/experimental/blocked_nd_range_ctad/README.md +227 -0
  555. pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/README.md +306 -0
  556. pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/alternative_proposal.png +0 -0
  557. pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/completely_disable_new_behavior.png +0 -0
  558. pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_introduction.png +0 -0
  559. pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_sequence_diagram.png +0 -0
  560. pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_state_final.png +0 -0
  561. pxr_tbb_dev-2022.1.0/rfcs/experimental/parallel_phase_for_task_arena/parallel_phase_state_initial.png +0 -0
  562. pxr_tbb_dev-2022.1.0/rfcs/proposed/README.md +9 -0
  563. pxr_tbb_dev-2022.1.0/rfcs/proposed/loading-dependencies/loading-dependencies-by-module-name.org +104 -0
  564. pxr_tbb_dev-2022.1.0/rfcs/proposed/numa_support/README.md +156 -0
  565. pxr_tbb_dev-2022.1.0/rfcs/proposed/numa_support/tbbbind-link-static-hwloc.org +120 -0
  566. pxr_tbb_dev-2022.1.0/rfcs/supported/README.md +11 -0
  567. pxr_tbb_dev-2022.1.0/rfcs/template.md +56 -0
  568. pxr_tbb_dev-2022.1.0/src/tbb/CMakeLists.txt +221 -0
  569. pxr_tbb_dev-2022.1.0/src/tbb/address_waiter.cpp +106 -0
  570. pxr_tbb_dev-2022.1.0/src/tbb/allocator.cpp +288 -0
  571. pxr_tbb_dev-2022.1.0/src/tbb/arena.cpp +956 -0
  572. pxr_tbb_dev-2022.1.0/src/tbb/arena.h +602 -0
  573. pxr_tbb_dev-2022.1.0/src/tbb/arena_slot.cpp +218 -0
  574. pxr_tbb_dev-2022.1.0/src/tbb/arena_slot.h +414 -0
  575. pxr_tbb_dev-2022.1.0/src/tbb/assert_impl.h +97 -0
  576. pxr_tbb_dev-2022.1.0/src/tbb/cancellation_disseminator.h +85 -0
  577. pxr_tbb_dev-2022.1.0/src/tbb/co_context.h +378 -0
  578. pxr_tbb_dev-2022.1.0/src/tbb/concurrent_bounded_queue.cpp +84 -0
  579. pxr_tbb_dev-2022.1.0/src/tbb/concurrent_monitor.h +498 -0
  580. pxr_tbb_dev-2022.1.0/src/tbb/concurrent_monitor_mutex.h +113 -0
  581. pxr_tbb_dev-2022.1.0/src/tbb/def/lin32-tbb.def +165 -0
  582. pxr_tbb_dev-2022.1.0/src/tbb/def/lin64-tbb.def +165 -0
  583. pxr_tbb_dev-2022.1.0/src/tbb/def/mac64-tbb.def +162 -0
  584. pxr_tbb_dev-2022.1.0/src/tbb/def/win32-tbb.def +154 -0
  585. pxr_tbb_dev-2022.1.0/src/tbb/def/win64-tbb.def +154 -0
  586. pxr_tbb_dev-2022.1.0/src/tbb/dynamic_link.cpp +504 -0
  587. pxr_tbb_dev-2022.1.0/src/tbb/dynamic_link.h +118 -0
  588. pxr_tbb_dev-2022.1.0/src/tbb/environment.h +81 -0
  589. pxr_tbb_dev-2022.1.0/src/tbb/exception.cpp +166 -0
  590. pxr_tbb_dev-2022.1.0/src/tbb/global_control.cpp +285 -0
  591. pxr_tbb_dev-2022.1.0/src/tbb/governor.cpp +605 -0
  592. pxr_tbb_dev-2022.1.0/src/tbb/governor.h +158 -0
  593. pxr_tbb_dev-2022.1.0/src/tbb/intrusive_list.h +233 -0
  594. pxr_tbb_dev-2022.1.0/src/tbb/itt_notify.cpp +69 -0
  595. pxr_tbb_dev-2022.1.0/src/tbb/itt_notify.h +117 -0
  596. pxr_tbb_dev-2022.1.0/src/tbb/mailbox.h +246 -0
  597. pxr_tbb_dev-2022.1.0/src/tbb/main.cpp +161 -0
  598. pxr_tbb_dev-2022.1.0/src/tbb/main.h +99 -0
  599. pxr_tbb_dev-2022.1.0/src/tbb/market.cpp +143 -0
  600. pxr_tbb_dev-2022.1.0/src/tbb/market.h +78 -0
  601. pxr_tbb_dev-2022.1.0/src/tbb/market_concurrent_monitor.h +116 -0
  602. pxr_tbb_dev-2022.1.0/src/tbb/misc.cpp +156 -0
  603. pxr_tbb_dev-2022.1.0/src/tbb/misc.h +287 -0
  604. pxr_tbb_dev-2022.1.0/src/tbb/misc_ex.cpp +409 -0
  605. pxr_tbb_dev-2022.1.0/src/tbb/observer_proxy.cpp +319 -0
  606. pxr_tbb_dev-2022.1.0/src/tbb/observer_proxy.h +152 -0
  607. pxr_tbb_dev-2022.1.0/src/tbb/parallel_pipeline.cpp +471 -0
  608. pxr_tbb_dev-2022.1.0/src/tbb/permit_manager.h +61 -0
  609. pxr_tbb_dev-2022.1.0/src/tbb/pm_client.h +76 -0
  610. pxr_tbb_dev-2022.1.0/src/tbb/private_server.cpp +436 -0
  611. pxr_tbb_dev-2022.1.0/src/tbb/profiling.cpp +265 -0
  612. pxr_tbb_dev-2022.1.0/src/tbb/queuing_rw_mutex.cpp +617 -0
  613. pxr_tbb_dev-2022.1.0/src/tbb/rml_base.h +163 -0
  614. pxr_tbb_dev-2022.1.0/src/tbb/rml_tbb.cpp +112 -0
  615. pxr_tbb_dev-2022.1.0/src/tbb/rml_tbb.h +94 -0
  616. pxr_tbb_dev-2022.1.0/src/tbb/rml_thread_monitor.h +247 -0
  617. pxr_tbb_dev-2022.1.0/src/tbb/rtm_mutex.cpp +121 -0
  618. pxr_tbb_dev-2022.1.0/src/tbb/rtm_rw_mutex.cpp +271 -0
  619. pxr_tbb_dev-2022.1.0/src/tbb/scheduler_common.h +611 -0
  620. pxr_tbb_dev-2022.1.0/src/tbb/semaphore.cpp +92 -0
  621. pxr_tbb_dev-2022.1.0/src/tbb/semaphore.h +307 -0
  622. pxr_tbb_dev-2022.1.0/src/tbb/small_object_pool.cpp +156 -0
  623. pxr_tbb_dev-2022.1.0/src/tbb/small_object_pool_impl.h +59 -0
  624. pxr_tbb_dev-2022.1.0/src/tbb/task.cpp +257 -0
  625. pxr_tbb_dev-2022.1.0/src/tbb/task_dispatcher.cpp +244 -0
  626. pxr_tbb_dev-2022.1.0/src/tbb/task_dispatcher.h +479 -0
  627. pxr_tbb_dev-2022.1.0/src/tbb/task_group_context.cpp +358 -0
  628. pxr_tbb_dev-2022.1.0/src/tbb/task_stream.h +286 -0
  629. pxr_tbb_dev-2022.1.0/src/tbb/tbb.rc +74 -0
  630. pxr_tbb_dev-2022.1.0/src/tbb/tcm.h +174 -0
  631. pxr_tbb_dev-2022.1.0/src/tbb/tcm_adaptor.cpp +327 -0
  632. pxr_tbb_dev-2022.1.0/src/tbb/tcm_adaptor.h +63 -0
  633. pxr_tbb_dev-2022.1.0/src/tbb/thread_control_monitor.h +116 -0
  634. pxr_tbb_dev-2022.1.0/src/tbb/thread_data.h +262 -0
  635. pxr_tbb_dev-2022.1.0/src/tbb/thread_dispatcher.cpp +236 -0
  636. pxr_tbb_dev-2022.1.0/src/tbb/thread_dispatcher.h +107 -0
  637. pxr_tbb_dev-2022.1.0/src/tbb/thread_dispatcher_client.h +69 -0
  638. pxr_tbb_dev-2022.1.0/src/tbb/thread_request_serializer.cpp +139 -0
  639. pxr_tbb_dev-2022.1.0/src/tbb/thread_request_serializer.h +84 -0
  640. pxr_tbb_dev-2022.1.0/src/tbb/threading_control.cpp +411 -0
  641. pxr_tbb_dev-2022.1.0/src/tbb/threading_control.h +154 -0
  642. pxr_tbb_dev-2022.1.0/src/tbb/threading_control_client.h +58 -0
  643. pxr_tbb_dev-2022.1.0/src/tbb/tls.h +81 -0
  644. pxr_tbb_dev-2022.1.0/src/tbb/tools_api/disable_warnings.h +39 -0
  645. pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify.h +4677 -0
  646. pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify_config.h +775 -0
  647. pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify_static.c +1807 -0
  648. pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify_static.h +378 -0
  649. pxr_tbb_dev-2022.1.0/src/tbb/tools_api/ittnotify_types.h +75 -0
  650. pxr_tbb_dev-2022.1.0/src/tbb/tools_api/legacy/ittnotify.h +1015 -0
  651. pxr_tbb_dev-2022.1.0/src/tbb/version.cpp +26 -0
  652. pxr_tbb_dev-2022.1.0/src/tbb/waiters.h +225 -0
  653. pxr_tbb_dev-2022.1.0/src/tbbbind/CMakeLists.txt +105 -0
  654. pxr_tbb_dev-2022.1.0/src/tbbbind/def/lin32-tbbbind.def +26 -0
  655. pxr_tbb_dev-2022.1.0/src/tbbbind/def/lin64-tbbbind.def +26 -0
  656. pxr_tbb_dev-2022.1.0/src/tbbbind/def/mac64-tbbbind.def +18 -0
  657. pxr_tbb_dev-2022.1.0/src/tbbbind/def/win32-tbbbind.def +23 -0
  658. pxr_tbb_dev-2022.1.0/src/tbbbind/def/win64-tbbbind.def +23 -0
  659. pxr_tbb_dev-2022.1.0/src/tbbbind/tbb_bind.cpp +604 -0
  660. pxr_tbb_dev-2022.1.0/src/tbbbind/tbb_bind.rc +74 -0
  661. pxr_tbb_dev-2022.1.0/src/tbbmalloc/CMakeLists.txt +123 -0
  662. pxr_tbb_dev-2022.1.0/src/tbbmalloc/Customize.h +139 -0
  663. pxr_tbb_dev-2022.1.0/src/tbbmalloc/MapMemory.h +205 -0
  664. pxr_tbb_dev-2022.1.0/src/tbbmalloc/Statistics.h +125 -0
  665. pxr_tbb_dev-2022.1.0/src/tbbmalloc/Synchronize.h +97 -0
  666. pxr_tbb_dev-2022.1.0/src/tbbmalloc/TypeDefinitions.h +58 -0
  667. pxr_tbb_dev-2022.1.0/src/tbbmalloc/backend.cpp +1513 -0
  668. pxr_tbb_dev-2022.1.0/src/tbbmalloc/backend.h +392 -0
  669. pxr_tbb_dev-2022.1.0/src/tbbmalloc/backref.cpp +358 -0
  670. pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/lin32-tbbmalloc.def +73 -0
  671. pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/lin64-tbbmalloc.def +73 -0
  672. pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/mac64-tbbmalloc.def +44 -0
  673. pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/win32-tbbmalloc.def +47 -0
  674. pxr_tbb_dev-2022.1.0/src/tbbmalloc/def/win64-tbbmalloc.def +47 -0
  675. pxr_tbb_dev-2022.1.0/src/tbbmalloc/frontend.cpp +3309 -0
  676. pxr_tbb_dev-2022.1.0/src/tbbmalloc/large_objects.cpp +1073 -0
  677. pxr_tbb_dev-2022.1.0/src/tbbmalloc/large_objects.h +380 -0
  678. pxr_tbb_dev-2022.1.0/src/tbbmalloc/shared_utils.h +146 -0
  679. pxr_tbb_dev-2022.1.0/src/tbbmalloc/tbbmalloc.cpp +115 -0
  680. pxr_tbb_dev-2022.1.0/src/tbbmalloc/tbbmalloc.rc +74 -0
  681. pxr_tbb_dev-2022.1.0/src/tbbmalloc/tbbmalloc_internal.h +763 -0
  682. pxr_tbb_dev-2022.1.0/src/tbbmalloc/tbbmalloc_internal_api.h +40 -0
  683. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/CMakeLists.txt +103 -0
  684. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/def/lin32-proxy.def +55 -0
  685. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/def/lin64-proxy.def +55 -0
  686. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/function_replacement.cpp +582 -0
  687. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/function_replacement.h +79 -0
  688. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/proxy.cpp +796 -0
  689. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/proxy.h +55 -0
  690. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/proxy_overload_osx.h +186 -0
  691. pxr_tbb_dev-2022.1.0/src/tbbmalloc_proxy/tbbmalloc_proxy.rc +74 -0
  692. 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
+ ---