Skip to content

Commit

Permalink
0.9.3 release (#95)
Browse files Browse the repository at this point in the history
* update notebooks

* 0.9.3
  • Loading branch information
Intron7 committed Nov 14, 2023
1 parent 7b7f551 commit 305cf03
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Rapids-singlecell offers enhanced single-cell data analysis as a near drop-in replacement predominantly for scanpy, while also incorporating select functionalities from squidpy and decoupler. Utilizing GPU computing with cupy and Nvidia’s RAPIDS, it emphasizes high computational efficiency. As part of the scverse ecosystem, rapids-singlecell continuously aims to maintain compatibility, adapting and growing through community collaboration.

* **Broad GPU Optimization:** Facilitates accelerated processing of large datasets, particularly with GPU-enabled AnnData objects.
* **Broad GPU Optimization:** Facilitates accelerated processing of large datasets, with GPU-enabled AnnData objects.
* **Selective scverse Library Integration:** Incorporates key functionalities from scanpy, with additional features from squidpy and decoupler.
* **Easy Installation Process:** Available via Conda and PyPI, with detailed setup guidelines.
* **Accessible Documentation:** Provides comprehensive guides and examples tailored for efficient application.
Expand Down
2 changes: 1 addition & 1 deletion docs/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Rapids-singlecell offers enhanced single-cell data analysis as a near drop-in replacement predominantly for scanpy, while also incorporating select functionalities from squidpy and decoupler. Utilizing GPU computing with cupy and Nvidia’s RAPIDS, it emphasizes high computational efficiency. As part of the scverse ecosystem, rapids-singlecell continuously aims to maintain compatibility, adapting and growing through community collaboration.

* **Broad GPU Optimization:** Facilitates accelerated processing of large datasets, particularly with GPU-enabled AnnData objects.
* **Broad GPU Optimization:** Facilitates accelerated processing of large datasets, with GPU-enabled AnnData objects.
* **Selective scverse Library Integration:** Incorporates key functionalities from scanpy, with additional features from squidpy and decoupler.
* **Easy Installation Process:** Available via Conda and PyPI, with detailed setup guidelines.
* **Accessible Documentation:** Provides comprehensive guides and examples tailored for efficient application.
Expand Down
14 changes: 9 additions & 5 deletions docs/notebooks/autocorr_benchmark.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@
"outputs": [],
"source": [
"import rmm\n",
"from rmm.allocators.cupy import rmm_cupy_allocator\n",
"rmm.reinitialize(\n",
" managed_memory=False, \n",
" devices=0,\n",
" managed_memory=False, # Allows oversubscription\n",
" pool_allocator=False, # default is False\n",
" devices=0, # GPU device IDs to register. By default registers only GPU 0.\n",
")\n",
"cp.cuda.set_allocator(rmm.rmm_cupy_allocator)"
"cp.cuda.set_allocator(rmm_cupy_allocator)"
]
},
{
Expand Down Expand Up @@ -134,7 +136,8 @@
"rsc.gr.spatial_autocorr(adata,\n",
" mode=\"moran\",\n",
" genes=genes,\n",
" n_perms=100)"
" n_perms=100,\n",
" use_sparse=False)"
]
},
{
Expand Down Expand Up @@ -655,7 +658,8 @@
"rsc.gr.spatial_autocorr(adata,\n",
" mode=\"geary\",\n",
" genes=genes,\n",
" n_perms=100)"
" n_perms=100,\n",
" use_sparse=False)"
]
},
{
Expand Down
3 changes: 2 additions & 1 deletion docs/notebooks/ligrec_benchmark.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@
"outputs": [],
"source": [
"import rmm\n",
"from rmm.allocators.cupy import rmm_cupy_allocator\n",
"rmm.reinitialize(\n",
" managed_memory=False, # Allows oversubscription\n",
" pool_allocator=False, # default is False\n",
" devices=0, # GPU device IDs to register. By default registers only GPU 0.\n",
")\n",
"cp.cuda.set_allocator(rmm.rmm_cupy_allocator)"
"cp.cuda.set_allocator(rmm_cupy_allocator)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/release-notes/0.9.3.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.9.3 {small}`the future`
### 0.9.3

```{rubric} Features
```
Expand Down

0 comments on commit 305cf03

Please sign in to comment.