diff --git a/.github/actions/build_cmake/action.yml b/.github/actions/build_cmake/action.yml index 93c327ccfd..72fe400e79 100644 --- a/.github/actions/build_cmake/action.yml +++ b/.github/actions/build_cmake/action.yml @@ -131,7 +131,6 @@ runs: . make -k -C build -j$(nproc) - name: C++ tests - if: inputs.rocm == 'OFF' shell: bash run: | export GTEST_OUTPUT="xml:$(realpath .)/test-results/googletest/" diff --git a/faiss/gpu/test/TestGpuIndexIVFPQ.cpp b/faiss/gpu/test/TestGpuIndexIVFPQ.cpp index 9cc52bc788..73de101946 100644 --- a/faiss/gpu/test/TestGpuIndexIVFPQ.cpp +++ b/faiss/gpu/test/TestGpuIndexIVFPQ.cpp @@ -307,6 +307,8 @@ void testMMCodeDistance(faiss::MetricType mt) { } } +// FIXME: https://github.com/facebookresearch/faiss/issues/3787 +#ifndef USE_AMD_ROCM TEST(TestGpuIndexIVFPQ, Query_L2_MMCodeDistance) { testMMCodeDistance(faiss::MetricType::METRIC_L2); } @@ -314,6 +316,7 @@ TEST(TestGpuIndexIVFPQ, Query_L2_MMCodeDistance) { TEST(TestGpuIndexIVFPQ, Query_IP_MMCodeDistance) { testMMCodeDistance(faiss::MetricType::METRIC_INNER_PRODUCT); } +#endif // USE_AMD_ROCM TEST(TestGpuIndexIVFPQ, Float16Coarse) { Options opt;