mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
fix build error
Former-commit-id: bfdde4eb57a2be02a87bb989859ece66e6289915
This commit is contained in:
parent
5b93d1e903
commit
f1d549d22f
@ -41,11 +41,6 @@ using DateT = int;
|
||||
const DateT EmptyDate = -1;
|
||||
using DatesT = std::vector<DateT>;
|
||||
|
||||
struct DateRange {
|
||||
DateT start_date_ = 0x1 << 32;
|
||||
DateT end_date_ = 0;
|
||||
};
|
||||
|
||||
struct TableSchema {
|
||||
typedef enum {
|
||||
NORMAL,
|
||||
|
||||
@ -256,8 +256,14 @@ void
|
||||
IVFSQHybrid::UnsetQuantizer() {
|
||||
}
|
||||
|
||||
void
|
||||
VectorIndexPtr
|
||||
IVFSQHybrid::LoadData(const knowhere::QuantizerPtr& q, const Config& conf) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::pair<VectorIndexPtr, QuantizerPtr>
|
||||
IVFSQHybrid::CopyCpuToGpuWithQuantizer(const int64_t& device_id, const Config& config) {
|
||||
KNOWHERE_THROW_MSG("Not yet implemented");
|
||||
}
|
||||
|
||||
IndexModelPtr
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user