diff -Nru faiss-1.7.4/debian/changelog faiss-1.7.4/debian/changelog --- faiss-1.7.4/debian/changelog 2023-06-24 19:32:26.000000000 +0000 +++ faiss-1.7.4/debian/changelog 2023-06-26 14:06:31.000000000 +0000 @@ -1,3 +1,10 @@ +faiss (1.7.4-3) unstable; urgency=medium + + * Team upload. + * Drop broken Neon inlining patch + + -- Timo Röhling Mon, 26 Jun 2023 16:06:31 +0200 + faiss (1.7.4-2) unstable; urgency=medium * Team upload. diff -Nru faiss-1.7.4/debian/patches/0003-Fix-CMake-package-export.patch faiss-1.7.4/debian/patches/0003-Fix-CMake-package-export.patch --- faiss-1.7.4/debian/patches/0003-Fix-CMake-package-export.patch 1970-01-01 00:00:00.000000000 +0000 +++ faiss-1.7.4/debian/patches/0003-Fix-CMake-package-export.patch 2023-06-26 14:06:08.000000000 +0000 @@ -0,0 +1,24 @@ +From: =?utf-8?q?Timo_R=C3=B6hling?= +Date: Tue, 8 Feb 2022 11:53:12 +0100 +Subject: Fix CMake package export + +--- + faiss/CMakeLists.txt | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/faiss/CMakeLists.txt b/faiss/CMakeLists.txt +index 1fea676..34f1283 100644 +--- a/faiss/CMakeLists.txt ++++ b/faiss/CMakeLists.txt +@@ -316,9 +316,9 @@ configure_file(${PROJECT_SOURCE_DIR}/cmake/faiss-config.cmake.in + ) + install(FILES ${PROJECT_BINARY_DIR}/cmake/faiss-config.cmake + ${PROJECT_BINARY_DIR}/cmake/faiss-config-version.cmake +- DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/faiss ++ DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/faiss + ) + + install(EXPORT faiss-targets +- DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/faiss ++ DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/faiss + ) diff -Nru faiss-1.7.4/debian/patches/0003-Force-inlining-on-simdlib-helpers.patch faiss-1.7.4/debian/patches/0003-Force-inlining-on-simdlib-helpers.patch --- faiss-1.7.4/debian/patches/0003-Force-inlining-on-simdlib-helpers.patch 2023-06-24 19:29:50.000000000 +0000 +++ faiss-1.7.4/debian/patches/0003-Force-inlining-on-simdlib-helpers.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -From: =?utf-8?q?Timo_R=C3=B6hling?= -Date: Mon, 7 Feb 2022 08:12:11 +0100 -Subject: Force inlining on simdlib helpers - -The helper functions are called with intrinsics as function -arguments, but intrinsics cannot have their address taken, so -these calls only work if they are inlined by the compiler. ---- - faiss/utils/simdlib_neon.h | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/faiss/utils/simdlib_neon.h b/faiss/utils/simdlib_neon.h -index 1dbfa2c..6c6a028 100644 ---- a/faiss/utils/simdlib_neon.h -+++ b/faiss/utils/simdlib_neon.h -@@ -147,7 +147,7 @@ struct set1_impl { - D& d; - T t; - template ().val[0])> (*F)(T)> -- inline void call() { -+ inline void call() __attribute__((always_inline)) { - const auto v = F(t); - d.val[0] = v; - d.val[1] = v; -@@ -181,7 +181,7 @@ struct unary_func_impl { - using Telem = remove_cv_ref_t().val[0])>; - using Uelem = remove_cv_ref_t().val[0])>; - template -- inline T call() { -+ inline T call() __attribute__((always_inline)) { - T t; - t.val[0] = F(a.val[0]); - t.val[1] = F(a.val[1]); -@@ -208,7 +208,7 @@ struct binary_func_impl { - using Telem = remove_cv_ref_t().val[0])>; - using Uelem = remove_cv_ref_t().val[0])>; - template -- inline T call() { -+ inline T call() __attribute__((always_inline)) { - T t; - t.val[0] = F(a.val[0], b.val[0]); - t.val[1] = F(a.val[1], b.val[1]); diff -Nru faiss-1.7.4/debian/patches/0004-Fix-CMake-package-export.patch faiss-1.7.4/debian/patches/0004-Fix-CMake-package-export.patch --- faiss-1.7.4/debian/patches/0004-Fix-CMake-package-export.patch 2023-06-24 19:29:50.000000000 +0000 +++ faiss-1.7.4/debian/patches/0004-Fix-CMake-package-export.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -From: =?utf-8?q?Timo_R=C3=B6hling?= -Date: Tue, 8 Feb 2022 11:53:12 +0100 -Subject: Fix CMake package export - ---- - faiss/CMakeLists.txt | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/faiss/CMakeLists.txt b/faiss/CMakeLists.txt -index 1fea676..34f1283 100644 ---- a/faiss/CMakeLists.txt -+++ b/faiss/CMakeLists.txt -@@ -316,9 +316,9 @@ configure_file(${PROJECT_SOURCE_DIR}/cmake/faiss-config.cmake.in - ) - install(FILES ${PROJECT_BINARY_DIR}/cmake/faiss-config.cmake - ${PROJECT_BINARY_DIR}/cmake/faiss-config-version.cmake -- DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/faiss -+ DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/faiss - ) - - install(EXPORT faiss-targets -- DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/faiss -+ DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/faiss - ) diff -Nru faiss-1.7.4/debian/patches/0004-Fix-implementation-for-32-bit-size_t.patch faiss-1.7.4/debian/patches/0004-Fix-implementation-for-32-bit-size_t.patch --- faiss-1.7.4/debian/patches/0004-Fix-implementation-for-32-bit-size_t.patch 1970-01-01 00:00:00.000000000 +0000 +++ faiss-1.7.4/debian/patches/0004-Fix-implementation-for-32-bit-size_t.patch 2023-06-26 14:06:08.000000000 +0000 @@ -0,0 +1,89 @@ +From: =?utf-8?q?Timo_R=C3=B6hling?= +Date: Wed, 9 Feb 2022 01:28:47 +0100 +Subject: Fix implementation for 32 bit size_t + +--- + faiss/index_factory.cpp | 2 +- + faiss/invlists/DirectMap.cpp | 2 +- + faiss/invlists/OnDiskInvertedLists.cpp | 7 ++++--- + faiss/utils/utils.cpp | 2 +- + 4 files changed, 7 insertions(+), 6 deletions(-) + +diff --git a/faiss/index_factory.cpp b/faiss/index_factory.cpp +index 5dbf609..6660b71 100644 +--- a/faiss/index_factory.cpp ++++ b/faiss/index_factory.cpp +@@ -728,7 +728,7 @@ std::unique_ptr index_factory_sub( + } + + if (verbose) { +- printf("after () normalization: %s %ld parenthesis indexes d=%d\n", ++ printf("after () normalization: %s %zu parenthesis indexes d=%d\n", + description.c_str(), + parenthesis_indexes.size(), + d); +diff --git a/faiss/invlists/DirectMap.cpp b/faiss/invlists/DirectMap.cpp +index b276b76..63cf2d3 100644 +--- a/faiss/invlists/DirectMap.cpp ++++ b/faiss/invlists/DirectMap.cpp +@@ -199,7 +199,7 @@ size_t DirectMap::remove_ids(const IDSelector& sel, InvertedLists* invlists) { + last_id, + ScopedCodes(invlists, list_no, last).get()); + // update hash entry for last element +- hashtable[last_id] = list_no << 32 | offset; ++ hashtable[last_id] = idx_t(list_no) << 32 | idx_t(offset); + } + invlists->resize(list_no, last); + nremove++; +diff --git a/faiss/invlists/OnDiskInvertedLists.cpp b/faiss/invlists/OnDiskInvertedLists.cpp +index 825ccfb..95bb5c9 100644 +--- a/faiss/invlists/OnDiskInvertedLists.cpp ++++ b/faiss/invlists/OnDiskInvertedLists.cpp +@@ -11,6 +11,7 @@ + + #include + ++#include + #include + + #include +@@ -325,7 +326,7 @@ void OnDiskInvertedLists::update_totsize(size_t new_size) { + + FAISS_THROW_IF_NOT_FMT( + err == 0, +- "truncate %s to %ld: %s", ++ "truncate %s to %zu: %s", + filename.c_str(), + totsize, + strerror(errno)); +@@ -524,7 +525,7 @@ void OnDiskInvertedLists::free_slot(size_t offset, size_t capacity) { + it++; + } + +- size_t inf = 1UL << 60; ++ size_t inf = (std::numeric_limits::max() - (std::numeric_limits::max() >> 1)) >> 1; + + size_t end_prev = inf; + if (it != slots.begin()) { +@@ -533,7 +534,7 @@ void OnDiskInvertedLists::free_slot(size_t offset, size_t capacity) { + end_prev = prev->offset + prev->capacity; + } + +- size_t begin_next = 1L << 60; ++ size_t begin_next = inf; + if (it != slots.end()) { + begin_next = it->offset; + } +diff --git a/faiss/utils/utils.cpp b/faiss/utils/utils.cpp +index 894653b..6488a10 100644 +--- a/faiss/utils/utils.cpp ++++ b/faiss/utils/utils.cpp +@@ -160,7 +160,7 @@ size_t get_mem_usage_kb() { + char buf[256]; + if (!fgets(buf, 256, f)) + break; +- if (sscanf(buf, "VmRSS: %ld kB", &sz) == 1) ++ if (sscanf(buf, "VmRSS: %zu kB", &sz) == 1) + break; + } + fclose(f); diff -Nru faiss-1.7.4/debian/patches/0005-Fix-floating-point-comparisons-in-unit-tests.patch faiss-1.7.4/debian/patches/0005-Fix-floating-point-comparisons-in-unit-tests.patch --- faiss-1.7.4/debian/patches/0005-Fix-floating-point-comparisons-in-unit-tests.patch 1970-01-01 00:00:00.000000000 +0000 +++ faiss-1.7.4/debian/patches/0005-Fix-floating-point-comparisons-in-unit-tests.patch 2023-06-26 14:06:08.000000000 +0000 @@ -0,0 +1,21 @@ +From: =?utf-8?q?Timo_R=C3=B6hling?= +Date: Wed, 9 Feb 2022 01:38:34 +0100 +Subject: Fix floating point comparisons in unit tests + +--- + tests/test_lowlevel_ivf.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/tests/test_lowlevel_ivf.cpp b/tests/test_lowlevel_ivf.cpp +index e28e2a9..a4d8410 100644 +--- a/tests/test_lowlevel_ivf.cpp ++++ b/tests/test_lowlevel_ivf.cpp +@@ -359,7 +359,7 @@ void test_lowlevel_access_binary(const char* index_key) { + float computed_D = scanner->distance_to_code( + xb.data() + vno * il->code_size); + +- EXPECT_EQ(computed_D, D[jj]); ++ EXPECT_FLOAT_EQ(computed_D, D[jj]); + } + } + } diff -Nru faiss-1.7.4/debian/patches/0005-Fix-implementation-for-32-bit-size_t.patch faiss-1.7.4/debian/patches/0005-Fix-implementation-for-32-bit-size_t.patch --- faiss-1.7.4/debian/patches/0005-Fix-implementation-for-32-bit-size_t.patch 2023-06-24 19:29:50.000000000 +0000 +++ faiss-1.7.4/debian/patches/0005-Fix-implementation-for-32-bit-size_t.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,89 +0,0 @@ -From: =?utf-8?q?Timo_R=C3=B6hling?= -Date: Wed, 9 Feb 2022 01:28:47 +0100 -Subject: Fix implementation for 32 bit size_t - ---- - faiss/index_factory.cpp | 2 +- - faiss/invlists/DirectMap.cpp | 2 +- - faiss/invlists/OnDiskInvertedLists.cpp | 7 ++++--- - faiss/utils/utils.cpp | 2 +- - 4 files changed, 7 insertions(+), 6 deletions(-) - -diff --git a/faiss/index_factory.cpp b/faiss/index_factory.cpp -index 5dbf609..6660b71 100644 ---- a/faiss/index_factory.cpp -+++ b/faiss/index_factory.cpp -@@ -728,7 +728,7 @@ std::unique_ptr index_factory_sub( - } - - if (verbose) { -- printf("after () normalization: %s %ld parenthesis indexes d=%d\n", -+ printf("after () normalization: %s %zu parenthesis indexes d=%d\n", - description.c_str(), - parenthesis_indexes.size(), - d); -diff --git a/faiss/invlists/DirectMap.cpp b/faiss/invlists/DirectMap.cpp -index b276b76..63cf2d3 100644 ---- a/faiss/invlists/DirectMap.cpp -+++ b/faiss/invlists/DirectMap.cpp -@@ -199,7 +199,7 @@ size_t DirectMap::remove_ids(const IDSelector& sel, InvertedLists* invlists) { - last_id, - ScopedCodes(invlists, list_no, last).get()); - // update hash entry for last element -- hashtable[last_id] = list_no << 32 | offset; -+ hashtable[last_id] = idx_t(list_no) << 32 | idx_t(offset); - } - invlists->resize(list_no, last); - nremove++; -diff --git a/faiss/invlists/OnDiskInvertedLists.cpp b/faiss/invlists/OnDiskInvertedLists.cpp -index 825ccfb..95bb5c9 100644 ---- a/faiss/invlists/OnDiskInvertedLists.cpp -+++ b/faiss/invlists/OnDiskInvertedLists.cpp -@@ -11,6 +11,7 @@ - - #include - -+#include - #include - - #include -@@ -325,7 +326,7 @@ void OnDiskInvertedLists::update_totsize(size_t new_size) { - - FAISS_THROW_IF_NOT_FMT( - err == 0, -- "truncate %s to %ld: %s", -+ "truncate %s to %zu: %s", - filename.c_str(), - totsize, - strerror(errno)); -@@ -524,7 +525,7 @@ void OnDiskInvertedLists::free_slot(size_t offset, size_t capacity) { - it++; - } - -- size_t inf = 1UL << 60; -+ size_t inf = (std::numeric_limits::max() - (std::numeric_limits::max() >> 1)) >> 1; - - size_t end_prev = inf; - if (it != slots.begin()) { -@@ -533,7 +534,7 @@ void OnDiskInvertedLists::free_slot(size_t offset, size_t capacity) { - end_prev = prev->offset + prev->capacity; - } - -- size_t begin_next = 1L << 60; -+ size_t begin_next = inf; - if (it != slots.end()) { - begin_next = it->offset; - } -diff --git a/faiss/utils/utils.cpp b/faiss/utils/utils.cpp -index 894653b..6488a10 100644 ---- a/faiss/utils/utils.cpp -+++ b/faiss/utils/utils.cpp -@@ -160,7 +160,7 @@ size_t get_mem_usage_kb() { - char buf[256]; - if (!fgets(buf, 256, f)) - break; -- if (sscanf(buf, "VmRSS: %ld kB", &sz) == 1) -+ if (sscanf(buf, "VmRSS: %zu kB", &sz) == 1) - break; - } - fclose(f); diff -Nru faiss-1.7.4/debian/patches/0006-Add-GTest-filter.patch faiss-1.7.4/debian/patches/0006-Add-GTest-filter.patch --- faiss-1.7.4/debian/patches/0006-Add-GTest-filter.patch 1970-01-01 00:00:00.000000000 +0000 +++ faiss-1.7.4/debian/patches/0006-Add-GTest-filter.patch 2023-06-26 14:06:08.000000000 +0000 @@ -0,0 +1,18 @@ +From: =?utf-8?q?Timo_R=C3=B6hling?= +Date: Wed, 9 Feb 2022 08:08:13 +0100 +Subject: Add GTest filter + +--- + tests/CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt +index 442dfa4..c40bb1d 100644 +--- a/tests/CMakeLists.txt ++++ b/tests/CMakeLists.txt +@@ -62,4 +62,4 @@ target_link_libraries(faiss_test PRIVATE + + # Defines `gtest_discover_tests()`. + include(GoogleTest) +-gtest_discover_tests(faiss_test) ++gtest_discover_tests(faiss_test TEST_FILTER "${FAISS_GTEST_FILTER}") diff -Nru faiss-1.7.4/debian/patches/0006-Fix-floating-point-comparisons-in-unit-tests.patch faiss-1.7.4/debian/patches/0006-Fix-floating-point-comparisons-in-unit-tests.patch --- faiss-1.7.4/debian/patches/0006-Fix-floating-point-comparisons-in-unit-tests.patch 2023-06-24 19:29:50.000000000 +0000 +++ faiss-1.7.4/debian/patches/0006-Fix-floating-point-comparisons-in-unit-tests.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -From: =?utf-8?q?Timo_R=C3=B6hling?= -Date: Wed, 9 Feb 2022 01:38:34 +0100 -Subject: Fix floating point comparisons in unit tests - ---- - tests/test_lowlevel_ivf.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/test_lowlevel_ivf.cpp b/tests/test_lowlevel_ivf.cpp -index e28e2a9..a4d8410 100644 ---- a/tests/test_lowlevel_ivf.cpp -+++ b/tests/test_lowlevel_ivf.cpp -@@ -359,7 +359,7 @@ void test_lowlevel_access_binary(const char* index_key) { - float computed_D = scanner->distance_to_code( - xb.data() + vno * il->code_size); - -- EXPECT_EQ(computed_D, D[jj]); -+ EXPECT_FLOAT_EQ(computed_D, D[jj]); - } - } - } diff -Nru faiss-1.7.4/debian/patches/0007-Add-GTest-filter.patch faiss-1.7.4/debian/patches/0007-Add-GTest-filter.patch --- faiss-1.7.4/debian/patches/0007-Add-GTest-filter.patch 2023-06-24 19:29:50.000000000 +0000 +++ faiss-1.7.4/debian/patches/0007-Add-GTest-filter.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -From: =?utf-8?q?Timo_R=C3=B6hling?= -Date: Wed, 9 Feb 2022 08:08:13 +0100 -Subject: Add GTest filter - ---- - tests/CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt -index 442dfa4..c40bb1d 100644 ---- a/tests/CMakeLists.txt -+++ b/tests/CMakeLists.txt -@@ -62,4 +62,4 @@ target_link_libraries(faiss_test PRIVATE - - # Defines `gtest_discover_tests()`. - include(GoogleTest) --gtest_discover_tests(faiss_test) -+gtest_discover_tests(faiss_test TEST_FILTER "${FAISS_GTEST_FILTER}") diff -Nru faiss-1.7.4/debian/patches/0007-Fix-build-with-gcc-13.patch faiss-1.7.4/debian/patches/0007-Fix-build-with-gcc-13.patch --- faiss-1.7.4/debian/patches/0007-Fix-build-with-gcc-13.patch 1970-01-01 00:00:00.000000000 +0000 +++ faiss-1.7.4/debian/patches/0007-Fix-build-with-gcc-13.patch 2023-06-26 14:06:08.000000000 +0000 @@ -0,0 +1,20 @@ +From: =?utf-8?q?Timo_R=C3=B6hling?= +Date: Thu, 22 Jun 2023 17:51:36 +0200 +Subject: Fix build with gcc-13 + +--- + faiss/Index.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/faiss/Index.h b/faiss/Index.h +index d73a684..91fe700 100644 +--- a/faiss/Index.h ++++ b/faiss/Index.h +@@ -11,6 +11,7 @@ + #define FAISS_INDEX_H + + #include ++#include + #include + #include + #include diff -Nru faiss-1.7.4/debian/patches/0008-Fix-build-with-gcc-13.patch faiss-1.7.4/debian/patches/0008-Fix-build-with-gcc-13.patch --- faiss-1.7.4/debian/patches/0008-Fix-build-with-gcc-13.patch 2023-06-24 19:29:50.000000000 +0000 +++ faiss-1.7.4/debian/patches/0008-Fix-build-with-gcc-13.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -From: =?utf-8?q?Timo_R=C3=B6hling?= -Date: Thu, 22 Jun 2023 17:51:36 +0200 -Subject: Fix build with gcc-13 - ---- - faiss/Index.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/faiss/Index.h b/faiss/Index.h -index d73a684..91fe700 100644 ---- a/faiss/Index.h -+++ b/faiss/Index.h -@@ -11,6 +11,7 @@ - #define FAISS_INDEX_H - - #include -+#include - #include - #include - #include diff -Nru faiss-1.7.4/debian/patches/0008-Install-missing-header-file.patch faiss-1.7.4/debian/patches/0008-Install-missing-header-file.patch --- faiss-1.7.4/debian/patches/0008-Install-missing-header-file.patch 1970-01-01 00:00:00.000000000 +0000 +++ faiss-1.7.4/debian/patches/0008-Install-missing-header-file.patch 2023-06-26 14:06:08.000000000 +0000 @@ -0,0 +1,20 @@ +From: =?utf-8?q?Timo_R=C3=B6hling?= +Date: Sat, 24 Jun 2023 21:29:46 +0200 +Subject: Install missing header file + +--- + faiss/CMakeLists.txt | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/faiss/CMakeLists.txt b/faiss/CMakeLists.txt +index 34f1283..847ae34 100644 +--- a/faiss/CMakeLists.txt ++++ b/faiss/CMakeLists.txt +@@ -145,6 +145,7 @@ set(FAISS_HEADERS + impl/AdditiveQuantizer.h + impl/AuxIndexStructures.h + impl/IDSelector.h ++ impl/CodePacker.h + impl/DistanceComputer.h + impl/FaissAssert.h + impl/FaissException.h diff -Nru faiss-1.7.4/debian/patches/0009-Install-missing-header-file.patch faiss-1.7.4/debian/patches/0009-Install-missing-header-file.patch --- faiss-1.7.4/debian/patches/0009-Install-missing-header-file.patch 2023-06-24 19:29:50.000000000 +0000 +++ faiss-1.7.4/debian/patches/0009-Install-missing-header-file.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -From: =?utf-8?q?Timo_R=C3=B6hling?= -Date: Sat, 24 Jun 2023 21:29:46 +0200 -Subject: Install missing header file - ---- - faiss/CMakeLists.txt | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/faiss/CMakeLists.txt b/faiss/CMakeLists.txt -index 34f1283..847ae34 100644 ---- a/faiss/CMakeLists.txt -+++ b/faiss/CMakeLists.txt -@@ -145,6 +145,7 @@ set(FAISS_HEADERS - impl/AdditiveQuantizer.h - impl/AuxIndexStructures.h - impl/IDSelector.h -+ impl/CodePacker.h - impl/DistanceComputer.h - impl/FaissAssert.h - impl/FaissException.h diff -Nru faiss-1.7.4/debian/patches/series faiss-1.7.4/debian/patches/series --- faiss-1.7.4/debian/patches/series 2023-06-24 19:29:50.000000000 +0000 +++ faiss-1.7.4/debian/patches/series 2023-06-26 14:06:08.000000000 +0000 @@ -1,9 +1,8 @@ 0001-Use-system-GTest.patch 0002-Use-SWIGWORDSIZE32-on-32-bit-architectures.patch -0003-Force-inlining-on-simdlib-helpers.patch -0004-Fix-CMake-package-export.patch -0005-Fix-implementation-for-32-bit-size_t.patch -0006-Fix-floating-point-comparisons-in-unit-tests.patch -0007-Add-GTest-filter.patch -0008-Fix-build-with-gcc-13.patch -0009-Install-missing-header-file.patch +0003-Fix-CMake-package-export.patch +0004-Fix-implementation-for-32-bit-size_t.patch +0005-Fix-floating-point-comparisons-in-unit-tests.patch +0006-Add-GTest-filter.patch +0007-Fix-build-with-gcc-13.patch +0008-Install-missing-header-file.patch