tbb.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. Copyright (c) 2005-2021 Intel Corporation
  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. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. #ifndef __TBB_tbb_H
  14. #define __TBB_tbb_H
  15. /**
  16. This header bulk-includes declarations or definitions of all the functionality
  17. provided by TBB (save for tbbmalloc and 3rd party dependent headers).
  18. If you use only a few TBB constructs, consider including specific headers only.
  19. Any header listed below can be included independently of others.
  20. **/
  21. #include "oneapi/tbb/blocked_range.h"
  22. #include "oneapi/tbb/blocked_range2d.h"
  23. #include "oneapi/tbb/blocked_range3d.h"
  24. #if TBB_PREVIEW_BLOCKED_RANGE_ND
  25. #include "tbb/blocked_rangeNd.h"
  26. #endif
  27. #include "oneapi/tbb/cache_aligned_allocator.h"
  28. #include "oneapi/tbb/combinable.h"
  29. #include "oneapi/tbb/concurrent_hash_map.h"
  30. #if TBB_PREVIEW_CONCURRENT_LRU_CACHE
  31. #include "tbb/concurrent_lru_cache.h"
  32. #endif
  33. #include "oneapi/tbb/concurrent_priority_queue.h"
  34. #include "oneapi/tbb/concurrent_queue.h"
  35. #include "oneapi/tbb/concurrent_unordered_map.h"
  36. #include "oneapi/tbb/concurrent_unordered_set.h"
  37. #include "oneapi/tbb/concurrent_map.h"
  38. #include "oneapi/tbb/concurrent_set.h"
  39. #include "oneapi/tbb/concurrent_vector.h"
  40. #include "oneapi/tbb/enumerable_thread_specific.h"
  41. #include "oneapi/tbb/flow_graph.h"
  42. #include "oneapi/tbb/global_control.h"
  43. #include "oneapi/tbb/info.h"
  44. #include "oneapi/tbb/null_mutex.h"
  45. #include "oneapi/tbb/null_rw_mutex.h"
  46. #include "oneapi/tbb/parallel_for.h"
  47. #include "oneapi/tbb/parallel_for_each.h"
  48. #include "oneapi/tbb/parallel_invoke.h"
  49. #include "oneapi/tbb/parallel_pipeline.h"
  50. #include "oneapi/tbb/parallel_reduce.h"
  51. #include "oneapi/tbb/parallel_scan.h"
  52. #include "oneapi/tbb/parallel_sort.h"
  53. #include "oneapi/tbb/partitioner.h"
  54. #include "oneapi/tbb/queuing_mutex.h"
  55. #include "oneapi/tbb/queuing_rw_mutex.h"
  56. #include "oneapi/tbb/spin_mutex.h"
  57. #include "oneapi/tbb/spin_rw_mutex.h"
  58. #include "oneapi/tbb/task.h"
  59. #include "oneapi/tbb/task_arena.h"
  60. #include "oneapi/tbb/task_group.h"
  61. #include "oneapi/tbb/task_scheduler_observer.h"
  62. #include "oneapi/tbb/tbb_allocator.h"
  63. #include "oneapi/tbb/tick_count.h"
  64. #include "oneapi/tbb/version.h"
  65. #endif /* __TBB_tbb_H */