From 36a255a104df010eaeac6394e201d4d55bb80fbe Mon Sep 17 00:00:00 2001 From: Mahmudur Date: Fri, 15 Nov 2024 19:42:52 -0500 Subject: [PATCH] show when init work done --- src/cpp/utils.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cpp/utils.cpp b/src/cpp/utils.cpp index 1a4c810..13dc439 100644 --- a/src/cpp/utils.cpp +++ b/src/cpp/utils.cpp @@ -91,6 +91,8 @@ void compute_index_from_sketches(std::vector>& sketches, std threads[i].join(); } + std::cout << "Threads joined, now merging" << std::endl; + // merge the hash_index_chunks to hash_index for (int i = 0; i < num_unordered_maps; i++) { for (auto it = hash_index_chunks[i].begin(); it != hash_index_chunks[i].end(); it++) {