From 684f36396cac70a7a680f603a6e7a7525777941d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Carsten=20Gr=C3=A4ser?= <graeser@dune-project.org>
Date: Wed, 20 Nov 2024 17:27:31 +0100
Subject: [PATCH] [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.
---
 dune/istl/test/multirhstest.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dune/istl/test/multirhstest.cc b/dune/istl/test/multirhstest.cc
index 67c9c1f59..b51fb652e 100644
--- a/dune/istl/test/multirhstest.cc
+++ b/dune/istl/test/multirhstest.cc
@@ -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);
-- 
GitLab