Skip to content

Commit 2c2b2f8

Browse files
Backport PR #2408 on branch 0.12.x (fix: benchmark timeout for too much outer joins on concat) (#2409)
Co-authored-by: Ilan Gold <ilanbassgold@gmail.com>
1 parent 481e197 commit 2c2b2f8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

benchmarks/benchmarks/sparse_dataset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ def setup(self, *_):
107107
AnnData(
108108
var=pd.DataFrame(
109109
index=[
110-
f"gene_{j}{f'_{i}' if (j % 100 == 0) else ''}"
110+
f"gene_{j}{f'_{i}' if (j % 500 == 0) else ''}"
111111
for j in range(10_000)
112112
]
113113
),
114114
X=read_elem_lazy(self.group["X"]),
115115
)
116-
for i in range(10)
116+
for i in range(5)
117117
]
118118

119119
def time_concat(self, join: Literal["inner", "outer"], fill_value: Literal[0, -1]):

0 commit comments

Comments
 (0)