Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit eb3acca

Browse files
densmirnshssf
authored andcommitted
Add automatic switch of pipeline for some methods (#319)
1 parent 0ef8b7f commit eb3acca

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

sdc/hiframes/pd_series_ext.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,11 @@ def generic_expand_cumulative_series(self, args, kws):
10141014
for attr in ['resolve_std', 'resolve_var']:
10151015
_not_series_array_attrs.append(attr)
10161016

1017-
_non_hpat_pipeline_attrs = ['resolve_nsmallest', 'resolve_nlargest', 'resolve_cov', 'resolve_corr', 'resolve_pct_change']
1017+
_non_hpat_pipeline_attrs = [
1018+
'resolve_append', 'resolve_combine', 'resolve_corr', 'resolve_cov',
1019+
'resolve_dropna', 'resolve_fillna', 'resolve_head', 'resolve_nlargest',
1020+
'resolve_nsmallest', 'resolve_pct_change'
1021+
]
10181022

10191023
# use ArrayAttribute for attributes not defined in SeriesAttribute
10201024
for attr, func in numba.typing.arraydecl.ArrayAttribute.__dict__.items():

0 commit comments

Comments
 (0)