/root/doris/contrib/faiss/faiss/IndexFlatCodes.cpp
Line | Count | Source |
1 | | /* |
2 | | * Copyright (c) Meta Platforms, Inc. and affiliates. |
3 | | * |
4 | | * This source code is licensed under the MIT license found in the |
5 | | * LICENSE file in the root directory of this source tree. |
6 | | */ |
7 | | |
8 | | #include <faiss/IndexFlatCodes.h> |
9 | | |
10 | | #include <faiss/impl/AuxIndexStructures.h> |
11 | | #include <faiss/impl/CodePacker.h> |
12 | | #include <faiss/impl/DistanceComputer.h> |
13 | | #include <faiss/impl/FaissAssert.h> |
14 | | #include <faiss/impl/IDSelector.h> |
15 | | #include <faiss/impl/ResultHandler.h> |
16 | | #include <faiss/utils/extra_distances.h> |
17 | | |
18 | | namespace faiss { |
19 | | |
20 | | IndexFlatCodes::IndexFlatCodes(size_t code_size, idx_t d, MetricType metric) |
21 | 113 | : Index(d, metric), code_size(code_size) {} |
22 | | |
23 | 17 | IndexFlatCodes::IndexFlatCodes() : code_size(0) {} |
24 | | |
25 | 18.0k | void IndexFlatCodes::add(idx_t n, const float* x) { |
26 | 18.0k | FAISS_THROW_IF_NOT(is_trained); |
27 | 18.0k | if (n == 0) { |
28 | 0 | return; |
29 | 0 | } |
30 | 18.0k | codes.resize((ntotal + n) * code_size); |
31 | 18.0k | sa_encode(n, x, codes.data() + (ntotal * code_size)); |
32 | 18.0k | ntotal += n; |
33 | 18.0k | } |
34 | | |
35 | | void IndexFlatCodes::add_sa_codes( |
36 | | idx_t n, |
37 | | const uint8_t* codes_in, |
38 | 0 | const idx_t* /* xids */) { |
39 | 0 | codes.resize((ntotal + n) * code_size); |
40 | 0 | memcpy(codes.data() + (ntotal * code_size), codes_in, n * code_size); |
41 | 0 | ntotal += n; |
42 | 0 | } |
43 | | |
44 | 0 | void IndexFlatCodes::reset() { |
45 | 0 | codes.clear(); |
46 | 0 | ntotal = 0; |
47 | 0 | } |
48 | | |
49 | 0 | size_t IndexFlatCodes::sa_code_size() const { |
50 | 0 | return code_size; |
51 | 0 | } |
52 | | |
53 | 0 | size_t IndexFlatCodes::remove_ids(const IDSelector& sel) { |
54 | 0 | idx_t j = 0; |
55 | 0 | for (idx_t i = 0; i < ntotal; i++) { |
56 | 0 | if (sel.is_member(i)) { |
57 | | // should be removed |
58 | 0 | } else { |
59 | 0 | if (i > j) { |
60 | 0 | memmove(&codes[code_size * j], |
61 | 0 | &codes[code_size * i], |
62 | 0 | code_size); |
63 | 0 | } |
64 | 0 | j++; |
65 | 0 | } |
66 | 0 | } |
67 | 0 | size_t nremove = ntotal - j; |
68 | 0 | if (nremove > 0) { |
69 | 0 | ntotal = j; |
70 | 0 | codes.resize(ntotal * code_size); |
71 | 0 | } |
72 | 0 | return nremove; |
73 | 0 | } |
74 | | |
75 | 0 | void IndexFlatCodes::reconstruct_n(idx_t i0, idx_t ni, float* recons) const { |
76 | 0 | FAISS_THROW_IF_NOT(ni == 0 || (i0 >= 0 && i0 + ni <= ntotal)); |
77 | 0 | sa_decode(ni, codes.data() + i0 * code_size, recons); |
78 | 0 | } |
79 | | |
80 | 0 | void IndexFlatCodes::reconstruct(idx_t key, float* recons) const { |
81 | 0 | reconstruct_n(key, 1, recons); |
82 | 0 | } |
83 | | |
84 | 0 | void IndexFlatCodes::check_compatible_for_merge(const Index& otherIndex) const { |
85 | | // minimal sanity checks |
86 | 0 | const IndexFlatCodes* other = |
87 | 0 | dynamic_cast<const IndexFlatCodes*>(&otherIndex); |
88 | 0 | FAISS_THROW_IF_NOT(other); |
89 | 0 | FAISS_THROW_IF_NOT(other->d == d); |
90 | 0 | FAISS_THROW_IF_NOT(other->code_size == code_size); |
91 | 0 | FAISS_THROW_IF_NOT_MSG( |
92 | 0 | typeid(*this) == typeid(*other), |
93 | 0 | "can only merge indexes of the same type"); |
94 | 0 | } |
95 | | |
96 | 0 | void IndexFlatCodes::merge_from(Index& otherIndex, idx_t add_id) { |
97 | 0 | FAISS_THROW_IF_NOT_MSG(add_id == 0, "cannot set ids in FlatCodes index"); |
98 | 0 | check_compatible_for_merge(otherIndex); |
99 | 0 | IndexFlatCodes* other = static_cast<IndexFlatCodes*>(&otherIndex); |
100 | 0 | codes.resize((ntotal + other->ntotal) * code_size); |
101 | 0 | memcpy(codes.data() + (ntotal * code_size), |
102 | 0 | other->codes.data(), |
103 | 0 | other->ntotal * code_size); |
104 | 0 | ntotal += other->ntotal; |
105 | 0 | other->reset(); |
106 | 0 | } |
107 | | |
108 | 0 | CodePacker* IndexFlatCodes::get_CodePacker() const { |
109 | 0 | return new CodePackerFlat(code_size); |
110 | 0 | } |
111 | | |
112 | 0 | void IndexFlatCodes::permute_entries(const idx_t* perm) { |
113 | 0 | MaybeOwnedVector<uint8_t> new_codes(codes.size()); |
114 | |
|
115 | 0 | for (idx_t i = 0; i < ntotal; i++) { |
116 | 0 | memcpy(new_codes.data() + i * code_size, |
117 | 0 | codes.data() + perm[i] * code_size, |
118 | 0 | code_size); |
119 | 0 | } |
120 | 0 | std::swap(codes, new_codes); |
121 | 0 | } |
122 | | |
123 | | namespace { |
124 | | |
125 | | template <class VD> |
126 | | struct GenericFlatCodesDistanceComputer : FlatCodesDistanceComputer { |
127 | | const IndexFlatCodes& codec; |
128 | | const VD vd; |
129 | | // temp buffers |
130 | | std::vector<uint8_t> code_buffer; |
131 | | std::vector<float> vec_buffer; |
132 | | const float* query = nullptr; |
133 | | |
134 | | GenericFlatCodesDistanceComputer(const IndexFlatCodes* codec, const VD& vd) |
135 | 0 | : FlatCodesDistanceComputer(codec->codes.data(), codec->code_size), |
136 | 0 | codec(*codec), |
137 | 0 | vd(vd), |
138 | 0 | code_buffer(codec->code_size * 4), |
139 | 0 | vec_buffer(codec->d * 4) {}Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE0EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE1EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE2EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE3EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE4EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE20EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE21EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE22EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE23EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE24EEEEC2EPKNS_14IndexFlatCodesERKS4_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE25EEEEC2EPKNS_14IndexFlatCodesERKS4_ |
140 | | |
141 | 0 | void set_query(const float* x) override { |
142 | 0 | query = x; |
143 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE0EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE1EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE2EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE3EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE4EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE20EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE21EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE22EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE23EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE24EEEE9set_queryEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE25EEEE9set_queryEPKf |
144 | | |
145 | 0 | float operator()(idx_t i) override { |
146 | 0 | codec.sa_decode(1, codes + i * code_size, vec_buffer.data()); |
147 | 0 | return vd(query, vec_buffer.data()); |
148 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE0EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE1EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE2EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE3EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE4EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE20EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE21EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE22EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE23EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE24EEEEclEl Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE25EEEEclEl |
149 | | |
150 | 0 | float distance_to_code(const uint8_t* code) override { |
151 | 0 | codec.sa_decode(1, code, vec_buffer.data()); |
152 | 0 | return vd(query, vec_buffer.data()); |
153 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE0EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE1EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE2EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE3EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE4EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE20EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE21EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE22EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE23EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE24EEEE16distance_to_codeEPKh Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE25EEEE16distance_to_codeEPKh |
154 | | |
155 | 0 | float symmetric_dis(idx_t i, idx_t j) override { |
156 | 0 | codec.sa_decode(1, codes + i * code_size, vec_buffer.data()); |
157 | 0 | codec.sa_decode(1, codes + j * code_size, vec_buffer.data() + vd.d); |
158 | 0 | return vd(vec_buffer.data(), vec_buffer.data() + vd.d); |
159 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE0EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE1EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE2EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE3EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE4EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE20EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE21EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE22EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE23EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE24EEEE13symmetric_disEll Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE25EEEE13symmetric_disEll |
160 | | |
161 | | void distances_batch_4( |
162 | | const idx_t idx0, |
163 | | const idx_t idx1, |
164 | | const idx_t idx2, |
165 | | const idx_t idx3, |
166 | | float& dis0, |
167 | | float& dis1, |
168 | | float& dis2, |
169 | 0 | float& dis3) override { |
170 | 0 | uint8_t* cp = code_buffer.data(); |
171 | 0 | for (idx_t i : {idx0, idx1, idx2, idx3}) { |
172 | 0 | memcpy(cp, codes + i * code_size, code_size); |
173 | 0 | cp += code_size; |
174 | 0 | } |
175 | | // potential benefit is if batch decoding is more efficient than 1 by 1 |
176 | | // decoding |
177 | 0 | codec.sa_decode(4, code_buffer.data(), vec_buffer.data()); |
178 | 0 | dis0 = vd(query, vec_buffer.data()); |
179 | 0 | dis1 = vd(query, vec_buffer.data() + vd.d); |
180 | 0 | dis2 = vd(query, vec_buffer.data() + 2 * vd.d); |
181 | 0 | dis3 = vd(query, vec_buffer.data() + 3 * vd.d); |
182 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE0EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE1EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE2EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE3EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE4EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE20EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE21EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE22EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE23EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE24EEEE17distances_batch_4EllllRfS6_S6_S6_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_132GenericFlatCodesDistanceComputerINS_14VectorDistanceILNS_10MetricTypeE25EEEE17distances_batch_4EllllRfS6_S6_S6_ |
183 | | }; |
184 | | |
185 | | struct Run_get_distance_computer { |
186 | | using T = FlatCodesDistanceComputer*; |
187 | | |
188 | | template <class VD> |
189 | 0 | FlatCodesDistanceComputer* f(const VD& vd, const IndexFlatCodes* codec) { |
190 | 0 | return new GenericFlatCodesDistanceComputer<VD>(codec, vd); |
191 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_125Run_get_distance_computer1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEPNS_25FlatCodesDistanceComputerERKT_PKNS_14IndexFlatCodesE |
192 | | }; |
193 | | |
194 | | template <class BlockResultHandler> |
195 | | struct Run_search_with_decompress { |
196 | | using T = void; |
197 | | |
198 | | template <class VectorDistance> |
199 | | void f(VectorDistance& vd, |
200 | | const IndexFlatCodes* index_ptr, |
201 | | const float* xq, |
202 | 0 | BlockResultHandler& res) { |
203 | | // Note that there seems to be a clang (?) bug that "sometimes" passes |
204 | | // the const Index & parameters by value, so to be on the safe side, |
205 | | // it's better to use pointers. |
206 | 0 | const IndexFlatCodes& index = *index_ptr; |
207 | 0 | size_t ntotal = index.ntotal; |
208 | 0 | using SingleResultHandler = |
209 | 0 | typename BlockResultHandler::SingleResultHandler; |
210 | 0 | using DC = GenericFlatCodesDistanceComputer<VectorDistance>; |
211 | 0 | #pragma omp parallel // if (res.nq > 100) |
212 | 0 | { |
213 | 0 | std::unique_ptr<DC> dc(new DC(&index, vd)); |
214 | 0 | SingleResultHandler resi(res); |
215 | 0 | #pragma omp for |
216 | 0 | for (int64_t q = 0; q < res.nq; q++) { |
217 | 0 | resi.begin(q); |
218 | 0 | dc->set_query(xq + vd.d * q); |
219 | 0 | for (size_t i = 0; i < ntotal; i++) { |
220 | 0 | if (res.is_in_selection(i)) { |
221 | 0 | float dis = (*dc)(i); |
222 | 0 | resi.add_result(dis, i); |
223 | 0 | } |
224 | 0 | } |
225 | 0 | resi.end(); |
226 | 0 | } |
227 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_.omp_outlined_debug__ |
228 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE0EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE1EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE2EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE3EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE4EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE20EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE21EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE22EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE23EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE24EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_126Run_search_with_decompressINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEE1fINS_14VectorDistanceILNS_10MetricTypeE25EEEEEvRT_PKNS_14IndexFlatCodesEPKfRS5_ |
229 | | }; |
230 | | |
231 | | struct Run_search_with_decompress_res { |
232 | | using T = void; |
233 | | |
234 | | template <class ResultHandler> |
235 | 0 | void f(ResultHandler& res, const IndexFlatCodes* index, const float* xq) { |
236 | 0 | Run_search_with_decompress<ResultHandler> r; |
237 | 0 | dispatch_VectorDistance( |
238 | 0 | index->d, |
239 | 0 | index->metric_type, |
240 | 0 | index->metric_arg, |
241 | 0 | r, |
242 | 0 | index, |
243 | 0 | xq, |
244 | 0 | res); |
245 | 0 | } Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_22Top1BlockResultHandlerINS_4CMinIflEELb1EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_22HeapBlockResultHandlerINS_4CMinIflEELb1EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb1EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_22Top1BlockResultHandlerINS_4CMinIflEELb0EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_22HeapBlockResultHandlerINS_4CMinIflEELb0EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_27ReservoirBlockResultHandlerINS_4CMinIflEELb0EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_22Top1BlockResultHandlerINS_4CMaxIflEELb1EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_22HeapBlockResultHandlerINS_4CMaxIflEELb1EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb1EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_22Top1BlockResultHandlerINS_4CMaxIflEELb0EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_22HeapBlockResultHandlerINS_4CMaxIflEELb0EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_27ReservoirBlockResultHandlerINS_4CMaxIflEELb0EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb1EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_29RangeSearchBlockResultHandlerINS_4CMinIflEELb0EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb1EEEEEvRT_PKNS_14IndexFlatCodesEPKf Unexecuted instantiation: IndexFlatCodes.cpp:_ZN5faiss12_GLOBAL__N_130Run_search_with_decompress_res1fINS_29RangeSearchBlockResultHandlerINS_4CMaxIflEELb0EEEEEvRT_PKNS_14IndexFlatCodesEPKf |
246 | | }; |
247 | | |
248 | | } // anonymous namespace |
249 | | |
250 | | FlatCodesDistanceComputer* IndexFlatCodes::get_FlatCodesDistanceComputer() |
251 | 0 | const { |
252 | 0 | Run_get_distance_computer r; |
253 | 0 | return dispatch_VectorDistance(d, metric_type, metric_arg, r, this); |
254 | 0 | } |
255 | | |
256 | | void IndexFlatCodes::search( |
257 | | idx_t n, |
258 | | const float* x, |
259 | | idx_t k, |
260 | | float* distances, |
261 | | idx_t* labels, |
262 | 0 | const SearchParameters* params) const { |
263 | 0 | Run_search_with_decompress_res r; |
264 | 0 | const IDSelector* sel = params ? params->sel : nullptr; |
265 | 0 | dispatch_knn_ResultHandler( |
266 | 0 | n, distances, labels, k, metric_type, sel, r, this, x); |
267 | 0 | } |
268 | | |
269 | | void IndexFlatCodes::range_search( |
270 | | idx_t n, |
271 | | const float* x, |
272 | | float radius, |
273 | | RangeSearchResult* result, |
274 | 0 | const SearchParameters* params) const { |
275 | 0 | const IDSelector* sel = params ? params->sel : nullptr; |
276 | 0 | Run_search_with_decompress_res r; |
277 | 0 | dispatch_range_ResultHandler(result, radius, metric_type, sel, r, this, x); |
278 | 0 | } |
279 | | |
280 | | } // namespace faiss |