From 644d0f91d2c1ecb3ed8c64c241f1ce6429ed1ca0 Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Tue, 5 Apr 2016 05:59:54 -0400 Subject: [PATCH] enable all tests again --- test/packetmath.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/packetmath.cpp b/test/packetmath.cpp index 7309a85f8..37da6c86f 100644 --- a/test/packetmath.cpp +++ b/test/packetmath.cpp @@ -471,7 +471,7 @@ template void packetmath_notcomplex() internal::pstore(data2, internal::plset(data1[0])); VERIFY(areApprox(ref, data2, PacketSize) && "internal::plset"); } -/* + template void test_conj_helper(Scalar* data1, Scalar* data2, Scalar* ref, Scalar* pval) { typedef internal::packet_traits PacketTraits; @@ -530,7 +530,7 @@ template void packetmath_complex() internal::pstore(pval,internal::pcplxflip(internal::pload(data1))); VERIFY(areApprox(ref, pval, PacketSize) && "pcplxflip"); } -}*/ +} template void packetmath_scatter_gather() { @@ -575,23 +575,23 @@ void test_packetmath() CALL_SUBTEST_1( packetmath() ); CALL_SUBTEST_2( packetmath() ); CALL_SUBTEST_3( packetmath() ); -/* CALL_SUBTEST_4( packetmath >() ); - CALL_SUBTEST_5( packetmath >() );*/ + CALL_SUBTEST_4( packetmath >() ); + CALL_SUBTEST_5( packetmath >() ); CALL_SUBTEST_1( packetmath_notcomplex() ); CALL_SUBTEST_2( packetmath_notcomplex() ); CALL_SUBTEST_3( packetmath_notcomplex() ); -/* CALL_SUBTEST_1( packetmath_real() ); - CALL_SUBTEST_2( packetmath_real() );*/ + CALL_SUBTEST_1( packetmath_real() ); + CALL_SUBTEST_2( packetmath_real() ); -/* CALL_SUBTEST_4( packetmath_complex >() ); - CALL_SUBTEST_5( packetmath_complex >() );*/ + CALL_SUBTEST_4( packetmath_complex >() ); + CALL_SUBTEST_5( packetmath_complex >() ); CALL_SUBTEST_1( packetmath_scatter_gather() ); CALL_SUBTEST_2( packetmath_scatter_gather() ); CALL_SUBTEST_3( packetmath_scatter_gather() ); -/* CALL_SUBTEST_4( packetmath_scatter_gather >() ); - CALL_SUBTEST_5( packetmath_scatter_gather >() );*/ + CALL_SUBTEST_4( packetmath_scatter_gather >() ); + CALL_SUBTEST_5( packetmath_scatter_gather >() ); } }