forked from scverse/rapids_singlecell
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GPU accelerated read_mtx #2
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* removed plotting * cunnData deprecated * added anndata and 64 bit support * switch from scanpy_gpu to tools * start to updating docs * update test to work with anndata * swtiched harmony to pp * switched harmony to pp * updated docs * fix docs * added utils * updated documentation * updated docs * move to anndata * updated doc strings * use next anndata * adata version * updated docs * try to fix utils docs * update for dense hvg * added dense normalization test * update and test utils * update test * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * Update docs/Usage_Principles.md Co-authored-by: Lukas Heumos <[email protected]> * update api docs * updated docs * test docs * fix docs * added release-notes * updated 0.8.1 * fix for realease-notedocs * fixed links * try to fix release-notes * bumped scanpydoc * test css * make c array safe * enables cunndata to anndata_GPU * update notebooks * updated docs * maybe fix docs * update utils docstring * reset docs * added extlinks * fixes AnnData * update AnnData * added AnnData * updated docs * fixes broken link * test releasenotes * updated conf.py * creates utils in docs * renamed Params Parameters * switched to boolean index * added batching * prepare for transformer API * enhance harmony reproducability * harmony 64 bit * work with dense matrices * added release node * updated ruff * update notebooks * remove cpx raw import * remove cugraph default import * fixed import * make doc-strings pretty * added leiden disclaimer to notebooks * added test for harmonypy * added import test * added profimp for testing * updated anndata-dep --------- Co-authored-by: Lukas Heumos <[email protected]> Co-authored-by: Philipp A <[email protected]>
updates: - [github.com/psf/black: 23.7.0 → 23.9.1](psf/black@23.7.0...23.9.1) - [github.com/astral-sh/ruff-pre-commit: v0.0.287 → v0.0.288](astral-sh/ruff-pre-commit@v0.0.287...v0.0.288) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* added batchsize for embedding density * adds release note
* adds subclustering to leiden and louvain * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
updates: - [github.com/astral-sh/ruff-pre-commit: v0.0.288 → v0.0.290](astral-sh/ruff-pre-commit@v0.0.288...v0.0.290) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* updates docs * adds install
* removed small
* Fixes for cupy anndata * added release note * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Oh looks like I used the wrong repo, I will open it on scverse |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I bring my initial implementation of
read_mtx_gpu
from gpu branch of scanpy, now available atrsc.read_mtx
! Here are some infos:cudf
to load the mtx. There is alsodask-cudf
bakend option available as it might help for out of memory loading, but I do not think it is then necessary to includedask-cudf
as a pip requirement (but can be otherwise).