Skip to content

Commit

Permalink
fix some distributed documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelKoch committed Mar 29, 2022
1 parent fabd596 commit b1ee7d2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/ginkgo/core/base/mpi.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


namespace gko {
/**
* @brief The mpi namespace, contains wrapper for many MPI functions.
*
* @ingroup mpi
* @ingroup distributed
*/
namespace mpi {


Expand Down
6 changes: 6 additions & 0 deletions include/ginkgo/core/distributed/partition.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


namespace gko {
/**
* @brief The distributed namespace.
*
* @ingroup distributed
*/
namespace distributed {


Expand Down Expand Up @@ -87,6 +92,7 @@ namespace distributed {
* for(int i = 0; i < r[3] - r[2]; ++i){
* data[starting_index[2] + i] = val;
* }
* ```
*
* @tparam LocalIndexType The index type used for part-local indices.
* To prevent overflows, no single part's size may
Expand Down
2 changes: 2 additions & 0 deletions include/ginkgo/core/distributed/vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ class Partition;
*
* @ingroup dist_vector
* @ingroup distributed
* @ingroup mat_formats
* @ingroup LinOp
*/
template <typename ValueType = double>
class Vector
Expand Down

0 comments on commit b1ee7d2

Please sign in to comment.