Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
0282969b
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,发现更多精彩内容 >>
提交
0282969b
编写于
10月 22, 2019
作者:
W
wxyu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move easyloggingpp into external directory
Former-commit-id: 5c887b8e520bee38ea2f33fd3e467f936621eff9
上级
8958233e
变更
15
隐藏空白更改
内联
并排
Showing
15 changed file
with
30 addition
and
13 deletion
+30
-13
CHANGELOG.md
CHANGELOG.md
+1
-0
ci/jenkins/scripts/coverage.sh
ci/jenkins/scripts/coverage.sh
+2
-2
core/coverage.sh
core/coverage.sh
+2
-2
core/src/CMakeLists.txt
core/src/CMakeLists.txt
+8
-0
core/src/external/easyloggingpp/easylogging++.cc
core/src/external/easyloggingpp/easylogging++.cc
+0
-0
core/src/external/easyloggingpp/easylogging++.h
core/src/external/easyloggingpp/easylogging++.h
+0
-0
core/src/index/knowhere/knowhere/common/Log.h
core/src/index/knowhere/knowhere/common/Log.h
+1
-1
core/src/index/unittest/CMakeLists.txt
core/src/index/unittest/CMakeLists.txt
+1
-1
core/src/main.cpp
core/src/main.cpp
+1
-1
core/src/utils/Log.h
core/src/utils/Log.h
+1
-1
core/src/utils/LogUtil.h
core/src/utils/LogUtil.h
+1
-1
core/unittest/CMakeLists.txt
core/unittest/CMakeLists.txt
+9
-1
core/unittest/main.cpp
core/unittest/main.cpp
+1
-1
core/unittest/wrapper/CMakeLists.txt
core/unittest/wrapper/CMakeLists.txt
+1
-1
core/unittest/wrapper/test_wrapper.cpp
core/unittest/wrapper/test_wrapper.cpp
+1
-1
未找到文件。
CHANGELOG.md
浏览文件 @
0282969b
...
...
@@ -7,6 +7,7 @@ Please mark all change in change log and use the ticket from JIRA.
## Bug
## Improvement
-
\#
64 - Improvement dump function in scheduler
-
\#
82 - Move easyloggingpp into "external" directory
## Feature
## Task
...
...
ci/jenkins/scripts/coverage.sh
浏览文件 @
0282969b
...
...
@@ -131,8 +131,8 @@ ${LCOV_CMD} -r "${FILE_INFO_OUTPUT}" -o "${FILE_INFO_OUTPUT_NEW}" \
"*/src/server/Server.cpp"
\
"*/src/server/DBWrapper.cpp"
\
"*/src/server/grpc_impl/GrpcServer.cpp"
\
"*/src/
utils
/easylogging++.h"
\
"*/src/
utils
/easylogging++.cc"
"*/src/
external/easyloggingpp
/easylogging++.h"
\
"*/src/
external/easyloggingpp
/easylogging++.cc"
# gen html report
# ${LCOV_GEN_CMD} "${FILE_INFO_OUTPUT_NEW}" --output-directory ${DIR_LCOV_OUTPUT}/
core/coverage.sh
浏览文件 @
0282969b
...
...
@@ -121,8 +121,8 @@ ${LCOV_CMD} -r "${FILE_INFO_OUTPUT}" -o "${FILE_INFO_OUTPUT_NEW}" \
"*/src/server/Server.cpp"
\
"*/src/server/DBWrapper.cpp"
\
"*/src/server/grpc_impl/GrpcServer.cpp"
\
"*/src/
utils
/easylogging++.h"
\
"*/src/
utils
/easylogging++.cc"
"*/src/
external/easyloggingpp
/easylogging++.h"
\
"*/src/
external/easyloggingpp
/easylogging++.cc"
# gen html report
${
LCOV_GEN_CMD
}
"
${
FILE_INFO_OUTPUT_NEW
}
"
--output-directory
${
DIR_LCOV_OUTPUT
}
/
core/src/CMakeLists.txt
浏览文件 @
0282969b
...
...
@@ -64,6 +64,13 @@ set(scheduler_files
${
scheduler_task_files
}
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/external/easyloggingpp external_easyloggingpp_files
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/external/nlohmann external_nlohmann_files
)
set
(
external_files
${
external_easyloggingpp_files
}
${
external_nlohmann_files
}
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/server server_files
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/server/grpc_impl grpc_server_files
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/utils utils_files
)
...
...
@@ -77,6 +84,7 @@ set(engine_files
${
db_insert_files
}
${
db_meta_files
}
${
metrics_files
}
${
external_files
}
${
utils_files
}
${
wrapper_files
}
)
...
...
core/src/
utils
/easylogging++.cc
→
core/src/
external/easyloggingpp
/easylogging++.cc
浏览文件 @
0282969b
文件已移动
core/src/
utils
/easylogging++.h
→
core/src/
external/easyloggingpp
/easylogging++.h
浏览文件 @
0282969b
文件已移动
core/src/index/knowhere/knowhere/common/Log.h
浏览文件 @
0282969b
...
...
@@ -17,7 +17,7 @@
#pragma once
#include "
utils
/easylogging++.h"
#include "
external/easyloggingpp
/easylogging++.h"
namespace
knowhere
{
...
...
core/src/index/unittest/CMakeLists.txt
浏览文件 @
0282969b
...
...
@@ -20,7 +20,7 @@ set(basic_libs
)
set
(
util_srcs
${
MILVUS_ENGINE_SRC
}
/
utils
/easylogging++.cc
${
MILVUS_ENGINE_SRC
}
/
external/easyloggingpp
/easylogging++.cc
${
INDEX_SOURCE_DIR
}
/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.cpp
${
INDEX_SOURCE_DIR
}
/knowhere/knowhere/index/vector_index/helpers/FaissIO.cpp
${
INDEX_SOURCE_DIR
}
/knowhere/knowhere/index/vector_index/helpers/IndexParameter.cpp
...
...
core/src/main.cpp
浏览文件 @
0282969b
...
...
@@ -23,11 +23,11 @@
#include <string>
#include "../version.h"
#include "external/easyloggingpp/easylogging++.h"
#include "metrics/Metrics.h"
#include "server/Server.h"
#include "utils/CommonUtil.h"
#include "utils/SignalUtil.h"
#include "utils/easylogging++.h"
INITIALIZE_EASYLOGGINGPP
...
...
core/src/utils/Log.h
浏览文件 @
0282969b
...
...
@@ -17,7 +17,7 @@
#pragma once
#include "
utils
/easylogging++.h"
#include "
external/easyloggingpp
/easylogging++.h"
namespace
milvus
{
...
...
core/src/utils/LogUtil.h
浏览文件 @
0282969b
...
...
@@ -17,8 +17,8 @@
#pragma once
#include "external/easyloggingpp/easylogging++.h"
#include "utils/Status.h"
#include "utils/easylogging++.h"
#include <sstream>
#include <string>
...
...
core/unittest/CMakeLists.txt
浏览文件 @
0282969b
...
...
@@ -60,6 +60,13 @@ set(scheduler_files
${
scheduler_optimizer_files
}
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/external/easyloggingpp external_easyloggingpp_files
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/external/nlohmann external_nlohmann_files
)
set
(
external_files
${
external_easyloggingpp_files
}
${
external_nlohmann_files
}
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/server server_files
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/server/grpc_impl grpc_server_files
)
aux_source_directory
(
${
MILVUS_ENGINE_SRC
}
/utils utils_files
)
...
...
@@ -74,7 +81,7 @@ set(helper_files
${
MILVUS_ENGINE_SRC
}
/utils/TimeRecorder.cpp
${
MILVUS_ENGINE_SRC
}
/utils/Status.cpp
${
MILVUS_ENGINE_SRC
}
/utils/ValidationUtil.cpp
${
MILVUS_ENGINE_SRC
}
/
utils
/easylogging++.cc
${
MILVUS_ENGINE_SRC
}
/
external/easyloggingpp
/easylogging++.cc
)
set
(
common_files
...
...
@@ -85,6 +92,7 @@ set(common_files
${
db_insert_files
}
${
db_meta_files
}
${
metrics_files
}
${
external_files
}
${
scheduler_files
}
${
wrapper_files
}
${
helper_files
}
...
...
core/unittest/main.cpp
浏览文件 @
0282969b
...
...
@@ -18,7 +18,7 @@
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include "
utils
/easylogging++.h"
#include "
external/easyloggingpp
/easylogging++.h"
INITIALIZE_EASYLOGGINGPP
...
...
core/unittest/wrapper/CMakeLists.txt
浏览文件 @
0282969b
...
...
@@ -26,7 +26,7 @@ set(wrapper_files
set
(
util_files
utils.cpp
${
MILVUS_ENGINE_SRC
}
/
utils
/easylogging++.cc
${
MILVUS_ENGINE_SRC
}
/
external/easyloggingpp
/easylogging++.cc
${
MILVUS_ENGINE_SRC
}
/utils/Status.cpp
)
...
...
core/unittest/wrapper/test_wrapper.cpp
浏览文件 @
0282969b
...
...
@@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#include "
utils
/easylogging++.h"
#include "
external/easyloggingpp
/easylogging++.h"
#include "wrapper/VecIndex.h"
#include "knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h"
#include "knowhere/index/vector_index/helpers/IndexParameter.h"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录