Skip to content
Snippets Groups Projects
Commit 93c68aef authored by Tomáš Oberhuber's avatar Tomáš Oberhuber Committed by Tomáš Oberhuber
Browse files

Added error messages to matrix reader.

parent 21bd25d4
No related branches found
No related tags found
1 merge request!48Segments
...@@ -55,7 +55,10 @@ bool MatrixReader< Matrix >::readMtxFileHostMatrix( std::istream& file, ...@@ -55,7 +55,10 @@ bool MatrixReader< Matrix >::readMtxFileHostMatrix( std::istream& file,
bool symmetricMatrix( false ); bool symmetricMatrix( false );
if( ! readMtxHeader( file, rows, columns, symmetricMatrix, verbose ) ) if( ! readMtxHeader( file, rows, columns, symmetricMatrix, verbose ) )
{
std::cerr << "Unable to read MTX file header." << std::endl;
return false; return false;
}
if( symReader && !symmetricMatrix ) if( symReader && !symmetricMatrix )
{ {
...@@ -67,12 +70,18 @@ bool MatrixReader< Matrix >::readMtxFileHostMatrix( std::istream& file, ...@@ -67,12 +70,18 @@ bool MatrixReader< Matrix >::readMtxFileHostMatrix( std::istream& file,
rowLengths.setSize( rows ); rowLengths.setSize( rows );
if( ! computeCompressedRowLengthsFromMtxFile( file, rowLengths, columns, rows, symmetricMatrix, verbose ) ) if( ! computeCompressedRowLengthsFromMtxFile( file, rowLengths, columns, rows, symmetricMatrix, verbose ) )
{
std::cerr << "Unable to compute compressed row lengths." << std::endl;
return false; return false;
}
matrix.setCompressedRowLengths( rowLengths ); matrix.setCompressedRowLengths( rowLengths );
if( ! readMatrixElementsFromMtxFile( file, matrix, symmetricMatrix, verbose, symReader ) ) if( ! readMatrixElementsFromMtxFile( file, matrix, symmetricMatrix, verbose, symReader ) )
{
std::cerr << "Unable to read matrix elements from MTX file," << std::endl;
return false; return false;
}
return true; return true;
} }
...@@ -84,7 +93,10 @@ bool MatrixReader< Matrix >::verifyMtxFile( std::istream& file, ...@@ -84,7 +93,10 @@ bool MatrixReader< Matrix >::verifyMtxFile( std::istream& file,
bool symmetricMatrix( false ); bool symmetricMatrix( false );
IndexType rows, columns; IndexType rows, columns;
if( ! readMtxHeader( file, rows, columns, symmetricMatrix, false ) ) if( ! readMtxHeader( file, rows, columns, symmetricMatrix, false ) )
{
std::cerr << "Unable to read MTX file header." << std::endl;
return false; return false;
}
file.clear(); file.clear();
file.seekg( 0, std::ios::beg ); file.seekg( 0, std::ios::beg );
String line; String line;
...@@ -103,7 +115,10 @@ bool MatrixReader< Matrix >::verifyMtxFile( std::istream& file, ...@@ -103,7 +115,10 @@ bool MatrixReader< Matrix >::verifyMtxFile( std::istream& file,
IndexType row( 1 ), column( 1 ); IndexType row( 1 ), column( 1 );
RealType value; RealType value;
if( ! parseMtxLineWithElement( line, row, column, value ) ) if( ! parseMtxLineWithElement( line, row, column, value ) )
{
std::cerr << "Unable to parse MTX file line." << std::endl;
return false; return false;
}
if( value != matrix.getElement( row-1, column-1 ) || if( value != matrix.getElement( row-1, column-1 ) ||
( symmetricMatrix && value != matrix.getElement( column-1, row-1 ) ) ) ( symmetricMatrix && value != matrix.getElement( column-1, row-1 ) ) )
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment