Skip to content

Commit

Permalink
Explicitly list CUDA libs in Python Conda package
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored Oct 23, 2024
1 parent 7715e36 commit fb76de8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions conda/recipes/kvikio/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ requirements:
- cython >=3.0.0
{% if cuda_major == "11" %}
- cudatoolkit
- libcufile {{ cuda11_libcufile_run_version }} # [linux64]
{% else %}
- cuda-cudart-dev
- libcufile-dev # [linux]
{% endif %}
- cuda-version ={{ cuda_version }}
- nvcomp {{ nvcomp_version }}
Expand All @@ -76,6 +80,10 @@ requirements:
- {{ pin_compatible('cuda-version', max_pin='x', min_pin='x') }}
{% if cuda_major == "11" %}
- cudatoolkit
- libcufile {{ cuda11_libcufile_run_version }} # [linux64]
{% else %}
- cuda-cudart
- libcufile # [linux]
{% endif %}

test:
Expand Down

0 comments on commit fb76de8

Please sign in to comment.