Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
b6d86a10
milvus
项目概览
BaiXuePrincess
/
milvus
与 Fork 源项目一致
从无法访问的项目Fork
通知
7
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
milvus
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
b6d86a10
编写于
10月 10, 2019
作者:
W
wxyu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
solve cpplint
Former-commit-id: 38cb156c22bd01259b87f4f4dcb7e2543dbb754b
上级
14ce9652
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
13 addition
and
11 deletion
+13
-11
cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.cpp
...knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.cpp
+1
-1
cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.h
...e/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.h
+1
-1
cpp/src/db/engine/ExecutionEngineImpl.cpp
cpp/src/db/engine/ExecutionEngineImpl.cpp
+4
-4
cpp/src/db/engine/ExecutionEngineImpl.h
cpp/src/db/engine/ExecutionEngineImpl.h
+1
-1
cpp/src/scheduler/JobMgr.cpp
cpp/src/scheduler/JobMgr.cpp
+1
-1
cpp/src/scheduler/Utils.cpp
cpp/src/scheduler/Utils.cpp
+4
-2
cpp/src/wrapper/VecImpl.h
cpp/src/wrapper/VecImpl.h
+1
-1
未找到文件。
cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.cpp
浏览文件 @
b6d86a10
...
...
@@ -164,7 +164,7 @@ IVFSQHybrid::SetQuantizer(const QuantizerPtr& q) {
faiss
::
gpu
::
GpuIndexFlat
*
is_gpu_flat_index
=
dynamic_cast
<
faiss
::
gpu
::
GpuIndexFlat
*>
(
ivf_index
->
quantizer
);
if
(
is_gpu_flat_index
==
nullptr
)
{
// delete ivf_index->quantizer;
// delete ivf_index->quantizer;
ivf_index
->
quantizer
=
ivf_quantizer
->
quantizer
;
}
}
...
...
cpp/src/core/knowhere/knowhere/index/vector_index/IndexIVFSQHybrid.h
浏览文件 @
b6d86a10
...
...
@@ -78,7 +78,7 @@ class IVFSQHybrid : public GPUIVFSQ {
LoadImpl
(
const
BinarySet
&
index_binary
)
override
;
protected:
int64_t
gpu_mode
=
0
;
// 0,1,2
int64_t
gpu_mode
=
0
;
// 0,1,2
};
}
// namespace knowhere
cpp/src/db/engine/ExecutionEngineImpl.cpp
浏览文件 @
b6d86a10
...
...
@@ -31,18 +31,18 @@
#include "wrapper/ConfAdapter.h"
#include "wrapper/ConfAdapterMgr.h"
#include <src/scheduler/Utils.h>
#include <stdexcept>
#include <utility>
#include <
src/scheduler/Utils.h
>
#include <
vector
>
namespace
milvus
{
namespace
engine
{
class
CachedQuantizer
:
public
cache
::
DataObj
{
public:
explicit
CachedQuantizer
(
knowhere
::
QuantizerPtr
data
)
:
data_
(
std
::
move
(
data
))
{}
explicit
CachedQuantizer
(
knowhere
::
QuantizerPtr
data
)
:
data_
(
std
::
move
(
data
))
{
}
knowhere
::
QuantizerPtr
Data
()
{
...
...
cpp/src/db/engine/ExecutionEngineImpl.h
浏览文件 @
b6d86a10
...
...
@@ -109,7 +109,7 @@ class ExecutionEngineImpl : public ExecutionEngine {
void
HybridLoad
()
const
;
void
HybridUnset
()
const
;
...
...
cpp/src/scheduler/JobMgr.cpp
浏览文件 @
b6d86a10
...
...
@@ -19,8 +19,8 @@
#include "TaskCreator.h"
#include "task/Task.h"
#include <utility>
#include <src/scheduler/optimizer/Optimizer.h>
#include <utility>
namespace
milvus
{
namespace
scheduler
{
...
...
cpp/src/scheduler/Utils.cpp
浏览文件 @
b6d86a10
...
...
@@ -15,12 +15,14 @@
// specific language governing permissions and limitations
// under the License.
#include "server/Config.h"
#include "scheduler/Utils.h"
#include "server/Config.h"
#include "utils/Log.h"
#include <cuda_runtime.h>
#include <chrono>
#include <set>
#include <string>
namespace
milvus
{
namespace
scheduler
{
...
...
@@ -75,7 +77,7 @@ get_gpu_pool() {
}
return
gpu_pool
;
}
;
}
}
// namespace scheduler
}
// namespace milvus
cpp/src/wrapper/VecImpl.h
浏览文件 @
b6d86a10
...
...
@@ -94,7 +94,7 @@ class IVFMixIndex : public VecIndexImpl {
class
IVFHybridIndex
:
public
IVFMixIndex
{
public:
explicit
IVFHybridIndex
(
std
::
shared_ptr
<
knowhere
::
VectorIndex
>
index
,
const
IndexType
&
type
)
:
IVFMixIndex
(
std
::
move
(
index
),
type
)
{
:
IVFMixIndex
(
std
::
move
(
index
),
type
)
{
}
knowhere
::
QuantizerPtr
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录