-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Remove useless code #56230
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
Remove useless code #56230
Conversation
💊 CI failures summary and remediationsAs of commit c5303f8 (more details on the Dr. CI page):
🕵️ 2 new failures recognized by patternsThe following CI failures do not appear to be due to upstream breakages:
|
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.
I think it's reasonable to say that most average Windows users will just be incapable of building PyTorch from source and will use our binaries. Requiring a specific MSVC version (and saying you get the keep the pieces if you try another one) seems reasonable. |
@ezyang has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
Summary: Since we're using specific VS, we don't need to specify VC version. In fact, the VC version is not used in CI now. Why I make this change now? I'm writing a robot to update the vs_install.ps1 (pytorch#56261) every 2 weeks. It will submit a PR to check if the latest VS is compatible with PyTorch automatically. Pull Request resolved: pytorch#56230 Reviewed By: bdhirsh Differential Revision: D27856647 Pulled By: ezyang fbshipit-source-id: b46f2bdf35ab5841fded470e23bbf7a01d5f60f4
…7107) Summary: I accidentally reverted pytorch#56230 in pytorch#56128 when resolving conflicts.. This PR relands pytorch#56230 CC mszhanyi Pull Request resolved: pytorch#57107 Reviewed By: astaff Differential Revision: D28096003 Pulled By: seemethere fbshipit-source-id: ea616d6b5cb0b04841d2f4cc30bd130ade4a364c
Since we're using specific VS, we don't need to specify VC version.
In fact, the VC version is not used in CI now.
Why I make this change now?
I'm writing a robot to update the vs_install.ps1 (#56261) every 2 weeks.
It will submit a PR to check if the latest VS is compatible with PyTorch automatically.