Skip to content

Commit

Permalink
Add targets content from cuda-nvcc for CUDA 11 (#356)
Browse files Browse the repository at this point in the history
* Add `targets` content from `cuda-nvcc` for CUDA 11

Within `cuda-nvcc`'s RPM's `targets` directory, there is some content
needed for `nvPTXCompiler`, which the Numba supporting CUDA 11 package,
`ptxcompiler`, uses. This makes sure it is available when
cross-compiling `ptxcompiler`.

As the Docker image and `conda-forge-ci-setup` limit content to the
`targets` directory, the rest of the `cuda-nvcc` content will be
ignored. This is for the best to ensure these other bits are not pulled
in accidentally.

* Bump version to 4.11.0
  • Loading branch information
jakirkham authored Oct 1, 2024
1 parent 707f665 commit 0e2048e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions recipe/cross_compile_support.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ if [[ "${HOST_PLATFORM}" != "${BUILD_PLATFORM}" ]]; then
declare -a DEVELS=(
"cuda_cudart_devel:cuda_cudart"
"cuda_driver_devel:cuda_cudart"
"cuda_nvcc:cuda_nvcc"
"cuda_nvrtc_devel:cuda_nvrtc"
"libcublas_devel:libcublas"
"libcufft_devel:libcufft"
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "conda-forge-ci-setup" %}
{% set version = "4.10.2" %}
{% set version = "4.11.0" %}
{% set build = 0 %}

{% set cuda_compiler_version = cuda_compiler_version or "None" %}
Expand Down

0 comments on commit 0e2048e

Please sign in to comment.