-
Notifications
You must be signed in to change notification settings - Fork 20
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
Feature Request: make selectors amenable to GPU processing #127
Comments
So for more context on this: it would be nice to be able to pass a torch.Tensor (or jax array) living on GPU directly to the selectors, instead of having to move the data back to main CPU memory. A first pass would be to make sure all the function calls are compatible with PyTorch API, but given the high usage of Python This is mostly unrelated to the autograd part of PyTorch, so even if we need to |
My ideal user-facing interface for this would be to be able to do something like this: import torch
from skmatter.feature_selection import CUR
X = torch.rand(300, 300, device="cuda") # or device="mps" on Apple M1/M2
selector = CUR(n_to_select=4)
selector.fit(X)
Xr = selector.transform(X)
# Xr is a torch tensor, with device=X.device A first step for this would be to add a test trying to use skmatter with a torch tensor, and check where the code starts throwing errors. Depending on the number of function call (e.g. |
This is put on the back burner for now, if you are interested in getting skmatter to run on GPU please voice your interest here! |
It looks like sklearn now has experimental support for PyTorch/CuPy (and thus GPU data) using the array API: https://scikit-learn.org/stable/modules/array_api.html. We could use the same here! |
We should experiment as well how the array api works with our selection methods. FPS is probably a good candidate because we do not use very complicated mathematical operations there. So hopefully there is not so much friction in making this work. |
More info on this array API in sklearn: https://labs.quansight.org/blog/array-api-support-scikit-learn. |
as requested by @Luthaf
The text was updated successfully, but these errors were encountered: