Searched refs:iterable (Results 1 – 1 of 1) 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 …]
|