提交 ec42c86e 编写于 作者: G groot

Merge remote-tracking branch 'origin/branch-0.3.0' into refact


Former-commit-id: 3b55ccd2a1ebb119cdd4a4955bda1cf339936c2b
......@@ -8,6 +8,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-80 - Fix server hang issue
- MS-89 - Fix compile failed, libgpufaiss.a link missing
- MS-90 - Fix arch match incorrect on ARM
- MS-99 - Fix compilation bug
## Improvement
- MS-82 - Update server startup welcome message
......@@ -15,6 +16,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-77 - Performance issue of post-search action
- MS-22 - Enhancement for MemVector size control
- MS-92 - Unify behavior of debug and release build
- MS-98 - Install all unit test to installation directory
## New Feature
......@@ -49,6 +51,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-34 - Fix prometheus-cpp thirdparty
- MS-67 - Fix license check bug
- MS-76 - Fix pipeline crash bug
- MS-100 - cmake: fix AWS build issue
## Improvement
......
......@@ -1762,7 +1762,10 @@ macro(build_aws)
-DENABLE_UNITY_BUILD=on
-DNO_ENCRYPTION=off)
set(AWS_STATIC_LIB "${AWS_PREFIX}/lib/libs3.a")
set(AWS_CPP_SDK_CORE_STATIC_LIB
"${AWS_PREFIX}/lib/${CMAKE_STATIC_LIBRARY_PREFIX}aws-cpp-sdk-core${CMAKE_STATIC_LIBRARY_SUFFIX}")
set(AWS_CPP_SDK_S3_STATIC_LIB
"${AWS_PREFIX}/lib/${CMAKE_STATIC_LIBRARY_PREFIX}aws-cpp-sdk-s3${CMAKE_STATIC_LIBRARY_SUFFIX}")
# Only pass our C flags on Unix as on MSVC it leads to a
# "incompatible command-line options" error
set(AWS_CMAKE_ARGS
......@@ -1788,24 +1791,40 @@ macro(build_aws)
URL
${AWS_SOURCE_URL}
BUILD_BYPRODUCTS
"${AWS_STATIC_LIB}")
"${AWS_CPP_SDK_S3_STATIC_LIB}"
"${AWS_CPP_SDK_CORE_STATIC_LIB}")
file(MAKE_DIRECTORY "${AWS_PREFIX}/include")
add_library(aws STATIC IMPORTED)
set_target_properties(aws
PROPERTIES IMPORTED_LOCATION "${AWS_STATIC_LIB}"
INTERFACE_INCLUDE_DIRECTORIES "${AWS_PREFIX}/include")
add_library(aws-cpp-sdk-s3 STATIC IMPORTED)
set_target_properties(aws-cpp-sdk-s3
PROPERTIES
IMPORTED_LOCATION "${AWS_CPP_SDK_S3_STATIC_LIB}"
INTERFACE_INCLUDE_DIRECTORIES "${AWS_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "${AWS_PREFIX}/lib/libaws-c-event-stream.a;${AWS_PREFIX}/lib/libaws-checksums.a;${AWS_PREFIX}/lib/libaws-c-common.a")
add_library(aws-cpp-sdk-core STATIC IMPORTED)
set_target_properties(aws-cpp-sdk-core
PROPERTIES IMPORTED_LOCATION "${AWS_CPP_SDK_CORE_STATIC_LIB}"
INTERFACE_INCLUDE_DIRECTORIES "${AWS_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "${AWS_PREFIX}/lib/libaws-c-event-stream.a;${AWS_PREFIX}/lib/libaws-checksums.a;${AWS_PREFIX}/lib/libaws-c-common.a")
add_dependencies(aws-cpp-sdk-s3 aws_ep)
add_dependencies(aws-cpp-sdk-core aws_ep)
add_dependencies(aws aws_ep)
endmacro()
if(MILVUS_WITH_AWS)
resolve_dependency(AWS)
# TODO: Don't use global includes but rather target_include_directories
get_target_property(AWS_INCLUDE_DIR aws INTERFACE_INCLUDE_DIRECTORIES)
link_directories(SYSTEM ${AWS_PREFIX}/lib)
include_directories(SYSTEM ${AWS_INCLUDE_DIR})
get_target_property(AWS_CPP_SDK_S3_INCLUDE_DIR aws-cpp-sdk-s3 INTERFACE_INCLUDE_DIRECTORIES)
include_directories(SYSTEM ${AWS_CPP_SDK_S3_INCLUDE_DIR})
get_target_property(AWS_CPP_SDK_CORE_INCLUDE_DIR aws-cpp-sdk-core INTERFACE_INCLUDE_DIRECTORIES)
include_directories(SYSTEM ${AWS_CPP_SDK_CORE_INCLUDE_DIR})
endif()
......@@ -160,7 +160,6 @@ add_executable(milvus_server
${utils_files}
${service_files}
${metrics_files}
#${EASYLOGGINGPP_INCLUDE_DIR}/easylogging++.cc
)
if (ENABLE_LICENSE STREQUAL "ON")
......@@ -183,11 +182,3 @@ endif ()
install(TARGETS milvus_server DESTINATION bin)
add_subdirectory(sdk)
#target_link_libraries(
# libprometheus-cpp-push.a
# libprometheus-cpp-pull.a
# libprometheus-cpp-core.a
# pthread
# z
# ${CURL_LIBRARIES})
......@@ -31,3 +31,5 @@ target_link_libraries(milvus_sdk
)
add_subdirectory(examples)
install(TARGETS milvus_sdk DESTINATION bin)
......@@ -20,3 +20,5 @@ target_link_libraries(sdk_simple
milvus_sdk
pthread
)
install(TARGETS sdk_simple DESTINATION bin)
......@@ -37,7 +37,7 @@ set(db_test_src
cuda_add_executable(db_test ${db_test_src})
set(db_libs
gpufaiss
libgpufaiss.a
faiss
cudart
cublas
......@@ -48,3 +48,5 @@ set(db_libs
)
target_link_libraries(db_test ${db_libs} ${unittest_libs})
install(TARGETS db_test DESTINATION bin)
\ No newline at end of file
......@@ -24,7 +24,7 @@ set(wrapper_libs
stdc++
boost_system
boost_filesystem
gpufaiss
libgpufaiss.a
faiss
cudart
cublas
......@@ -41,5 +41,4 @@ set(topk_test_src
topk_test.cpp
${CMAKE_SOURCE_DIR}/src/wrapper/gpu/Topk.cu)
#cuda_add_executable(topk_test ${topk_test_src})
#target_link_libraries(topk_test ${unittest_libs} ${faiss_libs})
install(TARGETS wrapper_test DESTINATION bin)
......@@ -15,12 +15,6 @@ INITIALIZE_EASYLOGGINGPP
using namespace zilliz::milvus;
int main(int argc, char **argv) {
std::string exe_path = server::CommonUtil::GetExePath();
std::string config_filename = exe_path + "/../../../conf/server_config.yaml";
zilliz::milvus::server::ServerConfig& config = zilliz::milvus::server::ServerConfig::GetInstance();
config.LoadConfigFile(config_filename);
std::cout << "Load config file form: " << config_filename << std::endl;
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
......@@ -62,7 +62,7 @@ set(count_test_src
add_executable(metrics_test ${count_test_src} ${require_files} )
target_link_libraries(metrics_test
gpufaiss
libgpufaiss.a
faiss
cudart
cublas
......@@ -72,10 +72,9 @@ target_link_libraries(metrics_test
lz4
metrics
gtest
# prometheus-cpp-pull
# prometheus-cpp-push
# prometheus-cpp-core
pthread
z
${unittest_libs}
)
\ No newline at end of file
)
install(TARGETS metrics_test DESTINATION bin)
\ No newline at end of file
......@@ -31,7 +31,7 @@ cuda_add_executable(server_test
set(require_libs
stdc++
gpufaiss
libgpufaiss.a
faiss
cudart
cublas
......@@ -51,3 +51,5 @@ target_link_libraries(server_test
${cuda_library}
${unittest_libs}
)
install(TARGETS server_test DESTINATION bin)
......@@ -6,14 +6,14 @@
aux_source_directory(${MILVUS_ENGINE_SRC}/storage/s3 s3_client_src)
# Make sure that your call to link_directories takes place before your call to the relevant add_executable.
include_directories(/usr/local/cuda/include)
link_directories("/usr/local/cuda/lib64")
include_directories("${CUDA_TOOLKIT_ROOT_DIR}/include")
link_directories("${CUDA_TOOLKIT_ROOT_DIR}/lib64")
set(s3_client_test_src
${unittest_srcs}
${s3_client_src}
${require_files}
s3_client_test.cpp
S3ClientTest.cpp
${MILVUS_ENGINE_SRC}/db/Status.cpp
)
......@@ -23,11 +23,8 @@ add_executable(s3_test
set(s3_client_libs
stdc++
libaws-cpp-sdk-s3.a
libaws-cpp-sdk-core.a
libaws-c-event-stream.a
libaws-checksums.a
libaws-c-common.a
aws-cpp-sdk-s3
aws-cpp-sdk-core
boost_filesystem
)
target_link_libraries(s3_test
......@@ -35,3 +32,5 @@ target_link_libraries(s3_test
${unittest_libs}
curl
crypto)
install(TARGETS s3_test DESTINATION bin)
\ No newline at end of file
......@@ -8,7 +8,6 @@
#include "storage/s3/S3ClientWrapper.h"
#include <gtest/gtest.h>
#include <memory.h>
#include <cmake-build-debug/boost_ep-prefix/src/boost_ep/boost/exception/detail/shared_ptr.hpp>
#include <fstream>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册