Skip to content

Commit

Permalink
fix nightily build (#4080)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #4080

Reviewed By: mnorris11

Differential Revision: D67002610

Pulled By: junjieqi

fbshipit-source-id: fb561d7bb4b23866daa0b992694fcc393e595312
  • Loading branch information
junjieqi authored and facebook-github-bot committed Dec 10, 2024
1 parent 96bc9c7 commit d997ea0
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
18 changes: 9 additions & 9 deletions conda/faiss-gpu-cuvs/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,24 +46,24 @@ outputs:
requirements:
build:
- {{ compiler('cxx') }}
- sysroot_linux-64 =2.17 # [linux64]
- sysroot_linux-64 # [linux64]
- llvm-openmp # [osx]
- cmake >=3.26.4
- make =4.2 # [not win]
- make # [not win]
- _openmp_mutex =4.5=2_kmp_llvm # [x86_64]
- mkl =2023 # [x86_64]
- mkl-devel =2023 # [x86_64]
- cuda-toolkit {{ cudatoolkit }}
host:
- _openmp_mutex =4.5=2_kmp_llvm # [x86_64]
- mkl =2023 # [x86_64]
- openblas =0.3 # [not x86_64]
- openblas # [not x86_64]
- libcuvs =24.08
- cuda-version {{ cuda_constraints }}
run:
- _openmp_mutex =4.5=2_kmp_llvm # [x86_64]
- mkl =2023 # [x86_64]
- openblas =0.3 # [not x86_64]
- openblas # [not x86_64]
- cuda-cudart {{ cuda_constraints }}
- libcublas {{ libcublas_constraints }}
- libcuvs =24.08
Expand All @@ -88,9 +88,9 @@ outputs:
build:
- {{ compiler('cxx') }}
- sysroot_linux-64 =2.17 # [linux64]
- swig =4.0
- swig
- cmake >=3.24.0
- make =4.2 # [not win]
- make # [not win]
- _openmp_mutex =4.5=2_kmp_llvm # [x86_64]
- mkl =2023 # [x86_64]
- cuda-toolkit {{ cudatoolkit }}
Expand All @@ -107,9 +107,9 @@ outputs:
- {{ pin_subpackage('libfaiss', exact=True) }}
test:
requires:
- numpy >=1.19,<2
- scipy =1.14
- pytorch <2.5
- numpy
- scipy
- pytorch
- pytorch-cuda {{ cuda_constraints }}
commands:
- python -X faulthandler -m unittest discover -v -s tests/ -p "test_*"
Expand Down
18 changes: 9 additions & 9 deletions conda/faiss-gpu/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,18 @@ outputs:
requirements:
build:
- {{ compiler('cxx') }}
- sysroot_linux-64 =2.17 # [linux64]
- sysroot_linux-64 # [linux64]
- llvm-openmp # [osx]
- cmake >=3.24.0
- make =4.2 # [not win]
- make # [not win]
- mkl-devel =2023 # [x86_64]
- cuda-toolkit {{ cudatoolkit }}
host:
- mkl =2023 # [x86_64]
- openblas =0.3 # [not x86_64]
- openblas # [not x86_64]
run:
- mkl =2023 # [x86_64]
- openblas =0.3 # [not x86_64]
- openblas # [not x86_64]
- cuda-cudart {{ cuda_constraints }}
- libcublas {{ libcublas_constraints }}
test:
Expand All @@ -81,9 +81,9 @@ outputs:
build:
- {{ compiler('cxx') }}
- sysroot_linux-64 =2.17 # [linux64]
- swig =4.0
- swig
- cmake >=3.24.0
- make =4.2 # [not win]
- make # [not win]
- cuda-toolkit {{ cudatoolkit }}
host:
- python {{ python }}
Expand All @@ -96,9 +96,9 @@ outputs:
- {{ pin_subpackage('libfaiss', exact=True) }}
test:
requires:
- numpy >=1.19,<2
- scipy =1.14
- pytorch <2.5
- numpy
- scipy
- pytorch
- pytorch-cuda {{ cuda_constraints }}
commands:
- python -X faulthandler -m unittest discover -v -s tests/ -p "test_*"
Expand Down
18 changes: 9 additions & 9 deletions conda/faiss/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ outputs:
requirements:
build:
- {{ compiler('cxx') }}
- sysroot_linux-64 =2.17 # [linux64]
- sysroot_linux-64 # [linux64]
- llvm-openmp # [osx]
- cmake >=3.24.0
- make =4.2 # [not win]
- make # [not win]
- mkl-devel =2023 # [x86_64]
host:
- mkl =2023 # [x86_64]
- openblas =0.3 # [not x86_64]
- openblas # [not x86_64]
run:
- mkl =2023 # [x86_64]
- openblas =0.3 # [not x86_64]
- openblas # [not x86_64]
test:
requires:
- conda-build
Expand All @@ -68,9 +68,9 @@ outputs:
build:
- {{ compiler('cxx') }}
- sysroot_linux-64 =2.17 # [linux64]
- swig =4.0
- swig
- cmake >=3.24.0
- make =4.2 # [not win]
- make # [not win]
host:
- python {{ python }}
- numpy >=1.19,<2
Expand All @@ -82,9 +82,9 @@ outputs:
- {{ pin_subpackage('libfaiss', exact=True) }}
test:
requires:
- numpy >=1.19,<2
- scipy =1.14
- pytorch <2.5
- numpy
- scipy
- pytorch
commands:
- python -X faulthandler -m unittest discover -v -s tests/ -p "test_*"
- python -X faulthandler -m unittest discover -v -s tests/ -p "torch_*"
Expand Down

0 comments on commit d997ea0

Please sign in to comment.