We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a09b840 commit f056a6fCopy full SHA for f056a6f
asv_bench/benchmarks/io/json.py
@@ -118,15 +118,15 @@ def setup(self, orient, frame):
118
def time_to_json(self, orient, frame):
119
getattr(self, frame).to_json(self.fname, orient=orient)
120
121
- def mem_to_json(self, orient, frame):
+ def peakmem_to_json(self, orient, frame):
122
123
124
def time_to_json_wide(self, orient, frame):
125
base_df = getattr(self, frame).copy()
126
df = concat([base_df.iloc[:100]] * 1000, ignore_index=True, axis=1)
127
df.to_json(self.fname, orient=orient)
128
129
- def mem_to_json_wide(self, orient, frame):
+ def peakmem_to_json_wide(self, orient, frame):
130
131
132
0 commit comments