-
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
Fix INSTALL.md due to failure of conflict resolving #3915
Conversation
@ramilbakhshyiev has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
INSTALL.md
Outdated
@@ -130,8 +130,9 @@ Several options can be passed to CMake, among which: | |||
- `-DCMAKE_BUILD_TYPE=Release` in order to enable generic compiler | |||
optimization options (enables `-O3` on gcc for instance), | |||
- `-DFAISS_OPT_LEVEL=avx2` in order to enable the required compiler flags to | |||
generate code using optimized SIMD instructions (possible values are `generic`, | |||
`avx2` and `avx512`, by increasing order of optimization), | |||
generate code using optimized SIMD/Vector instructions. possible values are below: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: possible -> Possible -- please capitalize
INSTALL.md
Outdated
generate code using optimized SIMD instructions (possible values are `generic`, | ||
`avx2` and `avx512`, by increasing order of optimization), | ||
generate code using optimized SIMD/Vector instructions. possible values are below: | ||
- On x86\_64, `generic`, `avx2` and `avx512`, by increasing order of optimization, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Consider not escaping the underscore for readability.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#3929 has changed x86_64
to x86-64
, so I will follow that.
@toru-fukaya Would you forced-push |
caa1c97
to
7acc5cb
Compare
@vorj done |
@ramilbakhshyiev has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@toru-fukaya thank you! |
@ramilbakhshyiev merged this pull request in e017c35. |
…#3915) Summary: facebookresearch#2943 had removed about SVE information (added on facebookresearch#2886 ) on the installation document. This PR fixes it. This PR changes only the document, so it doesn't affect software behavior. Pull Request resolved: facebookresearch#3915 Reviewed By: asadoughi Differential Revision: D63967842 Pulled By: ramilbakhshyiev fbshipit-source-id: ce0a0bfe591cb75b504cdf6362b5e8ed156928d5
#2943 had removed about SVE information (added on #2886 ) on the installation document. This PR fixes it.
This PR changes only the document, so it doesn't affect software behavior.