test_kdt.cpp 5.1 KB
Newer Older
J
jinhai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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.

X
xj.lin 已提交
18 19 20 21 22
#include <gtest/gtest.h>

#include <iostream>
#include <sstream>

S
starlord 已提交
23 24
#include "knowhere/adapter/SptagAdapter.h"
#include "knowhere/adapter/Structure.h"
X
xiaojun.lin 已提交
25
#include "knowhere/common/Exception.h"
X
xiaojun.lin 已提交
26
#include "knowhere/index/vector_index/IndexKDT.h"
X
xiaojun.lin 已提交
27
#include "knowhere/index/vector_index/helpers/Definitions.h"
X
xj.lin 已提交
28

29
#include "unittest/utils.h"
S
starlord 已提交
30

31
using ::testing::Combine;
X
xj.lin 已提交
32 33 34
using ::testing::TestWithParam;
using ::testing::Values;

S
starlord 已提交
35
class KDTTest : public DataGen, public ::testing::Test {
X
xj.lin 已提交
36
 protected:
S
starlord 已提交
37 38
    void
    SetUp() override {
X
xiaojun.lin 已提交
39
        Generate(96, 1000, 10);
S
starlord 已提交
40
        index_ = std::make_shared<knowhere::CPUKDTRNG>();
X
xiaojun.lin 已提交
41

S
starlord 已提交
42
        auto tempconf = std::make_shared<knowhere::KDTCfg>();
X
xiaojun.lin 已提交
43 44 45 46
        tempconf->tptnubmber = 1;
        tempconf->k = 10;
        conf = tempconf;

X
xj.lin 已提交
47 48 49 50
        Init_with_default();
    }

 protected:
S
starlord 已提交
51 52
    knowhere::Config conf;
    std::shared_ptr<knowhere::CPUKDTRNG> index_ = nullptr;
X
xj.lin 已提交
53 54
};

S
starlord 已提交
55
// TODO(lxj): add test about count() and dimension()
X
xiaojun.lin 已提交
56
TEST_F(KDTTest, kdt_basic) {
X
xj.lin 已提交
57 58
    assert(!xb.empty());

X
xiaojun.lin 已提交
59
    auto preprocessor = index_->BuildPreprocessor(base_dataset, conf);
X
xj.lin 已提交
60 61
    index_->set_preprocessor(preprocessor);

X
xiaojun.lin 已提交
62
    auto model = index_->Train(base_dataset, conf);
X
xj.lin 已提交
63
    index_->set_index_model(model);
X
xiaojun.lin 已提交
64 65
    index_->Add(base_dataset, conf);
    auto result = index_->Search(query_dataset, conf);
X
xj.lin 已提交
66 67 68
    AssertAnns(result, nq, k);

    {
69 70 71 72
        //        auto ids = result->array()[0];
        //        auto dists = result->array()[1];
        auto ids = result->ids();
        auto dists = result->dist();
X
xj.lin 已提交
73 74 75 76 77

        std::stringstream ss_id;
        std::stringstream ss_dist;
        for (auto i = 0; i < nq; i++) {
            for (auto j = 0; j < k; ++j) {
78 79 80 81
                ss_id << *((int64_t*)(ids) + i * k + j) << " ";
                ss_dist << *((float*)(dists) + i * k + j) << " ";
                //                ss_id << *ids->data()->GetValues<int64_t>(1, i * k + j) << " ";
                //                ss_dist << *dists->data()->GetValues<float>(1, i * k + j) << " ";
X
xj.lin 已提交
82 83 84 85 86 87 88 89 90
            }
            ss_id << std::endl;
            ss_dist << std::endl;
        }
        std::cout << "id\n" << ss_id.str() << std::endl;
        std::cout << "dist\n" << ss_dist.str() << std::endl;
    }
}

X
xiaojun.lin 已提交
91
// TODO(zirui): enable test
X
xiaojun.lin 已提交
92
// TEST_F(KDTTest, kdt_serialize) {
X
xiaojun.lin 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
//    assert(!xb.empty());
//
//    auto preprocessor = index_->BuildPreprocessor(base_dataset, conf);
//    index_->set_preprocessor(preprocessor);
//
//    auto model = index_->Train(base_dataset, conf);
//    // index_->Add(base_dataset, conf);
//    auto binaryset = index_->Serialize();
//    auto new_index = std::make_shared<knowhere::CPUKDTRNG>();
//    new_index->Load(binaryset);
//    auto result = new_index->Search(query_dataset, conf);
//    AssertAnns(result, nq, k);
//    PrintResult(result, nq, k);
//    ASSERT_EQ(new_index->Count(), nb);
//    ASSERT_EQ(new_index->Dimension(), dim);
//    ASSERT_THROW({ new_index->Clone(); }, knowhere::KnowhereException);
//    ASSERT_NO_THROW({ new_index->Seal(); });
//
//    {
//        int fileno = 0;
//        const std::string& base_name = "/tmp/kdt_serialize_test_bin_";
//        std::vector<std::string> filename_list;
//        std::vector<std::pair<std::string, size_t>> meta_list;
//        for (auto& iter : binaryset.binary_map_) {
//            const std::string& filename = base_name + std::to_string(fileno);
//            FileIOWriter writer(filename);
//            writer(iter.second->data.get(), iter.second->size);
//
//            meta_list.emplace_back(std::make_pair(iter.first, iter.second->size));
//            filename_list.push_back(filename);
//            ++fileno;
//        }
//
//        knowhere::BinarySet load_data_list;
//        for (int i = 0; i < filename_list.size() && i < meta_list.size(); ++i) {
//            auto bin_size = meta_list[i].second;
//            FileIOReader reader(filename_list[i]);
//
//            auto load_data = new uint8_t[bin_size];
//            reader(load_data, bin_size);
//            auto data = std::make_shared<uint8_t>();
//            data.reset(load_data);
//            load_data_list.Append(meta_list[i].first, data, bin_size);
//        }
//
//        auto new_index = std::make_shared<knowhere::CPUKDTRNG>();
//        new_index->Load(load_data_list);
//        auto result = new_index->Search(query_dataset, conf);
//        AssertAnns(result, nq, k);
//        PrintResult(result, nq, k);
//    }
//}