From 085c3a9b164f8d246f99c7f9c4e728f1c8362266 Mon Sep 17 00:00:00 2001 From: Tobias Meyer Andersen Date: Mon, 8 Jul 2024 11:35:26 +0200 Subject: [PATCH] add new constructor arguments in test instantiations --- tests/cuistl/test_cudilu.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cuistl/test_cudilu.cpp b/tests/cuistl/test_cudilu.cpp index d18fdaf66..067dce4a0 100644 --- a/tests/cuistl/test_cudilu.cpp +++ b/tests/cuistl/test_cudilu.cpp @@ -211,7 +211,7 @@ BOOST_AUTO_TEST_CASE(TestDiluApply) // Initialize preconditioner objects Dune::MultithreadDILU cpudilu(matA); - auto gpudilu = CuDilu1x1(matA); + auto gpudilu = CuDilu1x1(matA, true, true); // Use the apply gpudilu.apply(d_output, d_input); @@ -235,7 +235,7 @@ BOOST_AUTO_TEST_CASE(TestDiluApplyBlocked) // init matrix with 2x2 blocks Sp2x2BlockMatrix matA = get2x2BlockTestMatrix(); - auto gpudilu = CuDilu2x2(matA); + auto gpudilu = CuDilu2x2(matA, true, true); Dune::MultithreadDILU cpudilu(matA); // create input/output buffers for the apply @@ -275,7 +275,7 @@ BOOST_AUTO_TEST_CASE(TestDiluInitAndUpdateLarge) { // create gpu dilu preconditioner Sp1x1BlockMatrix matA = get1x1BlockTestMatrix(); - auto gpudilu = CuDilu1x1(matA); + auto gpudilu = CuDilu1x1(matA, true, true); matA[0][0][0][0] = 11.0; matA[0][1][0][0] = 12.0;