File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ def decorator2(obj: Any) -> Any:
107107"""
108108_parallelize = """\
109109 n_jobs
110- Number of parallel jobs.
110+ Number of parallel jobs to use. If the function uses numba compiled functions, numba may
111+ use cores depending on the number of threads set in the environment regardless of this argument.
111112backend
112113 Parallelization backend to use. See :class:`joblib.Parallel` for available options.
113114show_progress_bar
Original file line number Diff line number Diff line change @@ -88,7 +88,8 @@ def parallelize(
8888 collection
8989 Sequence of items to split into chunks.
9090 n_jobs
91- Number of parallel jobs.
91+ Number of parallel jobs to use. If the function uses numba compiled functions, numba may
92+ use cores depending on the number of threads set in the environment regardless of this argument.
9293 n_split
9394 Split ``collection`` into ``n_split`` chunks.
9495 If <= 0, ``collection`` is assumed to be already split into chunks.
You can’t perform that action at this time.
0 commit comments