Skip to content

Commit

Permalink
update to failing test on develop, review updates
Browse files Browse the repository at this point in the history
Co-authored-by: Yu-Hsiang Tsai <[email protected]>
  • Loading branch information
pratikvn and yhmtsai committed May 15, 2024
1 parent c1a67fc commit 99990ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions core/base/workspace_aliases.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
// (https://github.com/NVIDIA/cccl) (cub/detail/temporary_storage.cuh and
// cub/temporary_storage.cuh), made available through the Apache-2.0 and BSD-3
// licenses. See ABOUT-LICENSING.md for more details.
// The main changes: the namespaces, the object/class
// names and some simplifications that adhere to Ginkgo's code conventions


namespace gko {
Expand Down
2 changes: 1 addition & 1 deletion reference/test/solver/batch_bicgstab_kernels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ TYPED_TEST(BatchBicgstab, CanSolveEllSystem)
.with_tolerance_type(gko::batch::stop::tolerance_type::relative)
.on(this->exec);
const int num_rows = 13;
const size_t num_batch_items = 1;
const size_t num_batch_items = 2;
const int num_rhs = 1;
auto stencil_mat =
gko::share(gko::test::generate_3pt_stencil_batch_matrix<const Mtx>(
Expand Down
2 changes: 1 addition & 1 deletion test/solver/batch_bicgstab_kernels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ TEST_F(BatchBicgstab, CanSolveLargeBatchSizeHpdSystem)

TEST_F(BatchBicgstab, CanSolveLargeMatrixSizeHpdSystem)
{
const int num_batch_items = 12;
const int num_batch_items = 11;
const int num_rows = 1025;
const int num_rhs = 1;
const real_type tol = 1e-5;
Expand Down

0 comments on commit 99990ce

Please sign in to comment.