diff --git a/.github/workflows/build-python-pdoc.yml b/.github/workflows/build-python-pdoc.yml index 96c729605..444a7ee6e 100644 --- a/.github/workflows/build-python-pdoc.yml +++ b/.github/workflows/build-python-pdoc.yml @@ -47,7 +47,8 @@ jobs: with: name: dependencies path: | - dependencies_documentation.txt + ${{ github.run_id }}-dependencies_documentation.txt + overwrite: true - name: Archive documentation artifacts uses: actions/upload-artifact@v4 with: diff --git a/src/pq_flash_index.cpp b/src/pq_flash_index.cpp index fbb81d55f..d9ad50617 100644 --- a/src/pq_flash_index.cpp +++ b/src/pq_flash_index.cpp @@ -365,11 +365,6 @@ void PQFlashIndex::cache_bfs_levels(uint64_t num_nodes_to_cache, std: } diskann::cout << "Caching " << num_nodes_to_cache << "..." << std::endl; - // borrow thread data - ScratchStoreManager> manager(this->_thread_data); - auto this_thread_data = manager.scratch_space(); - IOContext &ctx = this_thread_data->ctx; - std::unique_ptr> cur_level, prev_level; cur_level = std::make_unique>(); prev_level = std::make_unique>();