-
-
Notifications
You must be signed in to change notification settings - Fork 593
drop CUDA 11.8 #7431
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
drop CUDA 11.8 #7431
Changes from all commits
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 | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,7 +6,6 @@ c_compiler: | |||||||||||
| c_compiler_version: # [unix] | ||||||||||||
| - 13 # [linux] | ||||||||||||
| - 18 # [osx] | ||||||||||||
| - 11 # [linux and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| # CUDA 12.4 on PPC does not support GCC 13 | ||||||||||||
| - 12 # [linux and ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - 13 # [linux and not ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
|
|
@@ -30,7 +29,6 @@ cxx_compiler: | |||||||||||
| cxx_compiler_version: # [unix] | ||||||||||||
| - 13 # [linux] | ||||||||||||
| - 18 # [osx] | ||||||||||||
| - 11 # [linux and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - 12 # [linux and ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - 13 # [linux and not ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| llvm_openmp: # [osx] | ||||||||||||
|
|
@@ -43,7 +41,6 @@ fortran_compiler_version: # [unix or win64] | |||||||||||
| - 13 # [linux] | ||||||||||||
| - 13 # [osx] | ||||||||||||
| - 5 # [win64] | ||||||||||||
| - 11 # [linux and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - 12 # [linux and ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - 13 # [linux and not ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| m2w64_c_compiler: # [win] | ||||||||||||
|
|
@@ -60,17 +57,15 @@ m2w64_fortran_compiler_version: # [win] | |||||||||||
| - 13 # [win] | ||||||||||||
|
|
||||||||||||
| cuda_compiler: | ||||||||||||
| - None | ||||||||||||
| - nvcc # [(linux or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - cuda-nvcc # [(linux or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - cuda-nvcc | ||||||||||||
| cuda_compiler_version: | ||||||||||||
| - None | ||||||||||||
| - 11.8 # [(linux or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - 12.4 # [linux and ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - 12.6 # [((linux and not ppc64le) or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| cuda_compiler_version_min: | ||||||||||||
| - None # [osx] | ||||||||||||
| - 11.8 # [linux or win64] | ||||||||||||
| - 12.4 # [linux and ppc64le] | ||||||||||||
| - 12.6 # [(linux and not ppc64le) or win64] | ||||||||||||
|
|
||||||||||||
| arm_variant_type: # [aarch64] | ||||||||||||
| - sbsa # [aarch64] | ||||||||||||
|
|
@@ -140,57 +135,27 @@ cdt_name: # [linux] | |||||||||||
| - conda # [linux] | ||||||||||||
|
|
||||||||||||
| docker_image: # [os.environ.get("BUILD_PLATFORM", "").startswith("linux-")] | ||||||||||||
| # non-CUDA-enabled builds on CentOS 7 | ||||||||||||
| # builds on CentOS 7 | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64:cos7 # [os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "cos7"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-aarch64:cos7 # [os.environ.get("BUILD_PLATFORM") == "linux-aarch64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "cos7"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-ppc64le:cos7 # [os.environ.get("BUILD_PLATFORM") == "linux-ppc64le" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "cos7"] | ||||||||||||
|
|
||||||||||||
| # non-CUDA-enabled builds on AlmaLinux 8 | ||||||||||||
| # builds on AlmaLinux 8 | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64:alma8 # [os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") in ("alma8", "ubi8")] | ||||||||||||
| - quay.io/condaforge/linux-anvil-aarch64:alma8 # [os.environ.get("BUILD_PLATFORM") == "linux-aarch64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") in ("alma8", "ubi8")] | ||||||||||||
| - quay.io/condaforge/linux-anvil-ppc64le:alma8 # [os.environ.get("BUILD_PLATFORM") == "linux-ppc64le" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") in ("alma8", "ubi8")] | ||||||||||||
|
|
||||||||||||
| # non-CUDA-enabled builds on AlmaLinux 9 | ||||||||||||
| # builds on AlmaLinux 9 | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64:alma9 # [os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "alma9"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-aarch64:alma9 # [os.environ.get("BUILD_PLATFORM") == "linux-aarch64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "alma9"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-ppc64le:alma9 # [os.environ.get("BUILD_PLATFORM") == "linux-ppc64le" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "alma9"] | ||||||||||||
|
|
||||||||||||
| # CUDA 11.8 builds (only x64 has a DEFAULT_LINUX_VERSION choice; alma9 not available) | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64-cuda11.8:cos7 # [linux64 and os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "ubi8") == "cos7"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64-cuda11.8:ubi8 # [linux64 and os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "ubi8") in ("ubi8", "alma8", "alma9")] | ||||||||||||
| # CUDA 11.8 arch: native compilation (build == target) | ||||||||||||
| - quay.io/condaforge/linux-anvil-aarch64-cuda11.8:ubi8 # [aarch64 and os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-aarch64"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-ppc64le-cuda11.8:ubi8 # [ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-ppc64le"] | ||||||||||||
| # CUDA 11.8 arch: cross-compilation (build != target) | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64-cuda11.8:ubi8 # [aarch64 and os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-64"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64-cuda11.8:ubi8 # [ppc64le and os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-64"] | ||||||||||||
|
|
||||||||||||
| # CUDA 12 builds on CentOS 7 | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64:cos7 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "cos7"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-aarch64:cos7 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-aarch64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "cos7"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-ppc64le:cos7 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-ppc64le" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "cos7"] | ||||||||||||
|
|
||||||||||||
| # CUDA 12 builds on AlmaLinux 8 | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64:alma8 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") in ("alma8", "ubi8")] | ||||||||||||
| - quay.io/condaforge/linux-anvil-aarch64:alma8 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-aarch64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") in ("alma8", "ubi8")] | ||||||||||||
| - quay.io/condaforge/linux-anvil-ppc64le:alma8 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-ppc64le" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") in ("alma8", "ubi8")] | ||||||||||||
|
|
||||||||||||
| # CUDA 12 builds on AlmaLinux 9 | ||||||||||||
| - quay.io/condaforge/linux-anvil-x86_64:alma9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "alma9"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-aarch64:alma9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-aarch64" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "alma9"] | ||||||||||||
| - quay.io/condaforge/linux-anvil-ppc64le:alma9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM") == "linux-ppc64le" and os.environ.get("DEFAULT_LINUX_VERSION", "alma9") == "alma9"] | ||||||||||||
|
|
||||||||||||
| zip_keys: | ||||||||||||
| - # [unix] | ||||||||||||
| - c_compiler_version # [unix] | ||||||||||||
| - cxx_compiler_version # [unix] | ||||||||||||
| - fortran_compiler_version # [unix] | ||||||||||||
| - cuda_compiler # [linux and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - cuda_compiler_version # [linux and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
|
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.
Suggested change
Member
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. No |
||||||||||||
| - docker_image # [linux and os.environ.get("CF_CUDA_ENABLED", "False") == "True" and os.environ.get("BUILD_PLATFORM", "").startswith("linux-")] | ||||||||||||
| - # [win64 and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - cuda_compiler # [win64 and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - cuda_compiler_version # [win64 and os.environ.get("CF_CUDA_ENABLED", "False") == "True"] | ||||||||||||
| - | ||||||||||||
|
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.
Suggested change
Member
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. No |
||||||||||||
| - python | ||||||||||||
| - numpy | ||||||||||||
|
|
||||||||||||
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.
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.
No