Skip to content

Commit d243e62

Browse files
asadoughifacebook-github-bot
authored andcommitted
Updated conda CI label from staging to main, INSTALL.md (#3929)
Summary: * Replaced 1.8.0 to 1.9.0. * Fixed x86-64 architecture reference: https://en.wikipedia.org/wiki/X86-64 Tested with: `conda install -c pytorch/label/staging faiss-cpu` Pull Request resolved: #3929 Reviewed By: ramilbakhshyiev Differential Revision: D64082430 Pulled By: asadoughi fbshipit-source-id: 8a1427a7c14b8c3de4a341533b138d9d8f8490f2
1 parent af70c5b commit d243e62

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.github/workflows/build.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
env:
179179
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
180180
with:
181-
label: staging
181+
label: main
182182
linux-x86_64-GPU-packages-CUDA-11-4-4:
183183
name: Linux x86_64 GPU packages (CUDA 11.4.4)
184184
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
@@ -197,7 +197,7 @@ jobs:
197197
env:
198198
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
199199
with:
200-
label: staging
200+
label: main
201201
cuda: "11.4.4"
202202
linux-x86_64-GPU-RAFT-packages-CUDA11-8-0:
203203
name: Linux x86_64 GPU w/ RAFT packages (CUDA 11.8.0)
@@ -216,7 +216,7 @@ jobs:
216216
env:
217217
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
218218
with:
219-
label: staging
219+
label: main
220220
raft: "ON"
221221
cuda: "11.8.0"
222222
linux-x86_64-GPU-packages-CUDA-12-1-1:
@@ -236,7 +236,7 @@ jobs:
236236
env:
237237
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
238238
with:
239-
label: staging
239+
label: main
240240
cuda: "12.1.1"
241241
linux-x86_64-GPU-RAFT-packages-CUDA12-1-1:
242242
name: Linux x86_64 GPU w/ RAFT packages (CUDA 12.1.1)
@@ -255,7 +255,7 @@ jobs:
255255
env:
256256
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
257257
with:
258-
label: staging
258+
label: main
259259
raft: "ON"
260260
cuda: "12.1.1"
261261
windows-x86_64-packages:
@@ -273,7 +273,7 @@ jobs:
273273
env:
274274
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
275275
with:
276-
label: staging
276+
label: main
277277
osx-arm64-packages:
278278
name: OSX arm64 packages
279279
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
@@ -289,7 +289,7 @@ jobs:
289289
env:
290290
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
291291
with:
292-
label: staging
292+
label: main
293293
linux-arm64-packages:
294294
name: Linux arm64 packages
295295
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
@@ -305,4 +305,4 @@ jobs:
305305
env:
306306
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
307307
with:
308-
label: staging
308+
label: main

INSTALL.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ The supported way to install Faiss is through [conda](https://docs.conda.io).
44
Stable releases are pushed regularly to the pytorch conda channel, as well as
55
pre-release nightly builds.
66

7-
- The CPU-only faiss-cpu conda package is currently available on Linux (x86_64 and arm64), OSX (arm64 only), and Windows (x86_64)
8-
- faiss-gpu, containing both CPU and GPU indices, is available on Linux (x86_64 only) for CUDA 11.4 and 12.1
9-
- NEW: faiss-gpu-raft containing both CPU and GPU indices provided by NVIDIA RAFT, is available on Linux (x86_64 only) for CUDA 11.8 and 12.1.
7+
- The CPU-only faiss-cpu conda package is currently available on Linux (x86-64 and aarch64), OSX (arm64 only), and Windows (x86-64)
8+
- faiss-gpu, containing both CPU and GPU indices, is available on Linux (x86-64 only) for CUDA 11.4 and 12.1
9+
- faiss-gpu-raft containing both CPU and GPU indices provided by NVIDIA RAFT, is available on Linux (x86-64 only) for CUDA 11.8 and 12.1.
1010

1111
To install the latest stable release:
1212

1313
``` shell
1414
# CPU-only version
15-
$ conda install -c pytorch faiss-cpu=1.8.0
15+
$ conda install -c pytorch faiss-cpu=1.9.0
1616

1717
# GPU(+CPU) version
18-
$ conda install -c pytorch -c nvidia faiss-gpu=1.8.0
18+
$ conda install -c pytorch -c nvidia faiss-gpu=1.9.0
1919

2020
# GPU(+CPU) version with NVIDIA RAFT
21-
$ conda install -c pytorch -c nvidia -c rapidsai -c conda-forge faiss-gpu-raft=1.8.0
21+
$ conda install -c pytorch -c nvidia -c rapidsai -c conda-forge faiss-gpu-raft=1.9.0
2222

2323
# GPU(+CPU) version using AMD ROCm not yet available
2424
```
@@ -35,10 +35,10 @@ Nightly pre-release packages can be installed as follows:
3535
$ conda install -c pytorch/label/nightly faiss-cpu
3636

3737
# GPU(+CPU) version
38-
$ conda install -c pytorch/label/nightly -c nvidia faiss-gpu=1.8.0
38+
$ conda install -c pytorch/label/nightly -c nvidia faiss-gpu=1.9.0
3939

4040
# GPU(+CPU) version with NVIDIA RAFT
41-
conda install -c pytorch -c nvidia -c rapidsai -c conda-forge faiss-gpu-raft=1.8.0 pytorch pytorch-cuda numpy
41+
conda install -c pytorch -c nvidia -c rapidsai -c conda-forge faiss-gpu-raft=1.9.0 pytorch pytorch-cuda numpy
4242

4343
# GPU(+CPU) version using AMD ROCm not yet available
4444
```
@@ -80,7 +80,7 @@ conda-forge package "feedstock".
8080

8181
Faiss can be built from source using CMake.
8282

83-
Faiss is supported on x86_64 machines on Linux, OSX, and Windows. It has been
83+
Faiss is supported on x86-64 machines on Linux, OSX, and Windows. It has been
8484
found to run on other platforms as well, see
8585
[other platforms](https://github.com/facebookresearch/faiss/wiki/Related-projects#bindings-to-other-languages-and-porting-to-other-platforms).
8686

0 commit comments

Comments
 (0)