Skip to content
Snippets Groups Projects
Commit 684f3639 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[bugfix] Disable certain combinations of Vc::SimdArray

A static cast in vc deriberately says, that the third
and forth template parameter must not be set manually.
Hence this patch disables the tests where this is done.
parent 01f1310f
No related branches found
No related tags found
1 merge request!596Make multirhstest compile and run
Pipeline #75158 passed
......@@ -47,9 +47,9 @@ int main (int argc, char ** argv)
test_all<Vc::double_v>();
test_all<Vc::Vector<double, Vc::VectorAbi::Scalar>>();
test_all<Vc::SimdArray<double,2>>();
test_all<Vc::SimdArray<double,2,Vc::Vector<double, Vc::VectorAbi::Scalar>,1>>();
// test_all<Vc::SimdArray<double,2,Vc::Vector<double, Vc::VectorAbi::Scalar>,1>>();
test_all<Vc::SimdArray<double,8>>();
test_all<Vc::SimdArray<double,8,Vc::Vector<double, Vc::VectorAbi::Scalar>,1>>();
// test_all<Vc::SimdArray<double,8,Vc::Vector<double, Vc::VectorAbi::Scalar>,1>>();
#endif
test_all<double>(8);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment