Home
last modified time | relevance | path

Searched refs:iterable (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/tools/opt-viewer/
H A Doptpmap.py28 def pmap(func, iterable, processes, should_print_progress, filter_=None, *args, **kwargs): argument
41 _total = multiprocessing.Value('i', len(iterable))
43 func_and_args = [(func, arg, should_print_progress, filter_) for arg in iterable]
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DBuiltinAttributeInterfaces.td34 * Define the set of iterable C++ data types:
36 An attribute may define the set of iterable types by providing a definition
50 potentially define the iterable types as so:
58 each iterable type
61 respective iterable type. Consider the example i64 elements attribute
66 /// Provide begin iterators for the various iterable types.
88 using each of the registered iterable data types:
169 // By default, no types are iterable.
388 /// return the iterable range. Otherwise, return llvm::None.
401 /// return the iterable range. Otherwise, return llvm::None.
/llvm-project-15.0.7/mlir/test/lib/Dialect/Test/
H A DTestAttrDefs.td91 /// Provide begin iterators for the various iterable types.
254 /// Provide begin iterators for the various iterable types.
/llvm-project-15.0.7/mlir/docs/
H A DCAPI.md161 an `MlirBlock` has an iterable list of operations it contains. An object may
162 have several iterable components.
164 For iterable components, the following triple of functions is provided.
/llvm-project-15.0.7/mlir/docs/Bindings/
H A DPython.md428 The operation itself is iterable, which provides access to the attached regions
440 thus iterable, which provides access to the blocks. One can also use the
444 # Regions are directly iterable and give access to blocks.
450 properties. Objects of the `Block` class are iterable and provide access to the
/llvm-project-15.0.7/polly/utils/
H A Dargparse.py114 def _sorted(iterable, reverse=False): argument
115 result = list(iterable)