| /oneTBB/examples/parallel_for/polygon_overlay/ |
| H A D | README.md | 8 …ting list of polygons from one map and intersecting each sub-list against the entire list of polyg… 9 …map is split into submaps, with each resulting submap being intersected against the corresponding … 17 …map, then on average the number of intersections calculated is approximately 80,000 (400 * 200, wh… 23 One further optimization would be to sort one map, say map1, by maxY, and sort the other map (map2)… 25 …map is inspected and any remaining unoccupied "boxes" are made into additional polygons, as large … 27 One limitation of the program is that if the number of polygons in the source map is greater than t… 49 * `--polys npolys` - number of polygons in each map. 50 * `--size nnnxnnn` - size of each map (X x Y).
|
| /oneTBB/examples/graph/som/ |
| H A D | README.md | 2 …s `oneapi::tbb::flow` and the use of cancellation in scheduling multiple iterations of map updates. 6 …map with several examples, splitting the map into subsections and looking for best-match for multi… 30 * `nospeculate` - don't speculate in SOM map teaching.
|
| /oneTBB/python/tbb/ |
| H A D | test.py | 110 assert pool.map(return42, []) == [] 122 assert list(pool.map(f, range(10))) == list(map(f, range(10))) 138 assert list(pool.imap(work, range(10, 3, -1), chunksize=4)) == list(map( 142 assert sorted(pool.imap_unordered(work, range(10, 3, -1))) == sorted(map(
|
| H A D | pool.py | 104 def map(self, func, iterable, chunksize=None): member in Pool
|
| /oneTBB/test/common/ |
| H A D | allocator_stl_test_common.h | 118 TestMap<std::map <int, int, std::less<int>, Acii> >(a); 130 TestMap<std::map<int, int, std::less<int>, Aii> >(a); 131 TestMap<std::map<const int, int, std::less<int>, Acii> >(a);
|
| H A D | state_trackable.h | 83 using counters_type = std::map<StateTrackableBase::StateValue, std::atomic<std::size_t>>;
|
| H A D | concurrent_lru_cache_common.h | 65 using map_type = std::map<KeyType, ValueType>;
|
| /oneTBB/test/tbb/ |
| H A D | test_concurrent_unordered_map.cpp | 232 exception_mmap_type map; variable 234 map.insert(std::pair<const int, int>(i, 42)); 239 exception_mmap_type map1(map); in __anonf1fab3910102()
|
| H A D | test_concurrent_hash_map.cpp | 702 Map map; in test_chmap_access_mode() local 706 bool result = map.insert(acc, 1); in test_chmap_access_mode() 711 result = map.insert(acc, 2L); in test_chmap_access_mode() 717 result = map.insert(acc, value); in test_chmap_access_mode() 722 result = map.insert(acc, typename Map::value_type{4, 4}); in test_chmap_access_mode() 727 result = map.find(acc, 1); in test_chmap_access_mode() 732 result = map.find(acc, 2L); in test_chmap_access_mode() 776 map_type map(init_list); 780 map_type map1(map); in __anon3741356d0302()
|
| H A D | test_arena_priorities.cpp | 280 std::map<tbb::task_arena::priority, unsigned> wasted_tasks; in test() 287 std::map<tbb::task_arena::priority, unsigned> per_priority_tasks_num; in test() 328 std::map<tbb::task_arena::priority, unsigned> per_priority_tasks_num; in test()
|
| H A D | test_enumerable_thread_specific.cpp | 283 typedef typename std::map<Key, Val> my_map; in flog_segmented_iterator_map()
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | The_Task_Scheduler.rst | 11 scheduler. However, if you have an algorithm that does not naturally map
|
| H A D | Allocator_Configuration.rst | 18 map memory in huge pages or define a recommended heap size. These
|
| H A D | concurrent_hash_map.rst | 8 permits concurrent accesses. The table is a map from a key to a type
|
| H A D | Task-Based_Programming.rst | 32 which map onto the *physical threads* of the hardware. For computations
|
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_map.cpp | 112 TMap map(v.begin(), v.end()); in test_deduction_guides() local 113 static_assert(std::is_same_v<decltype(map), TMap<int, int> >, "WRONG\n"); in test_deduction_guides()
|
| /oneTBB/doc/main/intro/ |
| H A D | intro_os.rst | 12 library, you specify tasks, not threads, and let the library map tasks
|
| H A D | Benefits.rst | 28 forces you to efficiently map logical tasks onto threads. In
|
| /oneTBB/include/oneapi/tbb/ |
| H A D | concurrent_hash_map.h | 469 hash_map_iterator( const Container &map, std::size_t index, const bucket *b, node_base *n ) : in hash_map_iterator() argument 470 my_map(&map), my_index(index), my_bucket(b), my_node(static_cast<node*>(n)) in hash_map_iterator() 529 hash_map_range( const map_type &map, size_type grainsize_ = 1 ) : 530 …my_begin( Iterator( map, 0, map.my_embedded_segment, map.my_embedded_segment->node_list.load(std::… 531 … my_end( Iterator( map, map.my_mask.load(std::memory_order_relaxed) + 1, nullptr, nullptr ) ),
|
| H A D | concurrent_lru_cache.h | 67 using storage_map_type = std::map<key_type, storage_map_value_type>;
|
| /oneTBB/doc/main/reference/ |
| H A D | custom_mutex_chmap.rst | 157 …map_type map; // This object will use SharedMutexWrapper for thread safety of insert/find/erase op…
|
| /oneTBB/examples/concurrent_hash_map/count_strings/ |
| H A D | count_strings.cpp | 64 std::map<std::size_t, int> hashes;
|
| /oneTBB/doc/main/tbb_userguide/design_patterns/ |
| H A D | Agglomeration.rst | 161 #. **M**\ apping – map tasks onto processors. The oneTBB task
|
| /oneTBB/examples/common/utility/ |
| H A D | utility.hpp | 194 typedef std::map<std::string, internal::argument> args_map_type;
|
| /oneTBB/examples/graph/cholesky/ |
| H A D | cholesky.cpp | 674 typedef std::map<std::string, algorithm *> algmap_t; in main()
|