-
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
Change CI cuda versions to 10.2 #3869
Conversation
Thanks for the PR! Let's see what the CI says. We might need to also change stuff like the use of if device_type == 'gpu':
if python_version != "3.8":
job['filters'] = gen_filter_branch_tree('master', 'nightly')
job['cu_version'] = 'cu101' |
Thanks I'm still looking for more places I have to change. If you see others please let me know. |
062afef
to
6a22a73
Compare
6a22a73
to
0020b68
Compare
It seems that the latest PyTorch core on linux has a new restriction on how you index things across devices:
The problem appears only on Linux GPU and not on Windows: I propose to merge this now and fix ASAP the issues on master on a separate PR. |
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.
Accepting to unblock
To close the loop on this, indexing from python is not affected, because python_variable_indexing copies all the indices to |
@ngimel Thanks for reporting this. Will figure out a fix to this. Update:
|
Summary: * Change cuda versions. * changing cu_version * patching regenerate.py * more changes. Reviewed By: vincentqb, cpuhrsch Differential Revision: D28677174 fbshipit-source-id: a32861bd62e3f5a3d5b19106e4f1773128ba1006
Updates the CI to use cuda 10.2 instead of 10.1 so that we can start using fresh PyTorch core nightlies.