test_kdt.cpp 5.6 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
void
S
starlord 已提交
56
AssertAnns(const knowhere::DatasetPtr& result, const int& nq, const int& k) {
X
xj.lin 已提交
57 58 59 60 61 62
    auto ids = result->array()[0];
    for (auto i = 0; i < nq; i++) {
        EXPECT_EQ(i, *(ids->data()->GetValues<int64_t>(1, i * k)));
    }
}

S
starlord 已提交
63
void
S
starlord 已提交
64
PrintResult(const knowhere::DatasetPtr& result, const int& nq, const int& k) {
X
xj.lin 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
    auto ids = result->array()[0];
    auto dists = result->array()[1];

    std::stringstream ss_id;
    std::stringstream ss_dist;
    for (auto i = 0; i < 10; i++) {
        for (auto j = 0; j < k; ++j) {
            ss_id << *(ids->data()->GetValues<int64_t>(1, i * k + j)) << " ";
            ss_dist << *(dists->data()->GetValues<float>(1, i * k + j)) << " ";
        }
        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;
}

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

X
xiaojun.lin 已提交
86
    auto preprocessor = index_->BuildPreprocessor(base_dataset, conf);
X
xj.lin 已提交
87 88
    index_->set_preprocessor(preprocessor);

X
xiaojun.lin 已提交
89
    auto model = index_->Train(base_dataset, conf);
X
xj.lin 已提交
90
    index_->set_index_model(model);
X
xiaojun.lin 已提交
91 92
    index_->Add(base_dataset, conf);
    auto result = index_->Search(query_dataset, conf);
X
xj.lin 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
    AssertAnns(result, nq, k);

    {
        auto ids = result->array()[0];
        auto dists = result->array()[1];

        std::stringstream ss_id;
        std::stringstream ss_dist;
        for (auto i = 0; i < nq; i++) {
            for (auto j = 0; j < k; ++j) {
                ss_id << *ids->data()->GetValues<int64_t>(1, i * k + j) << " ";
                ss_dist << *dists->data()->GetValues<float>(1, i * k + j) << " ";
            }
            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 已提交
114
TEST_F(KDTTest, kdt_serialize) {
X
xj.lin 已提交
115 116
    assert(!xb.empty());

X
xiaojun.lin 已提交
117
    auto preprocessor = index_->BuildPreprocessor(base_dataset, conf);
X
xj.lin 已提交
118 119
    index_->set_preprocessor(preprocessor);

X
xiaojun.lin 已提交
120
    auto model = index_->Train(base_dataset, conf);
S
starlord 已提交
121
    // index_->Add(base_dataset, conf);
X
xj.lin 已提交
122
    auto binaryset = index_->Serialize();
S
starlord 已提交
123
    auto new_index = std::make_shared<knowhere::CPUKDTRNG>();
X
xj.lin 已提交
124
    new_index->Load(binaryset);
X
xiaojun.lin 已提交
125
    auto result = new_index->Search(query_dataset, conf);
X
xj.lin 已提交
126 127
    AssertAnns(result, nq, k);
    PrintResult(result, nq, k);
X
xj.lin 已提交
128 129
    ASSERT_EQ(new_index->Count(), nb);
    ASSERT_EQ(new_index->Dimension(), dim);
S
starlord 已提交
130
    ASSERT_THROW({ new_index->Clone(); }, knowhere::KnowhereException);
S
starlord 已提交
131
    ASSERT_NO_THROW({ new_index->Seal(); });
X
xj.lin 已提交
132 133 134

    {
        int fileno = 0;
S
starlord 已提交
135
        const std::string& base_name = "/tmp/kdt_serialize_test_bin_";
X
xj.lin 已提交
136
        std::vector<std::string> filename_list;
S
starlord 已提交
137 138 139
        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);
X
xj.lin 已提交
140 141 142 143 144 145 146 147
            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;
        }

S
starlord 已提交
148
        knowhere::BinarySet load_data_list;
X
xj.lin 已提交
149 150 151 152 153 154 155 156 157 158 159
        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);
        }

S
starlord 已提交
160
        auto new_index = std::make_shared<knowhere::CPUKDTRNG>();
X
xj.lin 已提交
161
        new_index->Load(load_data_list);
X
xiaojun.lin 已提交
162
        auto result = new_index->Search(query_dataset, conf);
X
xj.lin 已提交
163 164 165 166
        AssertAnns(result, nq, k);
        PrintResult(result, nq, k);
    }
}