File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ def decorator2(obj: Any) -> Any:
107
107
"""
108
108
_parallelize = """\
109
109
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.
111
112
backend
112
113
Parallelization backend to use. See :class:`joblib.Parallel` for available options.
113
114
show_progress_bar
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ def parallelize(
89
89
Sequence of items to split into chunks.
90
90
n_jobs
91
91
Number of parallel jobs to use. If the function uses numba compiled functions, numba may
92
- may use cores depending on the number of threads set in the environment regardless of this argument.
92
+ use cores depending on the number of threads set in the environment regardless of this argument.
93
93
n_split
94
94
Split ``collection`` into ``n_split`` chunks.
95
95
If <= 0, ``collection`` is assumed to be already split into chunks.
You can’t perform that action at this time.
0 commit comments