From b5948427a342cbb28fb1846bfe3de0a340e14caf Mon Sep 17 00:00:00 2001 From: Siddhant Chaudhary Date: Sat, 8 Jun 2024 02:32:53 +0530 Subject: [PATCH] Saving the plan in the `setup` function. --- src/indexing/collection_indexer.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/indexing/collection_indexer.jl b/src/indexing/collection_indexer.jl index 85d5e65..004056c 100644 --- a/src/indexing/collection_indexer.jl +++ b/src/indexing/collection_indexer.jl @@ -95,4 +95,6 @@ function setup(indexer::CollectionIndexer) @info "Creating $(indexer.num_partitions) clusters." @info "Estimated $(indexer.num_embeddings_est) embeddings." + + _save_plan(indexer) end