execution
Utilities for execution of measurements.
concurrently(*callables)
Run an arbitrary number of functions concurrently.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
callables
|
Callable[[], Any]
|
The callables to execute |
()
|
Returns:
| Type | Description |
|---|---|
List[Any]
|
The results of all callables, in the order in which they were passed to call |
Source code in mlte/measurement/utility/execution.py
7 8 9 10 11 12 13 14 15 16 17 18 | |