[skip e2e] Re-organize header files included under query (#14272)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
This commit is contained in:
Cai Yudong 2021-12-27 14:12:11 +08:00 committed by GitHub
parent 8def3c44dc
commit 0dae260a9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 15 deletions

View File

@ -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,

View File

@ -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 {

View File

@ -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);