Skip to content

Commit

Permalink
Minor fixes of reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
yanjen committed Feb 13, 2023
1 parent ca9c185 commit 5acf67f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions benchmark/solver/solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ DEFINE_uint32(
"The number of right hand sides. Record the residual only when nrhs == 1.");

DEFINE_uint32(gcr_restart, 100,
"What maximum dimension of the Krylov space to use in GCR");
"Maximum dimension of the Krylov space to use in GCR");

DEFINE_uint32(gmres_restart, 100,
"What maximum dimension of the Krylov space to use in GMRES");
"Maximum dimension of the Krylov space to use in GMRES");

DEFINE_uint32(idr_subspace_dim, 2,
"What dimension of the subspace to use in IDR");
Expand Down
2 changes: 1 addition & 1 deletion common/unified/solver/gcr_kernels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void initialize(std::shared_ptr<const DefaultExecutor> exec,
residual(row, col) = b(row, col);
},
// Note: default_stride only applied to objects created using
// creat_with_config_of as this guarantees identical stride.
// create_with_config_of as this guarantees identical stride.
b->get_size(), b->get_stride(), b, residual, stop_status);
}

Expand Down

0 comments on commit 5acf67f

Please sign in to comment.