Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ if (RSC_BUILD_EXTENSIONS)
add_nb_cuda_module(_qc_dask_cuda src/rapids_singlecell/_cuda/qc_dask/qc_kernels_dask.cu)
add_nb_cuda_module(_bbknn_cuda src/rapids_singlecell/_cuda/bbknn/bbknn.cu)
add_nb_cuda_module(_norm_cuda src/rapids_singlecell/_cuda/norm/norm.cu)
add_nb_cuda_module(_gmm_cuda src/rapids_singlecell/_cuda/gmm/gmm.cu)
target_link_libraries(_gmm_cuda PRIVATE CUDA::cublas)
add_nb_cuda_module(_pr_cuda src/rapids_singlecell/_cuda/pr/pr.cu)
add_nb_cuda_module(_nn_descent_cuda src/rapids_singlecell/_cuda/nn_descent/nn_descent.cu)
add_nb_cuda_module(_aucell_cuda src/rapids_singlecell/_cuda/aucell/aucell.cu)
Expand Down
1 change: 1 addition & 0 deletions docs/api/squidpy_gpu.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@
gr.spatial_autocorr
gr.co_occurrence
gr.ligrec
gr.calculate_niche
```
4 changes: 4 additions & 0 deletions docs/release-notes/0.15.1.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### 0.15.1 {small}`the-future`

```{rubric} Features
```
* Add `rsc.gr.calculate_niche` with flavors `neighborhood`, `utag` , and `cellcharter`. Mirrors `squidpy.gr.calculate_niche` {pr}`644` {smaller}`S Dicks`
* Add a minimal full-covariance GMM (`squidpy_gpu._gmm.gmm_fit_predict`) used by the `cellcharter` {pr}`644` {smaller}`S Dicks`
```{rubric} Bug fixes
```
* Fixes `tl.rank_genes_groups` returning NaN/zero `logfoldchanges`/`pvals` with `groups=[subset]` and `reference='rest'` {pr}`651` {smaller}`S Dicks`
1 change: 1 addition & 0 deletions src/rapids_singlecell/_cuda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"_bbknn_cuda",
"_cooc_cuda",
"_edistance_cuda",
"_gmm_cuda",
"_harmony_clustering_cuda",
"_harmony_colsum_cuda",
"_harmony_correction_batched_cuda",
Expand Down
366 changes: 366 additions & 0 deletions src/rapids_singlecell/_cuda/gmm/gmm.cu

Large diffs are not rendered by default.

Loading
Loading