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