-
Notifications
You must be signed in to change notification settings - Fork 651
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
Sox transforms work on CUDA tensors? #1452
Comments
Hi @turian If what you mean by "Sox transforms" is the filtering functions implemented in If you mean functions under Either way, functions in |
Thanks, my question was about |
Thank you |
Any chance if sox effects ever working with CUDA, or is that unrealistic? |
Hi @rien333 It's not impossible but it's a huge amount of work, and our engineering resource is very limited at the moment. So, yeah unfortunately it's unrealistic. Right now, we have some filters re-implemented with PyTorch's generic Tensor operations. They are compatible with CUDA, but when tensors are moved to CUDA, operations become slower than CPU. Efficient filtering in CUDA requires implementations appropriate for CUDA style parallel computation. |
Thank you @mthrok for your wonderful work. Shinji speaks very highly of your project to me. |
Thanks for the such nice comments. I try to keep the bar high, but libraries cannot exist without users, so let's make something interesting together. :) |
Co-authored-by: Brian Johnson <brianjo@fb.com>
❓ Questions and Help
Do Sox transforms work on CUDA tensors? Or do they transfer the tensor to CPU and process there?
The text was updated successfully, but these errors were encountered: