From 87cfa4862fe49d7bf88519ad7cd6296a4ffb75fd Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen Date: Tue, 25 Feb 2020 01:04:56 +0000 Subject: [PATCH] Revert "Disable test in test/vectorization_logic.cpp, which is currently failing with AVX." This reverts commit b625adffd877639ff5cbe51ea154e1905a3b405c --- test/vectorization_logic.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/vectorization_logic.cpp b/test/vectorization_logic.cpp index d7e9e6450..ad1954d53 100644 --- a/test/vectorization_logic.cpp +++ b/test/vectorization_logic.cpp @@ -292,11 +292,10 @@ struct vectorization_logic )); // In situations where the picking the full-packet would be detrimental the half-packet // is chosen. - // TODO(rmlarsen): Enable when AVX works as intended. - //STATIC_CHECK(( - // !(PacketSize > 2) || - // internal::is_same::type, HalfPacketType>::value - //)); + STATIC_CHECK(( + !(PacketSize > 2) || + internal::is_same::type, HalfPacketType>::value + )); } };