-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Build error on Faiss due to missing #includes #3532
Labels
Comments
facebook-github-bot
referenced
this issue
Jul 1, 2024
Summary: The current version of Faiss cannot be built due to missing `#include`s on a test file `tests/test_ivf_index.cpp`. This is better described in issue [https://github.com/facebookresearch/faiss/issues/3532](https://github.com/facebookresearch/faiss/issues/3532). This adds the missing imports. Reviewed By: asadoughi Differential Revision: D58899187 Pulled By: junjieqi
facebook-github-bot
pushed a commit
that referenced
this issue
Jul 3, 2024
Summary: Pull Request resolved: #3609 The current version of Faiss cannot be built due to missing #includes on a test file tests/test_ivf_index.cpp. This is better described in issue #3532. #3533 Reviewed By: ramilbakhshyiev Differential Revision: D59314273 fbshipit-source-id: 6ec8bfa973760d0a44bc94ae751b4fc55c4784ef
fixed |
abhinavdangeti
pushed a commit
to blevesearch/faiss
that referenced
this issue
Jul 12, 2024
…earch#3609) Summary: Pull Request resolved: facebookresearch#3609 The current version of Faiss cannot be built due to missing #includes on a test file tests/test_ivf_index.cpp. This is better described in issue facebookresearch#3532. facebookresearch#3533 Reviewed By: ramilbakhshyiev Differential Revision: D59314273 fbshipit-source-id: 6ec8bfa973760d0a44bc94ae751b4fc55c4784ef
ketor
pushed a commit
to dingodb/faiss
that referenced
this issue
Aug 20, 2024
…earch#3609) Summary: Pull Request resolved: facebookresearch#3609 The current version of Faiss cannot be built due to missing #includes on a test file tests/test_ivf_index.cpp. This is better described in issue facebookresearch#3532. facebookresearch#3533 Reviewed By: ramilbakhshyiev Differential Revision: D59314273 fbshipit-source-id: 6ec8bfa973760d0a44bc94ae751b4fc55c4784ef
aalekhpatel07
pushed a commit
to aalekhpatel07/faiss
that referenced
this issue
Oct 17, 2024
…earch#3609) Summary: Pull Request resolved: facebookresearch#3609 The current version of Faiss cannot be built due to missing #includes on a test file tests/test_ivf_index.cpp. This is better described in issue facebookresearch#3532. facebookresearch#3533 Reviewed By: ramilbakhshyiev Differential Revision: D59314273 fbshipit-source-id: 6ec8bfa973760d0a44bc94ae751b4fc55c4784ef
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Summary
Compiling Faiss using cmake on my Linux desktop produces a build error.
This can be solved by including
set
andalgorithm
totest_ivf_index.cpp
.Platform
OS: Arch Linux
Faiss version:
e758973fa08164728eb9e136631fe6c57d7edf6c
Installed from: Attempting to compile with cmake
Faiss compilation options:
-DBUILD_SHARED_LIBS=ON -DFAISS_ENABLE_C_API=ON
Running on:
Interface:
Reproduction instructions
Proposed solution
This can be fixed by adding two missing
#include
s totest_ivf_index.cpp
.The text was updated successfully, but these errors were encountered: