From 3e49252a9fe391e754da0ead8a5211572a99ba3e Mon Sep 17 00:00:00 2001 From: "Yu-Hsiang M. Tsai" Date: Wed, 23 Oct 2024 13:36:27 +0200 Subject: [PATCH] direct without half --- test/solver/direct.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/solver/direct.cpp b/test/solver/direct.cpp index 431a7c40d59..e71046d0312 100644 --- a/test/solver/direct.cpp +++ b/test/solver/direct.cpp @@ -104,12 +104,13 @@ using Types = gko::test::ValueIndexTypes; #elif defined(GKO_COMPILING_CUDA) // CUDA don't support long indices for sorting, and the triangular solvers // seem broken -using Types = gko::test::cartesian_type_product_t>; #else // HIP only supports real types and int32 -using Types = gko::test::cartesian_type_product_t>; +using Types = + gko::test::cartesian_type_product_t>; #endif TYPED_TEST_SUITE(Direct, Types, PairTypenameNameGenerator);