From 134a6f016f264940b021958dc8dd8fa4fa336f86 Mon Sep 17 00:00:00 2001 From: Ash Vardanian <1983160+ashvardanian@users.noreply.github.com> Date: Sun, 23 Jul 2023 14:50:06 +0000 Subject: [PATCH] Improve: Align allocations to page size by default --- include/usearch/index_punned_dense.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/usearch/index_punned_dense.hpp b/include/usearch/index_punned_dense.hpp index b2a19613..e80f686a 100644 --- a/include/usearch/index_punned_dense.hpp +++ b/include/usearch/index_punned_dense.hpp @@ -144,7 +144,7 @@ class index_punned_dense_gt { /// @brief Schema: input buffer, bytes in input buffer, output buffer. using cast_t = std::function; /// @brief Punned index. - using index_t = index_gt; + using index_t = index_gt>; using index_allocator_t = aligned_allocator_gt; using member_iterator_t = typename index_t::member_iterator_t;