Skip to content
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

Fix cuVS 12.4.0 nightly failure #4153

Closed
wants to merge 1 commit into from
Closed
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
14 changes: 8 additions & 6 deletions conda/faiss-gpu-cuvs/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
{% if cudatoolkit == '11.8.0' %}
{% set cuda_constraints=">=11.4,<12" %}
{% set libcublas_constraints=">=11.6,<12" %}
{% set cudart_constraints="=12.6.77" %}
{% elif cudatoolkit == '12.4.0' %}
{% set cuda_constraints=">=12.1,<12.5" %}
{% set libcublas_constraints=">=12.1,<13" %}
{% set cudart_constraints=">=12.4,<12.5" %}
{% endif %}

package:
Expand Down Expand Up @@ -54,12 +56,12 @@ outputs:
- mkl =2023 # [x86_64]
- mkl-devel =2023 # [x86_64]
- cuda-toolkit {{ cudatoolkit }}
- cuda-cudart =12.6.77
- cuda-cudart-dev =12.6.77
- cuda-cudart-static =12.6.77
- cuda-cudart_linux-64 =12.6.77 # [linux64]
- cuda-cudart-dev_linux-64 =12.6.77 # [linux64]
- cuda-cudart-static_linux-64 =12.6.77 # [linux64]
- cuda-cudart {{ cudart_constraints }}
- cuda-cudart-dev {{ cudart_constraints }}
- cuda-cudart-static {{ cudart_constraints }}
- cuda-cudart_linux-64 {{ cudart_constraints }} # [linux64]
- cuda-cudart-dev_linux-64 {{ cudart_constraints }} # [linux64]
- cuda-cudart-static_linux-64 {{ cudart_constraints }} # [linux64]
host:
- _openmp_mutex =4.5=2_kmp_llvm # [x86_64]
- mkl =2023 # [x86_64]
Expand Down
Loading