mirror of https://github.com/milvus-io/milvus.git
Merge branch 'branch-0.4.0' into 'branch-0.4.0'
MS-505: Install core unit test See merge request megasearch/milvus!505 Former-commit-id: 1069db330f54e253986030d67438092da42578b4pull/191/head
commit
768d5f76f0
|
@ -92,6 +92,7 @@ Please mark all change in change log and use the ticket from JIRA.
|
||||||
- MS-487 - Define metric type in CreateTable
|
- MS-487 - Define metric type in CreateTable
|
||||||
- MS-488 - Improve code format in scheduler
|
- MS-488 - Improve code format in scheduler
|
||||||
- MS-495 - cmake: integrated knowhere
|
- MS-495 - cmake: integrated knowhere
|
||||||
|
- MS-505 - Install core unit test
|
||||||
|
|
||||||
## New Feature
|
## New Feature
|
||||||
- MS-343 - Implement ResourceMgr
|
- MS-343 - Implement ResourceMgr
|
||||||
|
|
|
@ -74,6 +74,10 @@ target_link_libraries(test_kdt
|
||||||
SPTAGLibStatic
|
SPTAGLibStatic
|
||||||
${depend_libs} ${unittest_libs} ${basic_libs})
|
${depend_libs} ${unittest_libs} ${basic_libs})
|
||||||
|
|
||||||
|
install(TARGETS test_ivf DESTINATION unittest)
|
||||||
|
install(TARGETS test_idmap DESTINATION unittest)
|
||||||
|
install(TARGETS test_kdt DESTINATION unittest)
|
||||||
|
|
||||||
add_subdirectory(faiss_ori)
|
add_subdirectory(faiss_ori)
|
||||||
add_subdirectory(test_nsg)
|
add_subdirectory(test_nsg)
|
||||||
|
|
||||||
|
|
|
@ -24,3 +24,5 @@ if(NOT TARGET test_gpu)
|
||||||
add_executable(test_gpu gpuresource_test.cpp)
|
add_executable(test_gpu gpuresource_test.cpp)
|
||||||
endif()
|
endif()
|
||||||
target_link_libraries(test_gpu ${depend_libs} ${unittest_libs} ${basic_libs})
|
target_link_libraries(test_gpu ${depend_libs} ${unittest_libs} ${basic_libs})
|
||||||
|
|
||||||
|
install(TARGETS test_gpu DESTINATION unittest)
|
|
@ -38,4 +38,6 @@ if(NOT TARGET test_nsg)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
target_link_libraries(test_nsg ${depend_libs} ${unittest_libs} ${basic_libs})
|
target_link_libraries(test_nsg ${depend_libs} ${unittest_libs} ${basic_libs})
|
||||||
##############################
|
##############################
|
||||||
|
|
||||||
|
install(TARGETS test_nsg DESTINATION unittest)
|
Loading…
Reference in New Issue