Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/squidpy/_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ def decorator2(obj: Any) -> Any:
"""
_parallelize = """\
n_jobs
Number of parallel jobs.
Number of parallel jobs to use. If the function uses numba compiled functions, numba may
use cores depending on the number of threads set in the environment regardless of this argument.
backend
Parallelization backend to use. See :class:`joblib.Parallel` for available options.
show_progress_bar
Expand Down
3 changes: 2 additions & 1 deletion src/squidpy/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ def parallelize(
collection
Sequence of items to split into chunks.
n_jobs
Number of parallel jobs.
Number of parallel jobs to use. If the function uses numba compiled functions, numba may
use cores depending on the number of threads set in the environment regardless of this argument.
n_split
Split ``collection`` into ``n_split`` chunks.
If <= 0, ``collection`` is assumed to be already split into chunks.
Expand Down
Loading