-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extract the split residual update and update test
Co-authored-by: Marcel Koch <[email protected]>
- Loading branch information
1 parent
b745765
commit c88ea63
Showing
5 changed files
with
136 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/*******************************<GINKGO LICENSE>****************************** | ||
Copyright (c) 2017-2023, the Ginkgo authors | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS | ||
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | ||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
******************************<GINKGO LICENSE>*******************************/ | ||
|
||
#ifndef GKO_CORE_SOLVER_RESIDUAL_UPDATE_HPP_ | ||
#define GKO_CORE_SOLVER_RESIDUAL_UPDATE_HPP_ | ||
|
||
|
||
#include <ginkgo/core/base/array.hpp> | ||
#include <ginkgo/core/matrix/dense.hpp> | ||
#include <ginkgo/core/stop/criterion.hpp> | ||
|
||
|
||
namespace gko { | ||
namespace solver { | ||
|
||
|
||
template <typename SolverType, typename VectorType, typename ScalarType, | ||
typename LogFunc> | ||
bool residual_update(SolverType* solver, int iter, const ScalarType* one_op, | ||
const ScalarType* neg_one_op, const VectorType* dense_b, | ||
VectorType* dense_x, VectorType* residual, | ||
const VectorType*& residual_ptr, | ||
std::unique_ptr<gko::stop::Criterion>& stop_criterion, | ||
uint8 relative_stopping_id, | ||
array<stopping_status>& stop_status, bool& one_changed, | ||
LogFunc log) | ||
{ | ||
if (iter == 0) { | ||
// In iter 0, the iteration and residual are updated. | ||
bool all_stopped = | ||
stop_criterion->update() | ||
.num_iterations(iter) | ||
.residual(residual_ptr) | ||
.solution(dense_x) | ||
.check(relative_stopping_id, true, &stop_status, &one_changed); | ||
log(solver, dense_b, dense_x, iter, residual_ptr, stop_status, | ||
all_stopped); | ||
return all_stopped; | ||
} else { | ||
// In the other iterations, the residual can be updated separately. | ||
bool all_stopped = | ||
stop_criterion->update() | ||
.num_iterations(iter) | ||
.solution(dense_x) | ||
// we have the residual check later | ||
.ignore_residual_check(true) | ||
.check(relative_stopping_id, false, &stop_status, &one_changed); | ||
if (all_stopped) { | ||
log(solver, dense_b, dense_x, iter, nullptr, stop_status, | ||
all_stopped); | ||
return all_stopped; | ||
} | ||
residual_ptr = residual; | ||
// residual = b - A * x | ||
residual->copy_from(dense_b); | ||
solver->get_system_matrix()->apply(neg_one_op, dense_x, one_op, | ||
residual); | ||
all_stopped = | ||
stop_criterion->update() | ||
.num_iterations(iter) | ||
.residual(residual_ptr) | ||
.solution(dense_x) | ||
.check(relative_stopping_id, true, &stop_status, &one_changed); | ||
log(solver, dense_b, dense_x, iter, residual_ptr, stop_status, | ||
all_stopped); | ||
return all_stopped; | ||
} | ||
} | ||
|
||
|
||
} // namespace solver | ||
} // namespace gko | ||
|
||
#endif // GKO_CORE_SOLVER_RESIDUAL_UPDATE_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters