Add CUDA 11 builds for Windows CI#42420
Conversation
💊 CI failures summary and remediationsAs of commit de3bef7 (more details on the Dr. CI page): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 This comment was automatically generated by Dr. CI (expand for details).Follow this link to opt-out of these comments for your Pull Requests.Please report bugs/suggestions on the GitHub issue tracker or post in the (internal) Dr. CI Users group. This comment has been revised 91 times. |
268d8cb to
ce87890
Compare
6422f84 to
e7b2b57
Compare
There was a problem hiding this comment.
Not sure what extra coverage force_on_cpu gives us for 10.1 vs 11.0, imo we should have one or the other
There was a problem hiding this comment.
Removed the one for cuda 11.
There was a problem hiding this comment.
Hmm, your change disables this functionality on Linux with CUDA-10.2, which is not ideal, is it?
| #if defined(__CUDACC__) && CUSPARSE_VERSION >= 11000 | |
| #if defined(__CUDACC__) && (CUSPARSE_VERSION >= 11000 || (!defined(_MSC_VER) && CUSPARSE_VERSION >= 10301)) |
There was a problem hiding this comment.
You can check cusparse details at #42412. On linux cuda 10.2, using new or old API should have no big differences. They are both functional. This is just to make the macro straightforward.
There was a problem hiding this comment.
Let's keep this enabled for CUDA 10.2 on Linux
| #if defined(__CUDACC__) && CUSPARSE_VERSION >= 11000 | |
| #if defined(__CUDACC__) && (CUSPARSE_VERSION >= 11000 || (!defined(_MSC_VER) && CUSPARSE_VERSION >= 10301)) |
There was a problem hiding this comment.
How this is related to CUDA-11 upgrade?
cmake/ProtoBufPatch.cmake
Outdated
There was a problem hiding this comment.
How this related to CUDA-11 update?
There was a problem hiding this comment.
The error (in comments) will be raised for CUDA 11 builds.
|
Part of the cusparse changes (cuda11+windows) were just merged at #42412. |
0616dd6 to
6511fec
Compare
|
@malfet Rebased. |
facebook-github-bot
left a comment
There was a problem hiding this comment.
@malfet has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
6511fec to
de3bef7
Compare
Stacked on #42410.