File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -451,18 +451,12 @@ class DynamicVamanaIndexImpl {
451451
452452 svs::DistanceDispatcher distance_dispatcher (to_svs_distance (metric));
453453
454- // Create allocator with custom block size for data loading
455- auto parameters =
456- svs::data::BlockingParameters{.blocksize_bytes = svs::lib::PowerOfTwo (26 )};
457- auto allocator = svs::data::Blocked<svs::lib::Allocator<std::byte>>{parameters};
458-
459454 return distance_dispatcher ([&](auto && distance) {
460455 return new svs::DynamicVamana (
461456 svs::DynamicVamana::assemble<float , storage::StorageType_t<Tag>>(
462457 stream,
463458 std::forward<decltype (distance)>(distance),
464- std::move (threadpool),
465- allocator
459+ std::move (threadpool)
466460 )
467461 );
468462 });
You can’t perform that action at this time.
0 commit comments