We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b2d43a commit 1d85745Copy full SHA for 1d85745
2 files changed
docs/release-notes/0.13.0.md
@@ -1,4 +1,4 @@
1
-### 0.13.0 {small}`the-future`
+### 0.13.0 {small}`2025-08-06`
2
3
```{rubric} Features
4
```
@@ -9,6 +9,7 @@
9
10
```{rubric} Performance
11
12
+* speed up `pp.harmony_integrate` for smaller datasets {pr}`421` {smaller}`S Dicks`
13
14
```{rubric} Bug fixes
15
src/rapids_singlecell/preprocessing/_harmony/_helper.py
@@ -196,7 +196,7 @@ def _scatter_add_cp_bias_csr(
196
n_pcs = X.shape[1]
197
198
threads_per_block = 1024
199
- if n_cells < 100_000:
+ if n_cells < 300_000:
200
blocks = int((n_pcs + 1) / 2)
201
scatter_kernel0 = _get_scatter_add_kernel_with_bias_cat0(X.dtype)
202
scatter_kernel0(
0 commit comments