-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e525dcf
commit 40ac3d5
Showing
25 changed files
with
1,446 additions
and
126 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
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,17 @@ | ||
hnsw_db_1000000_hawk_graph_links.csv.zip filter=lfs diff=lfs merge=lfs -text | ||
hnsw_db_1000000_hawk_vectors.csv.zip filter=lfs diff=lfs merge=lfs -text | ||
hnsw_db_100000_hawk_graph_links.csv.zip filter=lfs diff=lfs merge=lfs -text | ||
hnsw_db_100000_hawk_vectors.csv.zip filter=lfs diff=lfs merge=lfs -text | ||
hnsw_db_200000_hawk_graph_links.csv.zip filter=lfs diff=lfs merge=lfs -text | ||
hnsw_db_200000_hawk_vectors.csv.zip filter=lfs diff=lfs merge=lfs -text | ||
100K_rust_format_synthetic_data.dat.zip filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_8 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_9 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_3 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_4 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_2 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_5 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_6 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_7 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_0 filter=lfs diff=lfs merge=lfs -text | ||
processed_masked_irises_chunk_1 filter=lfs diff=lfs merge=lfs -text |
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
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 @@ | ||
DROP TABLE hawk_vectors; |
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,5 @@ | ||
CREATE TABLE IF NOT EXISTS hawk_vectors ( | ||
id integer NOT NULL, | ||
point jsonb NOT NULL, | ||
CONSTRAINT hawk_vectors_pkey PRIMARY KEY (id) | ||
); |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
pub mod galois_store; | ||
pub mod plaintext_store; | ||
// #[cfg(feature = "db_dependent")] | ||
pub mod plaintext_store_db; |
Oops, something went wrong.