Gergely Szilvasy
|
6951466b43
|
raft enabled cmake build (#2898)
Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/2898
Reviewed By: mdouze
Differential Revision: D46561295
Pulled By: algoriddle
fbshipit-source-id: b9806c0c52acf82124c3b2e0095b1c1979318dcd
|
2023-06-13 08:43:18 -07:00 |
Patrick Weizhi Xu
|
1ea134eb83
|
Remove redundant c_api headers while installing (#1841)
Summary:
This diff is related to
https://github.com/facebookresearch/faiss/issues/1722
File structure with `-DFAISS_ENABLE_GPU=OFF`
```
/usr/local/include/faiss/c_api
├── AutoTune_c.h
├── clone_index_c.h
├── Clustering_c.h
├── error_c.h
├── error_impl.h
├── faiss_c.h
├── impl
│ └── AuxIndexStructures_c.h
├── Index_c.h
├── index_factory_c.h
├── IndexFlat_c.h
├── index_io_c.h
├── IndexIVF_c.h
├── IndexIVFFlat_c.h
├── IndexLSH_c.h
├── IndexPreTransform_c.h
├── IndexScalarQuantizer_c.h
├── IndexShards_c.h
├── macros_impl.h
├── MetaIndexes_c.h
└── VectorTransform_c.h
```
File structure with `-DFAISS_ENABLE_GPU=ON`
```
/usr/local/include/faiss/c_api
├── AutoTune_c.h
├── clone_index_c.h
├── Clustering_c.h
├── error_c.h
├── error_impl.h
├── faiss_c.h
├── gpu
│ ├── DeviceUtils_c.h
│ ├── GpuAutoTune_c.h
│ ├── GpuClonerOptions_c.h
│ ├── GpuIndex_c.h
│ ├── GpuIndicesOptions_c.h
│ ├── GpuResources_c.h
│ ├── macros_impl.h
│ └── StandardGpuResources_c.h
├── impl
│ └── AuxIndexStructures_c.h
├── Index_c.h
├── index_factory_c.h
├── IndexFlat_c.h
├── index_io_c.h
├── IndexIVF_c.h
├── IndexIVFFlat_c.h
├── IndexLSH_c.h
├── IndexPreTransform_c.h
├── IndexScalarQuantizer_c.h
├── IndexShards_c.h
├── macros_impl.h
├── MetaIndexes_c.h
└── VectorTransform_c.h
```
Pull Request resolved: https://github.com/facebookresearch/faiss/pull/1841
Reviewed By: mdouze
Differential Revision: D27992822
Pulled By: beauby
fbshipit-source-id: 63fa9a39c77502d138453cb4b04c50652e732196
|
2021-04-26 02:20:23 -07:00 |
Prabhat Roy
|
f2f014de50
|
Added C API(GPU) to CMake and CircleCI (#1700)
Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/1700
Reviewed By: mdouze
Differential Revision: D26814446
Pulled By: beauby
fbshipit-source-id: 654e0297be929afd42bcfbaf790c5d87f04f5193
|
2021-03-04 05:04:00 -08:00 |