Ginkgo  Generated from pipelines/1478841010 branch based on develop. Ginkgo version 1.9.0
A numerical linear algebra library targeting many-core architectures
Public Member Functions | List of all members
gko::DimensionMismatch Class Reference

DimensionMismatch is thrown if an operation is being applied to LinOps of incompatible size. More...

#include <ginkgo/core/base/exception.hpp>

Inheritance diagram for gko::DimensionMismatch:
[legend]
Collaboration diagram for gko::DimensionMismatch:
[legend]

Public Member Functions

 DimensionMismatch (const std::string &file, int line, const std::string &func, const std::string &first_name, size_type first_rows, size_type first_cols, const std::string &second_name, size_type second_rows, size_type second_cols, const std::string &clarification)
 Initializes a dimension mismatch error. More...
 
- Public Member Functions inherited from gko::Error
 Error (const std::string &file, int line, const std::string &what)
 Initializes an error. More...
 
virtual const char * what () const noexcept override
 Returns a human-readable string with a more detailed description of the error.
 

Detailed Description

DimensionMismatch is thrown if an operation is being applied to LinOps of incompatible size.

Constructor & Destructor Documentation

◆ DimensionMismatch()

gko::DimensionMismatch::DimensionMismatch ( const std::string &  file,
int  line,
const std::string &  func,
const std::string &  first_name,
size_type  first_rows,
size_type  first_cols,
const std::string &  second_name,
size_type  second_rows,
size_type  second_cols,
const std::string &  clarification 
)
inline

Initializes a dimension mismatch error.

Parameters
fileThe name of the offending source file
lineThe source code line number where the error occurred
funcThe function name where the error occurred
first_nameThe name of the first operator
first_rowsThe output dimension of the first operator
first_colsThe input dimension of the first operator
second_nameThe name of the second operator
second_rowsThe output dimension of the second operator
second_colsThe input dimension of the second operator
clarificationAn additional message describing the error further

The documentation for this class was generated from the following file: