Re-enable fast scan on Windows tests (#1663)

Summary:
Fast-scan tests were disabled on windows because of a heap corruption. This diff enables them because the free_aligned bug was fixed in the meantime.

Pull Request resolved: https://github.com/facebookresearch/faiss/pull/1663

Reviewed By: beauby

Differential Revision: D26201040

Pulled By: mdouze

fbshipit-source-id: 8d6223b4e42ccb1ce2da6e2c51d9e0833199bde7
pull/1669/head
Matthijs Douze 2021-02-03 07:47:04 -08:00 committed by Facebook GitHub Bot
parent 27077c4627
commit 04f777ead5
2 changed files with 0 additions and 2 deletions

View File

@ -328,7 +328,6 @@ class TestImplem15(TestImplems):
def test_2_64(self):
self.do_with_params(32, (2, 64))
@unittest.skipIf(platform.system() == "Windows", "heap corruption on windows")
class TestAdd(unittest.TestCase):
def do_test_add(self, d, bbs):

View File

@ -359,7 +359,6 @@ class TestIVFImplem13(TestIVFImplem12):
IMPLEM = 13
@unittest.skipIf(platform.system() == "Windows", "heap corruption on windows")
class TestAdd(unittest.TestCase):
def do_test(self, by_residual=False, metric=faiss.METRIC_L2, d=32, bbs=32):