mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 23:15:28 +08:00
[skip e2e] Re-organize header files included under query (#14272)
Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
This commit is contained in:
parent
8def3c44dc
commit
0dae260a9c
@ -11,17 +11,10 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <deque>
|
||||
#include <optional>
|
||||
#include <boost/dynamic_bitset.hpp>
|
||||
|
||||
#include "segcore/SegmentGrowingImpl.h"
|
||||
|
||||
namespace milvus::query {
|
||||
|
||||
using BitsetChunk = boost::dynamic_bitset<>;
|
||||
using BitsetSimple = std::deque<BitsetChunk>;
|
||||
|
||||
void
|
||||
SearchOnGrowing(const segcore::SegmentGrowingImpl& segment,
|
||||
int64_t ins_barrier,
|
||||
|
||||
@ -9,18 +9,16 @@
|
||||
// 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
|
||||
|
||||
//
|
||||
// Created by mike on 12/26/20.
|
||||
//
|
||||
#include <boost_ext/dynamic_bitset_ext.hpp>
|
||||
#include <cmath>
|
||||
|
||||
#include "query/SearchOnSealed.h"
|
||||
#include <knowhere/index/vector_index/VecIndex.h>
|
||||
#include "knowhere/index/vector_index/VecIndex.h"
|
||||
#include "knowhere/index/vector_index/ConfAdapter.h"
|
||||
#include "knowhere/index/vector_index/ConfAdapterMgr.h"
|
||||
#include "knowhere/index/vector_index/helpers/IndexParameter.h"
|
||||
#include "knowhere/index/vector_index/adapter/VectorAdapter.h"
|
||||
#include <boost_ext/dynamic_bitset_ext.hpp>
|
||||
#include <cmath>
|
||||
#include "query/SearchOnSealed.h"
|
||||
#include "utils/Utils.h"
|
||||
|
||||
namespace milvus::query {
|
||||
|
||||
|
||||
@ -11,12 +11,18 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "segcore/SealedIndexingRecord.h"
|
||||
#include <deque>
|
||||
#include <boost/dynamic_bitset.hpp>
|
||||
|
||||
#include "query/PlanNode.h"
|
||||
#include "query/SearchOnGrowing.h"
|
||||
#include "segcore/SealedIndexingRecord.h"
|
||||
|
||||
namespace milvus::query {
|
||||
|
||||
using BitsetChunk = boost::dynamic_bitset<>;
|
||||
using BitsetSimple = std::deque<BitsetChunk>;
|
||||
|
||||
aligned_vector<uint8_t>
|
||||
AssembleNegBitset(const BitsetSimple& bitmap_simple);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user