You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix leanvec ood for public-only build and update binaries (#290)
Fixes public-only cpp runtime bindings validation with lack of
equivalent header that was added for private interface use with leanvec
ood.
Also allows runtime bindings validation runs to proceed regardless of
whether another fails, making it easier to identify root cause of
issues.
Lastly, updates CMakeLists.txts for shared examples and cpp runtime
bindings to use v0.2.0 binaries as this was investigated initially as a
potential cause of the CI issues and should be done anyway
Copy file name to clipboardExpand all lines: examples/cpp/shared/CMakeLists.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ find_package(svs QUIET)
24
24
if(NOT svs_FOUND)
25
25
# If sourcing from pip/conda, the following steps are not necessary, simplifying workflow
26
26
# 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.1.0/svs-shared-library-0.1.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.2.0/svs-shared-library-0.2.0.tar.gz"CACHE STRINGS "URL to download SVS shared library tarball if not found in system")
28
28
29
29
message(STATUS"SVS not found in system, downloading from: ${SVS_URL}")
0 commit comments