mirror of https://github.com/milvus-io/milvus.git
enhance: update knowhere version (#37510)
issue: #36925 Signed-off-by: xianliang.li <xianliang.li@zilliz.com>pull/37617/head^2
parent
a9538f6e96
commit
cf883b114e
|
@ -14,7 +14,7 @@
|
|||
# Update KNOWHERE_VERSION for the first occurrence
|
||||
milvus_add_pkg_config("knowhere")
|
||||
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY INCLUDE_DIRECTORIES "")
|
||||
set( KNOWHERE_VERSION e67abe7 )
|
||||
set( KNOWHERE_VERSION 5935c1f )
|
||||
set( GIT_REPOSITORY "https://github.com/zilliztech/knowhere.git")
|
||||
message(STATUS "Knowhere repo: ${GIT_REPOSITORY}")
|
||||
message(STATUS "Knowhere version: ${KNOWHERE_VERSION}")
|
||||
|
|
|
@ -63,7 +63,7 @@ func Test_floatVectorBaseChecker_CheckValidDataType(t *testing.T) {
|
|||
},
|
||||
{
|
||||
dType: schemapb.DataType_BinaryVector,
|
||||
errIsNil: true,
|
||||
errIsNil: false,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -165,7 +165,7 @@ func Test_hnswChecker_CheckValidDataType(t *testing.T) {
|
|||
},
|
||||
{
|
||||
dType: schemapb.DataType_BinaryVector,
|
||||
errIsNil: true,
|
||||
errIsNil: false,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ func Test_VecIndex_DataType_Support(t *testing.T) {
|
|||
schemapb.DataType_Float16Vector,
|
||||
schemapb.DataType_SparseFloatVector,
|
||||
},
|
||||
wants: []bool{true, true, true, true, false},
|
||||
wants: []bool{true, false, true, true, false},
|
||||
},
|
||||
{
|
||||
indexType: "DISKANN",
|
||||
|
|
|
@ -26,7 +26,7 @@ require (
|
|||
github.com/shirou/gopsutil/v3 v3.22.9
|
||||
github.com/sirupsen/logrus v1.9.0
|
||||
github.com/spaolacci/murmur3 v1.1.0
|
||||
github.com/spf13/cast v1.3.0
|
||||
github.com/spf13/cast v1.3.1
|
||||
github.com/streamnative/pulsarctl v0.5.0
|
||||
github.com/stretchr/testify v1.9.0
|
||||
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c
|
||||
|
|
|
@ -657,6 +657,8 @@ github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2
|
|||
github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=
|
||||
github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=
|
||||
github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
|
||||
github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=
|
||||
github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
|
||||
github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU=
|
||||
github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo=
|
||||
github.com/spf13/cobra v1.6.1 h1:o94oiPyS4KD1mPy2fmcYYHHfCxLqYjJOhGsCHFZtEzA=
|
||||
|
|
Loading…
Reference in New Issue