Skip to content

Commit

Permalink
direct without half
Browse files Browse the repository at this point in the history
  • Loading branch information
yhmtsai committed Oct 23, 2024
1 parent e806a0a commit 3e49252
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/solver/direct.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<gko::test::ValueTypes,
using Types = gko::test::cartesian_type_product_t<gko::test::ValueTypesNoHalf,
::testing::Types<gko::int32>>;
#else
// HIP only supports real types and int32
using Types = gko::test::cartesian_type_product_t<gko::test::RealValueTypes,
::testing::Types<gko::int32>>;
using Types =
gko::test::cartesian_type_product_t<gko::test::RealValueTypesNoHalf,
::testing::Types<gko::int32>>;
#endif

TYPED_TEST_SUITE(Direct, Types, PairTypenameNameGenerator);
Expand Down

0 comments on commit 3e49252

Please sign in to comment.