-
Notifications
You must be signed in to change notification settings - Fork 8
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
Fix type problem for GPU tensors #3
base: master
Are you sure you want to change the base?
Conversation
This fix is not great because it requires transferring the data to GPU each
time it's used.
That is slow.
Better have the device an arg to the constructor, I think.
…On Fri, Jan 10, 2020 at 6:00 AM Zili Huang ***@***.***> wrote:
Fix type problem for GPU tensors
------------------------------
You can view, comment on, or merge this pull request online at:
#3
Commit Summary
- fix type problem for GPU tensors
File Changes
- *M* lilfilter/local_amplitude.py
<https://github.com/danpovey/filtering/pull/3/files#diff-0> (4)
- *M* lilfilter/resampler.py
<https://github.com/danpovey/filtering/pull/3/files#diff-1> (6)
- *M* lilfilter/torch_filter.py
<https://github.com/danpovey/filtering/pull/3/files#diff-2> (2)
Patch Links:
- https://github.com/danpovey/filtering/pull/3.patch
- https://github.com/danpovey/filtering/pull/3.diff
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#3?email_source=notifications&email_token=AAZFLOY5NOZJ3NUR4L3HADLQ46M6HA5CNFSM4KE7CZCKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IFF62LQ>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAZFLO4ROW4J7WRPH453MULQ46M6HANCNFSM4KE7CZCA>
.
|
I have a project where I need gpu functionality, so I'll go ahead and merge it into my own fork. Thanks @HuangZiliAndy :) |
I think it would make more sense (would be more efficient) to add a |
i can go ahead and implement that, unless you want to do it :) i'll be slower to write it than you for sure |
yes, please do!
…On Fri, Jun 18, 2021 at 3:15 PM Kento Nishi ***@***.***> wrote:
i can go ahead and implement that, unless you want to do it :) i'll be
slower to write it than you for sure
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#3 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAZFLOYRENTXVNSPXLQNYSDTTLXATANCNFSM4KE7CZCA>
.
|
hm, i just found out that |
Fix type problem for GPU tensors