-
Notifications
You must be signed in to change notification settings - Fork 247
Use GCC 13 in CUDA 12 conda builds. #1773
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
Changes from 6 commits
87c7296
72e6ad1
a0013e1
a6bd58b
0a1355d
b984c92
8a6a84d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,20 @@ | ||
| c_compiler_version: | ||
| - 11 | ||
| - 13 # [not os.environ.get("RAPIDS_CUDA_VERSION", "").startswith("11")] | ||
| - 11 # [os.environ.get("RAPIDS_CUDA_VERSION", "").startswith("11")] | ||
|
|
||
| cxx_compiler_version: | ||
| - 11 | ||
| - 13 # [not os.environ.get("RAPIDS_CUDA_VERSION", "").startswith("11")] | ||
| - 11 # [os.environ.get("RAPIDS_CUDA_VERSION", "").startswith("11")] | ||
|
|
||
| cuda_compiler: | ||
| - cuda-nvcc | ||
|
|
||
| cuda11_compiler: | ||
| - nvcc | ||
| - cuda-nvcc # [not os.environ.get("RAPIDS_CUDA_VERSION", "").startswith("11")] | ||
| - nvcc # [os.environ.get("RAPIDS_CUDA_VERSION", "").startswith("11")] | ||
|
Comment on lines
+10
to
+11
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change is optional -- we could leave it as The plus side of doing this is that it slightly simplifies the
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like this change, keeping more of the future compiler-version churn concentrated in the git blame in |
||
|
|
||
| c_stdlib: | ||
| - sysroot | ||
|
|
||
| c_stdlib_version: | ||
| - "2.17" | ||
| - "2.28" | ||
|
|
||
| cmake_version: | ||
| - ">=3.26.4,!=3.30.0" | ||
Uh oh!
There was an error while loading. Please reload this page.