Parallel

The elephant.parallel package provides classes to parallelize calls to any user-specified function.

The typical use case is calling a function many times with different parameters.

Note

This parallelization module is independent from Elephant and can be used to parallelize mutually independent calls to arbitrary functions.

Tutorial

View tutorial

Run tutorial interactively:

https://mybinder.org/badge.svg

Available Executors

ProcessPoolExecutor([max_workers]) The wrapper of Python built-in concurrent.futures.ProcessPoolExecutor class.