Skip to content

Commit 77c0563

Browse files
committed
Turn off profiler and add memory benchmarks
1 parent 2d785de commit 77c0563

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

asv_bench/benchmarks/replace.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ def setup(self, inplace):
1919
def time_fillna(self, inplace):
2020
self.ts.fillna(0.0, inplace=inplace)
2121

22+
def peakmem_fillna(self, inplace):
23+
self.ts.fillna(0.0, inplace=inplace)
24+
2225
def time_fillna_limit(self, inplace):
2326
self.ts.fillna(0.0, inplace=inplace, limit=10 ** 5)
2427

pandas/_libs/algos.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cython: profile=True
21
import cython
32
from cython import Py_ssize_t
43

0 commit comments

Comments
 (0)