aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/vectorization_logic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/vectorization_logic.cpp')
-rw-r--r--test/vectorization_logic.cpp9
1 files 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<typename internal::find_best_packet<Scalar, PacketSize*2-1>::type, HalfPacketType>::value
- //));
+ STATIC_CHECK((
+ !(PacketSize > 2) ||
+ internal::is_same<typename internal::find_best_packet<Scalar, PacketSize*2-1>::type, HalfPacketType>::value
+ ));
}
};