2019-09-17 02:51:48 +00:00
|
|
|
// Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
// or more contributor license agreements. See the NOTICE file
|
|
|
|
// distributed with this work for additional information
|
|
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
|
|
// to you under the Apache License, Version 2.0 (the
|
|
|
|
// "License"); you may not use this file except in compliance
|
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing,
|
|
|
|
// software distributed under the License is distributed on an
|
|
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
// KIND, either express or implied. See the License for the
|
|
|
|
// specific language governing permissions and limitations
|
|
|
|
// under the License.
|
|
|
|
|
2019-11-13 08:35:37 +00:00
|
|
|
#include "easyloggingpp/easylogging++.h"
|
2019-11-05 02:23:59 +00:00
|
|
|
|
|
|
|
#ifdef MILVUS_GPU_VERSION
|
2019-09-19 13:21:38 +00:00
|
|
|
#include "knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h"
|
2019-11-05 02:23:59 +00:00
|
|
|
#endif
|
|
|
|
|
2019-09-27 07:41:20 +00:00
|
|
|
#include "knowhere/index/vector_index/helpers/IndexParameter.h"
|
2019-11-20 08:23:39 +00:00
|
|
|
#include "wrapper/VecIndex.h"
|
2019-09-27 10:57:46 +00:00
|
|
|
#include "wrapper/utils.h"
|
2019-07-04 06:47:23 +00:00
|
|
|
|
2019-09-20 03:33:10 +00:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2019-07-17 03:40:09 +00:00
|
|
|
INITIALIZE_EASYLOGGINGPP
|
2019-07-04 06:47:23 +00:00
|
|
|
|
2019-11-20 08:08:18 +00:00
|
|
|
using ::testing::Combine;
|
2019-07-04 06:47:23 +00:00
|
|
|
using ::testing::TestWithParam;
|
|
|
|
using ::testing::Values;
|
|
|
|
|
|
|
|
class KnowhereWrapperTest
|
2019-11-20 08:08:18 +00:00
|
|
|
: public DataGenBase,
|
|
|
|
public TestWithParam<::std::tuple<milvus::engine::IndexType, std::string, int, int, int, int>> {
|
2019-11-05 05:35:24 +00:00
|
|
|
protected:
|
2019-11-20 08:08:18 +00:00
|
|
|
void
|
|
|
|
SetUp() override {
|
2019-11-05 02:23:59 +00:00
|
|
|
#ifdef MILVUS_GPU_VERSION
|
2019-10-17 08:08:43 +00:00
|
|
|
knowhere::FaissGpuResourceMgr::GetInstance().InitDevice(DEVICEID, PINMEM, TEMPMEM, RESNUM);
|
2019-11-05 02:23:59 +00:00
|
|
|
#endif
|
2019-07-04 06:47:23 +00:00
|
|
|
std::string generator_type;
|
2019-09-27 07:41:20 +00:00
|
|
|
std::tie(index_type, generator_type, dim, nb, nq, k) = GetParam();
|
2019-10-17 08:08:43 +00:00
|
|
|
GenData(dim, nb, nq, xb, xq, ids, k, gt_ids, gt_dis);
|
2019-07-04 06:47:23 +00:00
|
|
|
|
2019-11-14 03:13:35 +00:00
|
|
|
milvus::engine::TempMetaConf tempconf;
|
|
|
|
tempconf.metric_type = knowhere::METRICTYPE::L2;
|
|
|
|
tempconf.gpu_id = DEVICEID;
|
|
|
|
tempconf.size = nb;
|
|
|
|
tempconf.dim = dim;
|
|
|
|
tempconf.k = k;
|
2019-11-15 10:54:19 +00:00
|
|
|
tempconf.nprobe = 16;
|
2019-11-14 03:13:35 +00:00
|
|
|
|
2019-07-04 06:47:23 +00:00
|
|
|
index_ = GetVecIndexFactory(index_type);
|
2019-11-14 03:13:35 +00:00
|
|
|
conf = ParamGenerator::GetInstance().GenBuild(index_type, tempconf);
|
|
|
|
searchconf = ParamGenerator::GetInstance().GenSearchConf(index_type, tempconf);
|
2019-07-04 06:47:23 +00:00
|
|
|
}
|
2019-09-27 11:07:02 +00:00
|
|
|
|
2019-11-20 08:08:18 +00:00
|
|
|
void
|
|
|
|
TearDown() override {
|
2019-11-05 02:23:59 +00:00
|
|
|
#ifdef MILVUS_GPU_VERSION
|
2019-09-29 08:37:34 +00:00
|
|
|
knowhere::FaissGpuResourceMgr::GetInstance().Free();
|
2019-11-05 02:23:59 +00:00
|
|
|
#endif
|
2019-09-06 07:55:23 +00:00
|
|
|
}
|
2019-07-04 06:47:23 +00:00
|
|
|
|
2019-11-05 05:35:24 +00:00
|
|
|
protected:
|
2019-10-10 08:03:29 +00:00
|
|
|
milvus::engine::IndexType index_type;
|
|
|
|
milvus::engine::VecIndexPtr index_ = nullptr;
|
2019-10-17 08:08:43 +00:00
|
|
|
knowhere::Config conf;
|
2019-11-14 03:13:35 +00:00
|
|
|
knowhere::Config searchconf;
|
2019-07-04 06:47:23 +00:00
|
|
|
};
|
|
|
|
|
2019-11-20 08:08:18 +00:00
|
|
|
INSTANTIATE_TEST_CASE_P(
|
|
|
|
WrapperParam, KnowhereWrapperTest,
|
|
|
|
Values(
|
2019-11-20 08:23:39 +00:00
|
|
|
//["Index type", "Generator type", "dim", "nb", "nq", "k", "build config", "search config"]
|
2019-11-05 02:23:59 +00:00
|
|
|
#ifdef MILVUS_GPU_VERSION
|
|
|
|
std::make_tuple(milvus::engine::IndexType::FAISS_IVFFLAT_GPU, "Default", DIM, NB, 10, 10),
|
2019-11-14 13:04:10 +00:00
|
|
|
std::make_tuple(milvus::engine::IndexType::FAISS_IVFFLAT_MIX, "Default", 64, 1000, 10, 10),
|
2019-11-05 02:23:59 +00:00
|
|
|
std::make_tuple(milvus::engine::IndexType::FAISS_IVFSQ8_GPU, "Default", DIM, NB, 10, 10),
|
|
|
|
std::make_tuple(milvus::engine::IndexType::FAISS_IVFSQ8_MIX, "Default", DIM, NB, 10, 10),
|
2019-11-14 13:04:10 +00:00
|
|
|
std::make_tuple(milvus::engine::IndexType::FAISS_IVFPQ_MIX, "Default", 64, 1000, 10, 10),
|
2019-11-20 08:08:18 +00:00
|
|
|
// std::make_tuple(milvus::engine::IndexType::NSG_MIX, "Default", 128, 250000, 10, 10),
|
2019-11-05 02:23:59 +00:00
|
|
|
#endif
|
2019-11-20 08:08:18 +00:00
|
|
|
// std::make_tuple(milvus::engine::IndexType::SPTAG_KDT_RNT_CPU, "Default", 128, 100, 10, 10),
|
|
|
|
// std::make_tuple(milvus::engine::IndexType::SPTAG_BKT_RNT_CPU, "Default", 128, 100, 10, 10),
|
2019-11-14 13:04:10 +00:00
|
|
|
std::make_tuple(milvus::engine::IndexType::FAISS_IDMAP, "Default", 64, 1000, 10, 10),
|
|
|
|
std::make_tuple(milvus::engine::IndexType::FAISS_IVFFLAT_CPU, "Default", 64, 1000, 10, 10),
|
2019-11-05 05:35:24 +00:00
|
|
|
std::make_tuple(milvus::engine::IndexType::FAISS_IVFSQ8_CPU, "Default", DIM, NB, 10, 10)));
|
2019-07-04 06:47:23 +00:00
|
|
|
|
2019-09-11 03:37:19 +00:00
|
|
|
TEST_P(KnowhereWrapperTest, BASE_TEST) {
|
2019-07-10 08:28:11 +00:00
|
|
|
EXPECT_EQ(index_->GetType(), index_type);
|
2019-11-18 01:53:38 +00:00
|
|
|
// conf->Dump();
|
2019-07-10 08:28:11 +00:00
|
|
|
|
|
|
|
auto elems = nq * k;
|
|
|
|
std::vector<int64_t> res_ids(elems);
|
|
|
|
std::vector<float> res_dis(elems);
|
2019-07-04 06:47:23 +00:00
|
|
|
|
2019-09-27 07:41:20 +00:00
|
|
|
index_->BuildAll(nb, xb.data(), ids.data(), conf);
|
2019-11-14 03:13:35 +00:00
|
|
|
index_->Search(nq, xq.data(), res_dis.data(), res_ids.data(), searchconf);
|
2019-07-10 08:28:11 +00:00
|
|
|
AssertResult(res_ids, res_dis);
|
2019-07-04 06:47:23 +00:00
|
|
|
}
|
|
|
|
|
2019-11-05 02:23:59 +00:00
|
|
|
#ifdef MILVUS_GPU_VERSION
|
2019-09-11 03:37:19 +00:00
|
|
|
TEST_P(KnowhereWrapperTest, TO_GPU_TEST) {
|
2019-08-31 03:33:46 +00:00
|
|
|
EXPECT_EQ(index_->GetType(), index_type);
|
|
|
|
|
|
|
|
auto elems = nq * k;
|
|
|
|
std::vector<int64_t> res_ids(elems);
|
|
|
|
std::vector<float> res_dis(elems);
|
|
|
|
|
2019-09-27 07:41:20 +00:00
|
|
|
index_->BuildAll(nb, xb.data(), ids.data(), conf);
|
2019-11-14 03:13:35 +00:00
|
|
|
index_->Search(nq, xq.data(), res_dis.data(), res_ids.data(), searchconf);
|
2019-08-31 03:33:46 +00:00
|
|
|
AssertResult(res_ids, res_dis);
|
2019-09-03 01:59:28 +00:00
|
|
|
|
2019-08-31 03:33:46 +00:00
|
|
|
{
|
2019-10-17 08:08:43 +00:00
|
|
|
auto dev_idx = index_->CopyToGpu(DEVICEID);
|
2019-09-03 01:59:28 +00:00
|
|
|
for (int i = 0; i < 10; ++i) {
|
2019-11-14 03:13:35 +00:00
|
|
|
dev_idx->Search(nq, xq.data(), res_dis.data(), res_ids.data(), searchconf);
|
2019-09-03 01:59:28 +00:00
|
|
|
}
|
|
|
|
AssertResult(res_ids, res_dis);
|
2019-08-31 03:33:46 +00:00
|
|
|
}
|
|
|
|
|
2019-09-03 01:59:28 +00:00
|
|
|
{
|
2019-09-11 03:37:19 +00:00
|
|
|
std::string file_location = "/tmp/knowhere_gpu_file";
|
2019-09-03 01:59:28 +00:00
|
|
|
write_index(index_, file_location);
|
2019-10-10 08:03:29 +00:00
|
|
|
auto new_index = milvus::engine::read_index(file_location);
|
2019-08-31 03:33:46 +00:00
|
|
|
|
2019-10-17 08:08:43 +00:00
|
|
|
auto dev_idx = new_index->CopyToGpu(DEVICEID);
|
2019-09-03 01:59:28 +00:00
|
|
|
for (int i = 0; i < 10; ++i) {
|
2019-11-14 03:13:35 +00:00
|
|
|
dev_idx->Search(nq, xq.data(), res_dis.data(), res_ids.data(), searchconf);
|
2019-09-03 01:59:28 +00:00
|
|
|
}
|
|
|
|
AssertResult(res_ids, res_dis);
|
2019-08-31 03:33:46 +00:00
|
|
|
}
|
2019-09-03 01:59:28 +00:00
|
|
|
}
|
2019-11-05 02:23:59 +00:00
|
|
|
#endif
|
2019-09-03 01:59:28 +00:00
|
|
|
|
2019-09-11 03:37:19 +00:00
|
|
|
TEST_P(KnowhereWrapperTest, SERIALIZE_TEST) {
|
2019-07-10 08:28:11 +00:00
|
|
|
EXPECT_EQ(index_->GetType(), index_type);
|
2019-07-04 06:47:23 +00:00
|
|
|
|
2019-07-10 08:28:11 +00:00
|
|
|
auto elems = nq * k;
|
|
|
|
std::vector<int64_t> res_ids(elems);
|
|
|
|
std::vector<float> res_dis(elems);
|
2019-09-27 07:41:20 +00:00
|
|
|
index_->BuildAll(nb, xb.data(), ids.data(), conf);
|
2019-11-14 03:13:35 +00:00
|
|
|
index_->Search(nq, xq.data(), res_dis.data(), res_ids.data(), searchconf);
|
2019-07-10 08:28:11 +00:00
|
|
|
AssertResult(res_ids, res_dis);
|
2019-07-04 06:47:23 +00:00
|
|
|
|
|
|
|
{
|
2019-07-10 08:28:11 +00:00
|
|
|
auto binary = index_->Serialize();
|
|
|
|
auto type = index_->GetType();
|
|
|
|
auto new_index = GetVecIndexFactory(type);
|
|
|
|
new_index->Load(binary);
|
|
|
|
EXPECT_EQ(new_index->Dimension(), index_->Dimension());
|
|
|
|
EXPECT_EQ(new_index->Count(), index_->Count());
|
|
|
|
|
|
|
|
std::vector<int64_t> res_ids(elems);
|
|
|
|
std::vector<float> res_dis(elems);
|
2019-11-14 03:13:35 +00:00
|
|
|
new_index->Search(nq, xq.data(), res_dis.data(), res_ids.data(), searchconf);
|
2019-07-10 08:28:11 +00:00
|
|
|
AssertResult(res_ids, res_dis);
|
2019-07-04 06:47:23 +00:00
|
|
|
}
|
|
|
|
|
2019-07-10 08:28:11 +00:00
|
|
|
{
|
2019-09-11 03:37:19 +00:00
|
|
|
std::string file_location = "/tmp/knowhere";
|
2019-07-10 08:28:11 +00:00
|
|
|
write_index(index_, file_location);
|
2019-10-10 08:03:29 +00:00
|
|
|
auto new_index = milvus::engine::read_index(file_location);
|
2019-09-03 01:59:28 +00:00
|
|
|
EXPECT_EQ(new_index->GetType(), ConvertToCpuIndexType(index_type));
|
2019-07-10 08:28:11 +00:00
|
|
|
EXPECT_EQ(new_index->Dimension(), index_->Dimension());
|
|
|
|
EXPECT_EQ(new_index->Count(), index_->Count());
|
|
|
|
|
|
|
|
std::vector<int64_t> res_ids(elems);
|
|
|
|
std::vector<float> res_dis(elems);
|
2019-11-14 03:13:35 +00:00
|
|
|
new_index->Search(nq, xq.data(), res_dis.data(), res_ids.data(), searchconf);
|
2019-07-10 08:28:11 +00:00
|
|
|
AssertResult(res_ids, res_dis);
|
|
|
|
}
|
2019-07-04 06:47:23 +00:00
|
|
|
}
|
2019-10-17 11:33:35 +00:00
|
|
|
|
|
|
|
#include "wrapper/ConfAdapter.h"
|
2019-11-05 02:23:59 +00:00
|
|
|
|
2019-10-17 11:33:35 +00:00
|
|
|
TEST(whatever, test_config) {
|
|
|
|
milvus::engine::TempMetaConf conf;
|
2019-11-27 06:21:53 +00:00
|
|
|
conf.nprobe = 16;
|
2019-11-28 06:37:23 +00:00
|
|
|
conf.dim = 128;
|
2019-10-17 11:33:35 +00:00
|
|
|
auto nsg_conf = std::make_shared<milvus::engine::NSGConfAdapter>();
|
|
|
|
nsg_conf->Match(conf);
|
2019-11-27 06:21:53 +00:00
|
|
|
nsg_conf->MatchSearch(conf, milvus::engine::IndexType::NSG_MIX);
|
2019-10-17 11:33:35 +00:00
|
|
|
|
|
|
|
auto pq_conf = std::make_shared<milvus::engine::IVFPQConfAdapter>();
|
|
|
|
pq_conf->Match(conf);
|
2019-11-27 06:21:53 +00:00
|
|
|
pq_conf->MatchSearch(conf, milvus::engine::IndexType::FAISS_IVFPQ_MIX);
|
|
|
|
|
|
|
|
auto kdt_conf = std::make_shared<milvus::engine::SPTAGKDTConfAdapter>();
|
|
|
|
kdt_conf->Match(conf);
|
|
|
|
kdt_conf->MatchSearch(conf, milvus::engine::IndexType::SPTAG_KDT_RNT_CPU);
|
|
|
|
|
|
|
|
auto bkt_conf = std::make_shared<milvus::engine::SPTAGBKTConfAdapter>();
|
|
|
|
bkt_conf->Match(conf);
|
|
|
|
bkt_conf->MatchSearch(conf, milvus::engine::IndexType::SPTAG_BKT_RNT_CPU);
|
2019-10-17 11:33:35 +00:00
|
|
|
}
|
2019-11-18 01:53:38 +00:00
|
|
|
|
|
|
|
// #include "knowhere/index/vector_index/IndexIDMAP.h"
|
|
|
|
// #include "src/wrapper/VecImpl.h"
|
|
|
|
// #include "src/index/unittest/utils.h"
|
|
|
|
// The two case below prove NSG is concern with data distribution
|
|
|
|
// Further work: 1. Use right basedata and pass it by milvus
|
|
|
|
// a. batch size is 100000 [Pass]
|
|
|
|
// b. transfer all at once [Pass]
|
|
|
|
// 2. Use SIFT1M in test and check time cost []
|
|
|
|
// TEST_P(KnowhereWrapperTest, nsgwithidmap) {
|
|
|
|
// auto idmap = GetVecIndexFactory(milvus::engine::IndexType::FAISS_IDMAP);
|
|
|
|
// auto ori_xb = xb;
|
|
|
|
// auto ori_ids = ids;
|
|
|
|
// std::vector<float> temp_xb;
|
|
|
|
// std::vector<int64_t> temp_ids;
|
|
|
|
// nb = 50000;
|
|
|
|
// for (int i = 0; i < 20; ++i) {
|
|
|
|
// GenData(dim, nb, nq, xb, xq, ids, k, gt_ids, gt_dis);
|
|
|
|
// assert(xb.size() == nb*dim);
|
|
|
|
// //#define IDMAP
|
|
|
|
// #ifdef IDMAP
|
|
|
|
// temp_xb.insert(temp_xb.end(), xb.data(), xb.data() + nb*dim);
|
|
|
|
// temp_ids.insert(temp_ids.end(), ori_ids.data()+nb*i, ori_ids.data() + nb*(i+1));
|
|
|
|
// if (i == 0) {
|
|
|
|
// idmap->BuildAll(nb, temp_xb.data(), temp_ids.data(), conf);
|
|
|
|
// } else {
|
|
|
|
// idmap->Add(nb, temp_xb.data(), temp_ids.data());
|
|
|
|
// }
|
|
|
|
// temp_xb.clear();
|
|
|
|
// temp_ids.clear();
|
|
|
|
// #else
|
|
|
|
// temp_xb.insert(temp_xb.end(), xb.data(), xb.data() + nb*dim);
|
|
|
|
// temp_ids.insert(temp_ids.end(), ori_ids.data()+nb*i, ori_ids.data() + nb*(i+1));
|
|
|
|
// #endif
|
|
|
|
// }
|
|
|
|
|
|
|
|
// #ifdef IDMAP
|
|
|
|
// auto idmap_idx = std::dynamic_pointer_cast<milvus::engine::BFIndex>(idmap);
|
|
|
|
// auto x = idmap_idx->Count();
|
|
|
|
// index_->BuildAll(idmap_idx->Count(), idmap_idx->GetRawVectors(), idmap_idx->GetRawIds(), conf);
|
|
|
|
// #else
|
|
|
|
// assert(temp_xb.size() == 1000000*128);
|
|
|
|
// index_->BuildAll(1000000, temp_xb.data(), ori_ids.data(), conf);
|
|
|
|
// #endif
|
|
|
|
// }
|
|
|
|
|
|
|
|
// TEST_P(KnowhereWrapperTest, nsgwithsidmap) {
|
|
|
|
// auto idmap = GetVecIndexFactory(milvus::engine::IndexType::FAISS_IDMAP);
|
|
|
|
// auto ori_xb = xb;
|
|
|
|
// std::vector<float> temp_xb;
|
|
|
|
// std::vector<int64_t> temp_ids;
|
|
|
|
// nb = 50000;
|
|
|
|
// for (int i = 0; i < 20; ++i) {
|
|
|
|
// #define IDMAP
|
|
|
|
// #ifdef IDMAP
|
|
|
|
// temp_xb.insert(temp_xb.end(), ori_xb.data()+nb*dim*i, ori_xb.data() + nb*dim*(i+1));
|
|
|
|
// temp_ids.insert(temp_ids.end(), ids.data()+nb*i, ids.data() + nb*(i+1));
|
|
|
|
// if (i == 0) {
|
|
|
|
// idmap->BuildAll(nb, temp_xb.data(), temp_ids.data(), conf);
|
|
|
|
// } else {
|
|
|
|
// idmap->Add(nb, temp_xb.data(), temp_ids.data());
|
|
|
|
// }
|
|
|
|
// temp_xb.clear();
|
|
|
|
// temp_ids.clear();
|
|
|
|
// #else
|
|
|
|
// temp_xb.insert(temp_xb.end(), ori_xb.data()+nb*dim*i, ori_xb.data() + nb*dim*(i+1));
|
|
|
|
// temp_ids.insert(temp_ids.end(), ids.data()+nb*i, ids.data() + nb*(i+1));
|
|
|
|
// #endif
|
|
|
|
// }
|
|
|
|
|
|
|
|
// #ifdef IDMAP
|
|
|
|
// auto idmap_idx = std::dynamic_pointer_cast<milvus::engine::BFIndex>(idmap);
|
|
|
|
// auto x = idmap_idx->Count();
|
|
|
|
// index_->BuildAll(idmap_idx->Count(), idmap_idx->GetRawVectors(), idmap_idx->GetRawIds(), conf);
|
|
|
|
// #else
|
|
|
|
// index_->BuildAll(1000000, temp_xb.data(), temp_ids.data(), conf);
|
|
|
|
// #endif
|
|
|
|
|
|
|
|
// // The code use to store raw base data
|
|
|
|
// FileIOWriter writer("/tmp/newraw");
|
|
|
|
// ori_xb.shrink_to_fit();
|
|
|
|
// std::cout << "size" << ori_xb.size();
|
|
|
|
// writer(static_cast<void*>(ori_xb.data()), ori_xb.size()* sizeof(float));
|
|
|
|
// std::cout << "Finish!" << std::endl;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// void load_data(char* filename, float*& data, unsigned& num,
|
|
|
|
// unsigned& dim) { // load data with sift10K pattern
|
|
|
|
// std::ifstream in(filename, std::ios::binary);
|
|
|
|
// if (!in.is_open()) {
|
|
|
|
// std::cout << "open file error" << std::endl;
|
|
|
|
// exit(-1);
|
|
|
|
// }
|
|
|
|
// in.read((char*)&dim, 4);
|
|
|
|
// in.seekg(0, std::ios::end);
|
|
|
|
// std::ios::pos_type ss = in.tellg();
|
|
|
|
// size_t fsize = (size_t)ss;
|
|
|
|
// num = (unsigned)(fsize / (dim + 1) / 4);
|
|
|
|
// data = new float[(size_t)num * (size_t)dim];
|
|
|
|
|
|
|
|
// in.seekg(0, std::ios::beg);
|
|
|
|
// for (size_t i = 0; i < num; i++) {
|
|
|
|
// in.seekg(4, std::ios::cur);
|
|
|
|
// in.read((char*)(data + i * dim), dim * 4);
|
|
|
|
// }
|
|
|
|
// in.close();
|
|
|
|
// }
|
|
|
|
|
|
|
|
// TEST_P(KnowhereWrapperTest, Sift1M) {
|
|
|
|
// float* data = nullptr;
|
|
|
|
// unsigned points_num, dim;
|
|
|
|
// load_data("/mnt/112d53a6-5592-4360-a33b-7fd789456fce/workspace/Data/sift/sift_base.fvecs", data, points_num,
|
|
|
|
// dim); std::cout << points_num << " " << dim << std::endl;
|
|
|
|
|
|
|
|
// index_->BuildAll(points_num, data, ids.data(), conf);
|
2019-11-18 02:50:20 +00:00
|
|
|
// }
|