diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2023-09-20 13:34:35 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2023-09-20 13:34:35 +0200 |
commit | 2d127740cf30cfbd3875a406ecc42ef6ebde60e4 (patch) | |
tree | cadde76fd6d6c0d1258242d21bec4f94ff4e903d /Cargo.toml | |
parent | ae445f481e9ae96b41d15ff22592f40ef5432302 (diff) | |
download | embeddings-sort-2d127740cf30cfbd3875a406ecc42ef6ebde60e4.tar embeddings-sort-2d127740cf30cfbd3875a406ecc42ef6ebde60e4.tar.bz2 embeddings-sort-2d127740cf30cfbd3875a406ecc42ef6ebde60e4.tar.zst |
~3x speed improvement: replace priority queues and prim's algoritm with sorted vectors and krushkal's algorithm
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,6 @@ edition = "2021" image = "0" xdg = "2" clap = { version = "4", features = ["derive"] } -priority-queue = "1" rayon = "1" indicatif = { version = "0", features = ["rayon"] } sled = "0" @@ -21,3 +20,4 @@ anyhow = "1" pathdiff = "0" reflink-copy = "0" multiset = "0" +partitions = "0" |