-
Notifications
You must be signed in to change notification settings - Fork 162
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
Code corrupted silently when import decord before torch #293
Comments
same problem |
same with me. versions: python: 3.10.14 and cuda related libs installed by pip: |
same problem. python: 3.10.13 |
me too
|
Also happens to me, specifically when
Note1: this occurs even when just importing decord but not actually using it to do anything Issue fixed when: simply importing torch before decord Specific log when running with huggingface accelerate: without accelerate: versions:
|
Thank you for saving my time @ellemcfarlane! I was stuck on this for quite a bit - very weird/unexpected how this works |
it also happened to me with |
This issue occurs when I import decord before torch, and then place nn.Module on the GPU.
It corrupted silently using
python3 debug.py
, and reportedSegmentation fault (core dumped)
when running in terminal.Instead, the following code runs well,
The text was updated successfully, but these errors were encountered: