Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 17 additions & 15 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
c_compiler:
- gcc # [linux]
- clang # [osx]
- vs2019 # [win]
- vs2019 # [win and x86_64]
- vs2022 # [win and arm64]
c_compiler_version: # [unix]
- 12 # [linux]
- 15 # [osx]
Expand All @@ -12,7 +13,8 @@ c_compiler_version: # [unix]
cxx_compiler:
- gxx # [linux]
- clangxx # [osx]
- vs2019 # [win]
- vs2019 # [win and x86_64]
- vs2022 # [win and arm64]
cxx_compiler_version: # [unix]
- 12 # [linux]
- 15 # [osx]
Expand Down Expand Up @@ -43,26 +45,26 @@ m2w64_fortran_compiler: # [win]

cuda_compiler:
- None
- nvcc # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- nvcc # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- nvcc # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- nvcc # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- nvcc # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- nvcc # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- nvcc # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- nvcc # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
cuda_compiler_version:
- None
- 10.2 # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 11.0 # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 11.1 # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 11.2 # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 10.2 # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 11.0 # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 11.1 # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 11.2 # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
cuda_compiler_version_min:
- None # [osx]
- 10.2 # [linux64 or win]
- 10.2 # [linux64 or win64]
- 11.2 # [linux and (ppc64le or aarch64)]
cudnn:
- undefined
- 7 # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 8 # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 8 # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 8 # [(linux64 or win) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 7 # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 8 # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 8 # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]
- 8 # [(linux64 or win64) and os.environ.get("CF_CUDA_ENABLED", "False") == "True"]

_libgcc_mutex:
- 0.1 conda_forge
Expand Down
18 changes: 9 additions & 9 deletions recipe/migrations/cuda92_100_101.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ fortran_compiler_version: # [linux64]
- 7 # [linux64]
- 7 # [linux64]

cuda_compiler: # [linux64 or win]
cuda_compiler: # [linux64 or win64]
- nvcc # [linux64]
- nvcc # [linux64 or win]
- nvcc # [linux64 or win]
cuda_compiler_version: # [linux64 or win]
- nvcc # [linux64 or win64]
- nvcc # [linux64 or win64]
cuda_compiler_version: # [linux64 or win64]
- 9.2 # [linux64]
- 10.0 # [linux64 or win]
- 10.1 # [linux64 or win]
- 10.0 # [linux64 or win64]
- 10.1 # [linux64 or win64]

cudnn: # [linux64 or win]
cudnn: # [linux64 or win64]
- 7 # [linux64]
- 7 # [linux64 or win]
- 7 # [linux64 or win]
- 7 # [linux64 or win64]
- 7 # [linux64 or win64]

cdt_name: # [linux]
- cos6 # [linux64]
Expand Down