-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable building FAISS main statically (#241)
Port rapidsai/raft#2323 PR from RAFT [Cleans up a collection of anti-patterns in the cuvs CMake code while also enabling building faiss from latest main] Authors: - Tarang Jain (https://github.com/tarang-jain) Approvers: - Robert Maynard (https://github.com/robertmaynard) - Corey J. Nolet (https://github.com/cjnolet) - Paul Taylor (https://github.com/trxcllnt) - Ray Douglass (https://github.com/raydouglass) URL: #241
- Loading branch information
1 parent
337c696
commit b882590
Showing
10 changed files
with
286 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"packages" : { | ||
"faiss" : { | ||
"version": "1.7.4", | ||
"git_url": "https://github.com/facebookresearch/faiss.git", | ||
"git_tag": "main" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"packages" : { | ||
"ggnn" : { | ||
"version": "0.5", | ||
"git_url": "https://github.com/cgtuebingen/ggnn.git", | ||
"git_tag": "release_${version}", | ||
"patches" : [ | ||
{ | ||
"file" : "${current_json_dir}/ggnn.diff", | ||
"issue" : "Correct compilation issues", | ||
"fixed_in" : "" | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"packages" : { | ||
"hnswlib" : { | ||
"version": "0.6.2", | ||
"git_url": "https://github.com/nmslib/hnswlib.git", | ||
"git_tag": "v${version}", | ||
"patches" : [ | ||
{ | ||
"file" : "${current_json_dir}/hnswlib.diff", | ||
"issue" : "Correct compilation issues", | ||
"fixed_in" : "" | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.