Skip to content

Commit

Permalink
Add ignore_run_exports for CUDA 11 (#593)
Browse files Browse the repository at this point in the history
Adds `ignore_run_exports` for the CUDA 11 compiler. This allows any `cuda-version=11` to work with `cucim`.

This is similar to other repos: https://github.com/rapidsai/cudf/blob/branch-23.10/conda/recipes/libcudf/meta.yaml#L86-L89

Authors:
  - Ray Douglass (https://github.com/raydouglass)

Approvers:
  - Jake Awe (https://github.com/AyodeAwe)
  - AJ Schmidt (https://github.com/ajschmidt8)
  - Bradley Dice (https://github.com/bdice)
  - https://github.com/jakirkham

URL: #593
  • Loading branch information
raydouglass authored Aug 2, 2023
1 parent 0ad9d8e commit 41acf93
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions conda/recipes/cucim/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ source:
build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_major }}_py{{ py_version }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
ignore_run_exports:
{% if cuda_major == "11" %}
- {{ compiler('cuda11') }}
{% endif %}
script_env:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
Expand Down
3 changes: 3 additions & 0 deletions conda/recipes/libcucim/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ build:
string: cuda{{ cuda_major }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
ignore_run_exports:
- libwebp-base
{% if cuda_major == "11" %}
- {{ compiler('cuda11') }}
{% endif %}
script_env:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
Expand Down

0 comments on commit 41acf93

Please sign in to comment.