Skip to content

Commit

Permalink
fix num_rhs documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
upsj committed Nov 5, 2022
1 parent 3cbae24 commit b613bc0
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions include/ginkgo/core/solver/triangular.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,8 @@ class LowerTrs : public EnableLinOp<LowerTrs<ValueType, IndexType>>,
/**
* Number of right hand sides.
*
* @note This value is currently a dummy value which is not used by the
* analysis step. It is possible that future algorithms (cusparse
* csrsm2) make use of the number of right hand sides for a more
* sophisticated implementation. Hence this parameter is left
* here. But currently, there is no need to use it.
* @note This value is currently only required for the CUDA
* trisolve_algorithm::sparselib algorithm.
*/
gko::size_type GKO_FACTORY_PARAMETER_SCALAR(num_rhs, 1u);

Expand Down Expand Up @@ -264,11 +261,8 @@ class UpperTrs : public EnableLinOp<UpperTrs<ValueType, IndexType>>,
/**
* Number of right hand sides.
*
* @note This value is currently a dummy value which is not used by the
* analysis step. It is possible that future algorithms (cusparse
* csrsm2) make use of the number of right hand sides for a more
* sophisticated implementation. Hence this parameter is left
* here. But currently, there is no need to use it.
* @note This value is currently only required for the CUDA
* trisolve_algorithm::sparselib algorithm.
*/
gko::size_type GKO_FACTORY_PARAMETER_SCALAR(num_rhs, 1u);

Expand Down

0 comments on commit b613bc0

Please sign in to comment.