File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ def map(
122
122
executor may already know which is the decorator to use, this
123
123
is useful as for a single executor the user can specify for
124
124
example ``numba.jit`` or ``numba.njit(nogil=True)``, and this
125
- decorator parameter will contain the exact decortor from the
125
+ decorator parameter will contain the exact decorator from the
126
126
executor the user wants to use.
127
127
skip_na : bool
128
128
Whether the function should be called for missing values or not.
@@ -165,7 +165,7 @@ def apply(
165
165
executor may already know which is the decorator to use, this
166
166
is useful as for a single executor the user can specify for
167
167
example ``numba.jit`` or ``numba.njit(nogil=True)``, and this
168
- decorator parameter will contain the exact decortor from the
168
+ decorator parameter will contain the exact decorator from the
169
169
executor the user wants to use.
170
170
axis : {0 or 'index', 1 or 'columns'}
171
171
0 or 'index' should execute the function passing each column as
Original file line number Diff line number Diff line change @@ -10447,7 +10447,7 @@ def apply(
10447
10447
type during the execution).
10448
10448
10449
10449
>>> import bodo
10450
- >>> df.apply(lambda x: x.A + x.B, axis=1, engine=bodo.jit(parallel=True) )
10450
+ >>> df.apply(lambda x: x.A + x.B, axis=1, engine=bodo.jit)
10451
10451
10452
10452
Note that JIT compilation is only recommended for functions that take a
10453
10453
significant amount of time to run. Fast functions are unlikely to run faster
You can’t perform that action at this time.
0 commit comments