Searched refs:chunksize (Results 1 – 4 of 4) sorted by relevance
| /oneTBB/python/tbb/ |
| H A D | pool.py | 104 def map(self, func, iterable, chunksize=None): argument 112 return self.map_async(func, iterable, chunksize).get() 114 def imap(self, func, iterable, chunksize=1): argument 129 self._create_sequences(func, iterable, chunksize, collector) 132 def imap_unordered(self, func, iterable, chunksize=1): argument 138 self._create_sequences(func, iterable, chunksize, collector) 156 def map_async(self, func, iterable, chunksize=None, callback=None): argument 171 def imap_async(self, func, iterable, chunksize=None, callback=None): argument 187 def imap_unordered_async(self, func, iterable, chunksize=None, argument 233 def _create_sequences(self, func, iterable, chunksize, collector): argument [all …]
|
| H A D | test.py | 138 assert list(pool.imap(work, range(10, 3, -1), chunksize=4)) == list(map(
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Partitioner_Summary.rst | 24 - ``g/2 ≤ chunksize ≤ g`` 27 - ``g/2 ≤ chunksize`` 30 - ``g/2 ≤ chunksize`` 33 - ``max(g/3, problem_size/num_of_resources) ≤ chunksize``
|
| H A D | Controlling_Chunking_os.rst | 43 chunks, possibly of different sizes. Let *chunksize* be the number of 45 [G/2] <= *chunksize* <= G.
|