Implemented the SSE version of the gather and scatter packet primitives.

This commit is contained in:
Benoit Steiner
2014-03-27 18:29:01 -07:00
parent 7f3162f707
commit 8a94cb3edd
4 changed files with 53 additions and 1 deletions

View File

@@ -411,6 +411,7 @@ void test_packetmath()
CALL_SUBTEST_1( packetmath_scatter_gather<float>() );
CALL_SUBTEST_2( packetmath_scatter_gather<double>() );
CALL_SUBTEST_3( packetmath_scatter_gather<int>() );
CALL_SUBTEST_3( packetmath_scatter_gather<std::complex<float> >() );
CALL_SUBTEST_3( packetmath_scatter_gather<std::complex<double> >() );
}