Skip to content

Commit 1d85745

Browse files
authored
update harmony (#421)
* update harmony * fix release notes
1 parent 4b2d43a commit 1d85745

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

docs/release-notes/0.13.0.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 0.13.0 {small}`the-future`
1+
### 0.13.0 {small}`2025-08-06`
22

33
```{rubric} Features
44
```
@@ -9,6 +9,7 @@
99

1010
```{rubric} Performance
1111
```
12+
* speed up `pp.harmony_integrate` for smaller datasets {pr}`421` {smaller}`S Dicks`
1213

1314
```{rubric} Bug fixes
1415
```

src/rapids_singlecell/preprocessing/_harmony/_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def _scatter_add_cp_bias_csr(
196196
n_pcs = X.shape[1]
197197

198198
threads_per_block = 1024
199-
if n_cells < 100_000:
199+
if n_cells < 300_000:
200200
blocks = int((n_pcs + 1) / 2)
201201
scatter_kernel0 = _get_scatter_add_kernel_with_bias_cat0(X.dtype)
202202
scatter_kernel0(

0 commit comments

Comments
 (0)