-
Notifications
You must be signed in to change notification settings - Fork 7k
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
Skip building torchvision with ffmpeg when python==3.9 #4417
Skip building torchvision with ffmpeg when python==3.9 #4417
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @prabhat00155 , I think this is indeed the safest option for now. LGTM. Do you think we should reopen #3367?
One thing it would be good to understand is why only Python 3.9 is failing. IIUC the python version has no influence on the ffmpeg version we are installing, so maybe this is an issue with our binding code (torchbind?) |
Yeah, makes sense. I've created this issue: #4430 to track this, will debug this further. |
Summary: * Skip building torchvision with ffmpeg when python==3.9 * Add FIXME to comments Reviewed By: datumbox Differential Revision: D31268057 fbshipit-source-id: 71d3ee6c2e0f5cc373bf730804e1d5172a2d6a9d
Building torchvision with ffmpeg 4.3 causes seg fault with python 3.9. Initial debugging shows crash in ffmpeg's sws_scale(). Until this issue is resolved, it's better to avoid building torchvision with ffmpeg for python 3.9.
cc @pmeier