diff --git a/doc/api.rst b/doc/api.rst index 2b550ad2a4..ef75e4b1d0 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -94,6 +94,14 @@ Parallel backends (:py:mod:`hnn_core.parallel_backends`): MPIBackend JoblibBackend +Batch Simulation (:py:mod:`hnn_core.batch_simulate`): +--------------------------------------------------------- +.. currentmodule:: hnn_core.batch_simulate + +.. autosummary:: + :toctree: generated/ + + BatchSimulate Input and Output: ----------------- diff --git a/examples/howto/batch_simulate.py b/examples/howto/plot_batch_simulate.py similarity index 99% rename from examples/howto/batch_simulate.py rename to examples/howto/plot_batch_simulate.py index c2df440d23..1c4882e7cf 100644 --- a/examples/howto/batch_simulate.py +++ b/examples/howto/plot_batch_simulate.py @@ -22,7 +22,7 @@ from hnn_core import jones_2009_model # The number of cores may need modifying depending on your current machine. -n_jobs = 3 +n_jobs = 10 ###########################################################################