mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 03:48:37 +08:00
a36fefb009
Signed-off-by: longjiquan <jiquan.long@zilliz.com>
199 lines
7.2 KiB
C++
199 lines
7.2 KiB
C++
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// Licensed 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
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "index/IndexFactory.h"
|
|
#include "common/CDataType.h"
|
|
#include "test_utils/indexbuilder_test_utils.h"
|
|
#include "test_utils/AssertUtils.h"
|
|
|
|
constexpr int64_t nb = 100;
|
|
namespace indexcgo = milvus::proto::indexcgo;
|
|
namespace schemapb = milvus::proto::schema;
|
|
using milvus::index::ScalarIndexPtr;
|
|
|
|
template <typename T>
|
|
class TypedScalarIndexTest : public ::testing::Test {
|
|
protected:
|
|
// void
|
|
// SetUp() override {
|
|
// }
|
|
|
|
// void
|
|
// TearDown() override {
|
|
// }
|
|
};
|
|
|
|
TYPED_TEST_CASE_P(TypedScalarIndexTest);
|
|
|
|
TYPED_TEST_P(TypedScalarIndexTest, Dummy) {
|
|
using T = TypeParam;
|
|
std::cout << typeid(T()).name() << std::endl;
|
|
std::cout << milvus::GetDType<T>() << std::endl;
|
|
}
|
|
|
|
TYPED_TEST_P(TypedScalarIndexTest, Constructor) {
|
|
using T = TypeParam;
|
|
auto dtype = milvus::GetDType<T>();
|
|
auto index_types = GetIndexTypes<T>();
|
|
for (const auto& index_type : index_types) {
|
|
milvus::index::CreateIndexInfo create_index_info;
|
|
create_index_info.field_type = milvus::DataType(dtype);
|
|
create_index_info.index_type = index_type;
|
|
auto index =
|
|
milvus::index::IndexFactory::GetInstance().CreateScalarIndex(
|
|
create_index_info);
|
|
}
|
|
}
|
|
|
|
TYPED_TEST_P(TypedScalarIndexTest, Count) {
|
|
using T = TypeParam;
|
|
auto dtype = milvus::GetDType<T>();
|
|
auto index_types = GetIndexTypes<T>();
|
|
for (const auto& index_type : index_types) {
|
|
milvus::index::CreateIndexInfo create_index_info;
|
|
create_index_info.field_type = milvus::DataType(dtype);
|
|
create_index_info.index_type = index_type;
|
|
auto index =
|
|
milvus::index::IndexFactory::GetInstance().CreateScalarIndex(
|
|
create_index_info);
|
|
auto scalar_index =
|
|
dynamic_cast<milvus::index::ScalarIndex<T>*>(index.get());
|
|
auto arr = GenArr<T>(nb);
|
|
scalar_index->Build(nb, arr.data());
|
|
ASSERT_EQ(nb, scalar_index->Count());
|
|
}
|
|
}
|
|
|
|
TYPED_TEST_P(TypedScalarIndexTest, In) {
|
|
using T = TypeParam;
|
|
auto dtype = milvus::GetDType<T>();
|
|
auto index_types = GetIndexTypes<T>();
|
|
for (const auto& index_type : index_types) {
|
|
milvus::index::CreateIndexInfo create_index_info;
|
|
create_index_info.field_type = milvus::DataType(dtype);
|
|
create_index_info.index_type = index_type;
|
|
auto index =
|
|
milvus::index::IndexFactory::GetInstance().CreateScalarIndex(
|
|
create_index_info);
|
|
auto scalar_index =
|
|
dynamic_cast<milvus::index::ScalarIndex<T>*>(index.get());
|
|
auto arr = GenArr<T>(nb);
|
|
scalar_index->Build(nb, arr.data());
|
|
assert_in<T>(scalar_index, arr);
|
|
}
|
|
}
|
|
|
|
TYPED_TEST_P(TypedScalarIndexTest, NotIn) {
|
|
using T = TypeParam;
|
|
auto dtype = milvus::GetDType<T>();
|
|
auto index_types = GetIndexTypes<T>();
|
|
for (const auto& index_type : index_types) {
|
|
milvus::index::CreateIndexInfo create_index_info;
|
|
create_index_info.field_type = milvus::DataType(dtype);
|
|
create_index_info.index_type = index_type;
|
|
auto index =
|
|
milvus::index::IndexFactory::GetInstance().CreateScalarIndex(
|
|
create_index_info);
|
|
auto scalar_index =
|
|
dynamic_cast<milvus::index::ScalarIndex<T>*>(index.get());
|
|
auto arr = GenArr<T>(nb);
|
|
scalar_index->Build(nb, arr.data());
|
|
assert_not_in<T>(scalar_index, arr);
|
|
}
|
|
}
|
|
|
|
TYPED_TEST_P(TypedScalarIndexTest, Reverse) {
|
|
using T = TypeParam;
|
|
auto dtype = milvus::GetDType<T>();
|
|
auto index_types = GetIndexTypes<T>();
|
|
for (const auto& index_type : index_types) {
|
|
milvus::index::CreateIndexInfo create_index_info;
|
|
create_index_info.field_type = milvus::DataType(dtype);
|
|
create_index_info.index_type = index_type;
|
|
auto index =
|
|
milvus::index::IndexFactory::GetInstance().CreateScalarIndex(
|
|
create_index_info);
|
|
auto scalar_index =
|
|
dynamic_cast<milvus::index::ScalarIndex<T>*>(index.get());
|
|
auto arr = GenArr<T>(nb);
|
|
scalar_index->Build(nb, arr.data());
|
|
assert_reverse<T>(scalar_index, arr);
|
|
}
|
|
}
|
|
|
|
TYPED_TEST_P(TypedScalarIndexTest, Range) {
|
|
using T = TypeParam;
|
|
auto dtype = milvus::GetDType<T>();
|
|
auto index_types = GetIndexTypes<T>();
|
|
for (const auto& index_type : index_types) {
|
|
milvus::index::CreateIndexInfo create_index_info;
|
|
create_index_info.field_type = milvus::DataType(dtype);
|
|
create_index_info.index_type = index_type;
|
|
auto index =
|
|
milvus::index::IndexFactory::GetInstance().CreateScalarIndex(
|
|
create_index_info);
|
|
auto scalar_index =
|
|
dynamic_cast<milvus::index::ScalarIndex<T>*>(index.get());
|
|
auto arr = GenArr<T>(nb);
|
|
scalar_index->Build(nb, arr.data());
|
|
assert_range<T>(scalar_index, arr);
|
|
}
|
|
}
|
|
|
|
TYPED_TEST_P(TypedScalarIndexTest, Codec) {
|
|
using T = TypeParam;
|
|
auto dtype = milvus::GetDType<T>();
|
|
auto index_types = GetIndexTypes<T>();
|
|
for (const auto& index_type : index_types) {
|
|
milvus::index::CreateIndexInfo create_index_info;
|
|
create_index_info.field_type = milvus::DataType(dtype);
|
|
create_index_info.index_type = index_type;
|
|
auto index =
|
|
milvus::index::IndexFactory::GetInstance().CreateScalarIndex(
|
|
create_index_info);
|
|
auto scalar_index =
|
|
dynamic_cast<milvus::index::ScalarIndex<T>*>(index.get());
|
|
auto arr = GenArr<T>(nb);
|
|
scalar_index->Build(nb, arr.data());
|
|
|
|
auto binary_set = index->Serialize(nullptr);
|
|
auto copy_index =
|
|
milvus::index::IndexFactory::GetInstance().CreateScalarIndex(
|
|
create_index_info);
|
|
copy_index->Load(binary_set);
|
|
|
|
auto copy_scalar_index =
|
|
dynamic_cast<milvus::index::ScalarIndex<T>*>(copy_index.get());
|
|
ASSERT_EQ(nb, copy_scalar_index->Count());
|
|
assert_in<T>(copy_scalar_index, arr);
|
|
assert_not_in<T>(copy_scalar_index, arr);
|
|
assert_range<T>(copy_scalar_index, arr);
|
|
}
|
|
}
|
|
|
|
// TODO: it's easy to overflow for int8_t. Design more reasonable ut.
|
|
using ScalarT =
|
|
::testing::Types<int8_t, int16_t, int32_t, int64_t, float, double>;
|
|
|
|
REGISTER_TYPED_TEST_CASE_P(TypedScalarIndexTest,
|
|
Dummy,
|
|
Constructor,
|
|
Count,
|
|
In,
|
|
NotIn,
|
|
Range,
|
|
Codec,
|
|
Reverse);
|
|
|
|
INSTANTIATE_TYPED_TEST_CASE_P(ArithmeticCheck, TypedScalarIndexTest, ScalarT);
|