Skip to content

Commit c563257

Browse files
authored
Update SVS_URL in binaries for 0.3.0 (#311)
Post 0.3.0 update Also fixes https://github.com/intel/ScalableVectorSearch/actions/workflows/build-cpp-runtime-bindings.yml errors
1 parent e986753 commit c563257

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bindings/cpp/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,14 @@ if (SVS_RUNTIME_ENABLE_LVQ_LEANVEC)
123123
else()
124124
# Links to LTO-enabled static library, requires GCC/G++ 11.2
125125
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "11.2" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "11.3")
126-
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.2.0/svs-shared-library-0.2.0-lto-ivf.tar.gz"
126+
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.3.0/svs-shared-library-0.3.0-lto-ivf.tar.gz"
127127
CACHE STRING "URL to download SVS shared library")
128128
else()
129129
message(WARNING
130130
"Pre-built LVQ/LeanVec SVS library requires GCC/G++ v.11.2 to apply LTO optimizations."
131131
"Current compiler: ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}"
132132
)
133-
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.2.0/svs-shared-library-0.2.0-ivf.tar.gz"
133+
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.3.0/svs-shared-library-0.3.0-ivf.tar.gz"
134134
CACHE STRING "URL to download SVS shared library")
135135
endif()
136136
include(FetchContent)

examples/cpp/shared/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ find_package(svs QUIET)
2424
if(NOT svs_FOUND)
2525
# If sourcing from pip/conda, the following steps are not necessary, simplifying workflow
2626
# If not found, download tarball from GitHub release and follow steps to fetch and find
27-
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.2.0/svs-shared-library-0.2.0.tar.gz" CACHE STRINGS "URL to download SVS shared library tarball if not found in system")
27+
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.3.0/svs-shared-library-0.3.0.tar.gz" CACHE STRINGS "URL to download SVS shared library tarball if not found in system")
2828

2929
message(STATUS "SVS not found in system, downloading from: ${SVS_URL}")
3030

0 commit comments

Comments
 (0)