From e75f56a0f291c8a773fd5aef701033dcaeac7ddb Mon Sep 17 00:00:00 2001 From: KCaverly Date: Tue, 26 Sep 2023 12:39:22 -0400 Subject: [PATCH] move to system blas --- Cargo.lock | 1 + crates/semantic_index/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 68c7a159d2..edb2272c1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6834,6 +6834,7 @@ dependencies = [ "log", "ndarray", "node_runtime", + "openblas-src", "ordered-float", "parking_lot 0.11.2", "picker", diff --git a/crates/semantic_index/Cargo.toml b/crates/semantic_index/Cargo.toml index 7e68399b10..cd08aa0d63 100644 --- a/crates/semantic_index/Cargo.toml +++ b/crates/semantic_index/Cargo.toml @@ -41,6 +41,7 @@ globset.workspace = true sha1 = "0.10.5" ndarray = { version = "0.15.0", features = ["blas"] } blas-src = { version = "0.8", features = ["openblas"] } +openblas-src = { version = "0.10", features = ["cblas", "system"] } [dev-dependencies] collections = { path = "../collections", features = ["test-support"] }