forked from pytorch/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
46 lines (40 loc) · 882 Bytes
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package:
name: faiss-gpu
version: "{{ environ.get('FAISS_BUILD_VERSION') }}"
source:
git_rev: master
git_url: https://github.com/facebookresearch/faiss
requirements:
build:
- python
- numpy 1.11.*
- gcc
- setuptools
- swig
- mkl
run:
- python
- numpy >=1.11
- libgcc
- mkl
build:
number: {{ environ.get('FAISS_BUILD_NUMBER') }}
string: py{{py}}_cuda{{ environ['CUDA_VERSION'] }}_{{ environ.get('FAISS_BUILD_NUMBER') }}
features:
- cuda90
test:
requires:
- cuda90
imports:
- faiss
source_files:
- tests
commands:
- python tests/test_index.py
- python tests/test_index_composite.py
about:
home: https://github.com/facebookresearch/faiss
license: BSD 3-Clause
license_family: BSD
license_file: LICENSE
summary: A library for efficient similarity search and clustering of dense vectors.