Skip to content

Commit ab32803

Browse files
Clean-up indexing benchmarks
1 parent 0ce5175 commit ab32803

File tree

4 files changed

+215
-503
lines changed

4 files changed

+215
-503
lines changed

asv_bench/benchmarks/binary_ops.py

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ def time_frame_mult(self, use_numexpr, threads):
2727
def time_frame_multi_and(self, use_numexpr, threads):
2828
self.df[((self.df > 0) & (self.df2 > 0))]
2929

30+
def time_frame_comparison(self, use_numexpr, threads):
31+
(self.df > self.df2)
32+
3033
def teardown(self, use_numexpr, threads):
3134
expr.set_use_numexpr(True)
3235
expr.set_numexpr_threads()

0 commit comments

Comments
 (0)