diff --git a/src/Benchmarks/LinearSolvers/tnl-benchmark-linear-solvers.h b/src/Benchmarks/LinearSolvers/tnl-benchmark-linear-solvers.h index d7152e1d3599968de4b343c2d5bfe82a17a98105..35d63bca6b567ea167b82bd0dd39b201632f52c6 100644 --- a/src/Benchmarks/LinearSolvers/tnl-benchmark-linear-solvers.h +++ b/src/Benchmarks/LinearSolvers/tnl-benchmark-linear-solvers.h @@ -351,7 +351,7 @@ struct LinearSolversBenchmark // load the matrix if( file_matrix.endsWith( ".mtx" ) ) { Matrices::MatrixReader< MatrixType > reader; - reader.readMtxFile( file_matrix, *matrixPointer ); + reader.readMtx( file_matrix, *matrixPointer ); } else { matrixPointer->load( file_matrix ); diff --git a/src/Benchmarks/SpMV/spmv-legacy.h b/src/Benchmarks/SpMV/spmv-legacy.h index eb1ee4ecd29ab365fd3457b25d85c20ded5a778f..7d58d17b5ad190704e9c4a26331365f5b2c4bd60 100644 --- a/src/Benchmarks/SpMV/spmv-legacy.h +++ b/src/Benchmarks/SpMV/spmv-legacy.h @@ -250,7 +250,7 @@ benchmarkSpmvSynthetic( Benchmark& benchmark, //// // Set-up benchmark datasize // - MatrixReader< CSRHostMatrix >::readMtxFile( inputFileName, csrHostMatrix, verboseMR ); + MatrixReader< CSRHostMatrix >::readMtx( inputFileName, csrHostMatrix, verboseMR ); const int elements = csrHostMatrix.getNumberOfNonzeroMatrixElements(); const double datasetSize = (double) elements * ( 2 * sizeof( Real ) + sizeof( int ) ) / oneGB; benchmark.setOperation( datasetSize ); diff --git a/src/TNL/Matrices/MatrixReader.h b/src/TNL/Matrices/MatrixReader.h index 15dee4b8f30fe10ce5e05678c3e1315ae81c16bc..b12f561d77816a2fe39c1912431b89dc27eefff7 100644 --- a/src/TNL/Matrices/MatrixReader.h +++ b/src/TNL/Matrices/MatrixReader.h @@ -45,7 +45,6 @@ class MatrixReader * \brief Type used for indexing of matrix elements. */ using IndexType = typename Matrix::IndexType; - using HostMatrix = typename Matrix::Self< RealType, TNL::Devices::Host >; /** * \brief Method for importing matrix from file with given filename. @@ -60,9 +59,9 @@ class MatrixReader * \include Matrices/MatrixWriterReaderExample.out * */ - static void readMtxFile( const String& fileName, - Matrix& matrix, - bool verbose = false ); + static void readMtx( const String& fileName, + Matrix& matrix, + bool verbose = false ); /** * \brief Method for importing matrix from STL input stream. @@ -71,9 +70,11 @@ class MatrixReader * \param matrix is the target matrix. * \param verbose controls verbosity of the matrix import. */ - static void readMtxFile( std::istream& file, - Matrix& matrix, - bool verbose = false ); + static void readMtx( std::istream& file, + Matrix& matrix, + bool verbose = false ); + + using HostMatrix = typename Matrix::template Self< RealType, TNL::Devices::Host >; }; /// This is to prevent from appearing in Doxygen documentation. @@ -112,9 +113,9 @@ class MatrixReader< Matrix, TNL::Devices::Host > * \include Matrices/MatrixWriterReaderExample.out * */ - static void readMtxFile( const String& fileName, - Matrix& matrix, - bool verbose = false ); + static void readMtx( const String& fileName, + Matrix& matrix, + bool verbose = false ); /** * \brief Method for importing matrix from STL input stream. @@ -123,9 +124,9 @@ class MatrixReader< Matrix, TNL::Devices::Host > * \param matrix is the target matrix. * \param verbose controls verbosity of the matrix import. */ - static void readMtxFile( std::istream& file, - Matrix& matrix, - bool verbose = false ); + static void readMtx( std::istream& file, + Matrix& matrix, + bool verbose = false ); protected: diff --git a/src/TNL/Matrices/MatrixReader.hpp b/src/TNL/Matrices/MatrixReader.hpp index 0cf2ceed0a67af9365a00be42e48c4bfe857de89..30342bbd988a3d44bbd8c298f70c121048265029 100644 --- a/src/TNL/Matrices/MatrixReader.hpp +++ b/src/TNL/Matrices/MatrixReader.hpp @@ -24,28 +24,27 @@ namespace Matrices { template< typename Matrix, typename Device > void MatrixReader< Matrix, Device >:: -readMtxFile( const TNL::String& fileName, - Matrix& matrix, - bool verbose ) +readMtx( const TNL::String& fileName, + Matrix& matrix, + bool verbose ) { HostMatrix hostMatrix; - MatrixReader< HostMatrix >::readMtxFile( fileName, hostMatrix, verbose ); + MatrixReader< HostMatrix >::readMtx( fileName, hostMatrix, verbose ); matrix = hostMatrix; } template< typename Matrix, typename Device > void MatrixReader< Matrix, Device >:: -readMtxFile( std::istream& str, - Matrix& matrix, - bool verbose ) +readMtx( std::istream& str, + Matrix& matrix, + bool verbose ) { HostMatrix hostMatrix; - MatrixReader< HostMatrix >::readMtxFile( str, hostMatrix, verbose ); + MatrixReader< HostMatrix >::readMtx( str, hostMatrix, verbose ); matrix = hostMatrix; } - /** * MatrixReader specialization for TNL::Devices::Host. */ @@ -53,23 +52,23 @@ readMtxFile( std::istream& str, template< typename Matrix > void MatrixReader< Matrix, TNL::Devices::Host >:: -readMtxFile( const String& fileName, - Matrix& matrix, - bool verbose ) +readMtx( const String& fileName, + Matrix& matrix, + bool verbose ) { std::fstream file; file.open( fileName.getString(), std::ios::in ); if( ! file ) throw std::runtime_error( std::string( "I am not able to open the file " ) + fileName.getString() ); - readMtxFile( file, matrix, verbose ); + readMtx( file, matrix, verbose ); } template< typename Matrix > void MatrixReader< Matrix, TNL::Devices::Host >:: -readMtxFile( std::istream& file, - Matrix& matrix, - bool verbose ) +readMtx( std::istream& file, + Matrix& matrix, + bool verbose ) { IndexType rows, columns; bool symmetricSourceMatrix( false ); diff --git a/src/TNL/Matrices/MatrixWriter.h b/src/TNL/Matrices/MatrixWriter.h index 0359eb5bc86c6d8bc68127c1bfcde19698a3a876..a06d20851cd5409439ff9fba2f445326ac1d8167 100644 --- a/src/TNL/Matrices/MatrixWriter.h +++ b/src/TNL/Matrices/MatrixWriter.h @@ -28,30 +28,30 @@ class MatrixWriter using HostMatrix = typename Matrix::Self< RealType, TNL::Devices::Host >; - static void writeToGnuplot( const TNL::String& fileName, - const Matrix& matrix, - bool verbose = false ); + static void writeGnuplot( const TNL::String& fileName, + const Matrix& matrix, + bool verbose = false ); - static void writeToGnuplot( std::ostream& str, - const Matrix& matrix, - bool verbose = false ); + static void writeGnuplot( std::ostream& str, + const Matrix& matrix, + bool verbose = false ); - static void writeToEps( const TNL::String& fileName, - const Matrix& matrix, - bool verbose = false ); + static void writeEps( const TNL::String& fileName, + const Matrix& matrix, + bool verbose = false ); - static void writeToEps( std::ostream& str, - const Matrix& matrix, - bool verbose = false ); + static void writeEps( std::ostream& str, + const Matrix& matrix, + bool verbose = false ); - static void writeToMtx( const TNL::String& fileName, - const Matrix& matrix, - bool verbose = false ); + static void writeMtx( const TNL::String& fileName, + const Matrix& matrix, + bool verbose = false ); - static void writeToMtx( std::ostream& str, - const Matrix& matrix, - bool verbose = false ); + static void writeMtx( std::ostream& str, + const Matrix& matrix, + bool verbose = false ); }; template< typename Matrix > @@ -62,30 +62,30 @@ class MatrixWriter< Matrix, TNL::Devices::Host > typedef typename Matrix::IndexType IndexType; typedef typename Matrix::RealType RealType; - static void writeToGnuplot( const TNL::String& fileName, - const Matrix& matrix, - bool verbose = false ); + static void writeGnuplot( const TNL::String& fileName, + const Matrix& matrix, + bool verbose = false ); - static void writeToGnuplot( std::ostream& str, - const Matrix& matrix, - bool verbose = false ); + static void writeGnuplot( std::ostream& str, + const Matrix& matrix, + bool verbose = false ); - static void writeToEps( const TNL::String& fileName, - const Matrix& matrix, - bool verbose = false ); + static void writeEps( const TNL::String& fileName, + const Matrix& matrix, + bool verbose = false ); - static void writeToEps( std::ostream& str, - const Matrix& matrix, - bool verbose = false ); + static void writeEps( std::ostream& str, + const Matrix& matrix, + bool verbose = false ); - static void writeToMtx( const TNL::String& fileName, - const Matrix& matrix, - bool verbose = false ); + static void writeMtx( const TNL::String& fileName, + const Matrix& matrix, + bool verbose = false ); - static void writeToMtx( std::ostream& str, - const Matrix& matrix, - bool verbose = false ); + static void writeMtx( std::ostream& str, + const Matrix& matrix, + bool verbose = false ); protected: diff --git a/src/TNL/Matrices/MatrixWriter.hpp b/src/TNL/Matrices/MatrixWriter.hpp index 016f6ff3a0b73ebeb13870b5b12195c75b82d98f..97310c19ed071793ed1c274cbb32abb31da4c45e 100644 --- a/src/TNL/Matrices/MatrixWriter.hpp +++ b/src/TNL/Matrices/MatrixWriter.hpp @@ -19,97 +19,96 @@ namespace Matrices { template< typename Matrix, typename Device > void MatrixWriter< Matrix, Device >:: -writeToGnuplot( const TNL::String& fileName, - const Matrix& matrix, - bool verbose ) +writeGnuplot( const TNL::String& fileName, + const Matrix& matrix, + bool verbose ) { HostMatrix hostMatrix; hostMatrix = matrix; - MatrixWriter< HostMatrix >::writeToGnuplot( fileName, hostMatrix, verbose ); + MatrixWriter< HostMatrix >::writeGnuplot( fileName, hostMatrix, verbose ); } template< typename Matrix, typename Device > void MatrixWriter< Matrix, Device >:: -writeToGnuplot( std::ostream& str, - const Matrix& matrix, - bool verbose ) +writeGnuplot( std::ostream& str, + const Matrix& matrix, + bool verbose ) { HostMatrix hostMatrix; hostMatrix = matrix; - MatrixWriter< HostMatrix >::writeToGnuplot( str, hostMatrix, verbose ); + MatrixWriter< HostMatrix >::writeGnuplot( str, hostMatrix, verbose ); } template< typename Matrix, typename Device > void MatrixWriter< Matrix, Device >:: -writeToMtx( const TNL::String& fileName, - const Matrix& matrix, - bool verbose ) +writeMtx( const TNL::String& fileName, + const Matrix& matrix, + bool verbose ) { HostMatrix hostMatrix; hostMatrix = matrix; - MatrixWriter< HostMatrix >::writeToMtx( fileName, hostMatrix, verbose ); + MatrixWriter< HostMatrix >::writeMtx( fileName, hostMatrix, verbose ); } template< typename Matrix, typename Device > void MatrixWriter< Matrix, Device >:: -writeToMtx( std::ostream& str, - const Matrix& matrix, - bool verbose ) +writeMtx( std::ostream& str, + const Matrix& matrix, + bool verbose ) { HostMatrix hostMatrix; hostMatrix = matrix; - MatrixWriter< HostMatrix >::writeToMtx( str, hostMatrix, verbose ); + MatrixWriter< HostMatrix >::writeMtx( str, hostMatrix, verbose ); } template< typename Matrix, typename Device > void MatrixWriter< Matrix, Device >:: -writeToEps( const TNL::String& fileName, - const Matrix& matrix, - bool verbose ) +writeEps( const TNL::String& fileName, + const Matrix& matrix, + bool verbose ) { HostMatrix hostMatrix; hostMatrix = matrix; - MatrixWriter< HostMatrix >::writeToEps( fileName, hostMatrix, verbose ); + MatrixWriter< HostMatrix >::writeEps( fileName, hostMatrix, verbose ); } template< typename Matrix, typename Device > void MatrixWriter< Matrix, Device >:: -writeToEps( std::ostream& str, - const Matrix& matrix, - bool verbose ) +writeEps( std::ostream& str, + const Matrix& matrix, + bool verbose ) { HostMatrix hostMatrix; hostMatrix = matrix; - MatrixWriter< HostMatrix >::writeToEps( str, hostMatrix, verbose ); + MatrixWriter< HostMatrix >::writeEps( str, hostMatrix, verbose ); } /** * MatrixWriter specialization for TNL::Devices::Host. */ - template< typename Matrix > void MatrixWriter< Matrix, TNL::Devices::Host >:: -writeToGnuplot( const TNL::String& fileName, - const Matrix& matrix, - bool verbose ) +writeGnuplot( const TNL::String& fileName, + const Matrix& matrix, + bool verbose ) { std::fstream str; str.open( fileName.getString(), std::ios::out ); - MatrixWriter< Matrix >::writeToGnuplot( str, matrix, verbose ); + MatrixWriter< Matrix >::writeGnuplot( str, matrix, verbose ); } template< typename Matrix > void MatrixWriter< Matrix, TNL::Devices::Host >:: -writeToGnuplot( std::ostream& str, - const Matrix& matrix, - bool verbose ) +writeGnuplot( std::ostream& str, + const Matrix& matrix, + bool verbose ) { str << "# This file was generated by TNL (www.tnl-project.org)" << std::endl; for( IndexType row = 0; row < matrix.getRows(); row ++ ) @@ -130,21 +129,21 @@ writeToGnuplot( std::ostream& str, template< typename Matrix > void MatrixWriter< Matrix, TNL::Devices::Host >:: -writeToMtx( const TNL::String& fileName, - const Matrix& matrix, - bool verbose ) +writeMtx( const TNL::String& fileName, + const Matrix& matrix, + bool verbose ) { std::fstream str; str.open( fileName.getString(), std::ios::out ); - MatrixWriter< Matrix >::writeToMtx( str, matrix, verbose ); + MatrixWriter< Matrix >::writeMtx( str, matrix, verbose ); } template< typename Matrix > void MatrixWriter< Matrix, TNL::Devices::Host >:: -writeToMtx( std::ostream& str, - const Matrix& matrix, - bool verbose ) +writeMtx( std::ostream& str, + const Matrix& matrix, + bool verbose ) { str << "%%MatrixMarket matrix coordinate real general" << std::endl; str << "%%" << std::endl; @@ -161,25 +160,25 @@ writeToMtx( std::ostream& str, *cout_ptr << "Drawing the row " << rowIdx << " \r" << std::flush; } }; - matrix.forAllRows( f ); + matrix.sequentialForAllRows( f ); } template< typename Matrix > void MatrixWriter< Matrix, TNL::Devices::Host >:: -writeToEps( const TNL::String& fileName, +writeEps( const TNL::String& fileName, const Matrix& matrix, bool verbose ) { std::fstream str; str.open( fileName.getString(), std::ios::out ); - MatrixWriter< Matrix >::writeToEps( str, matrix, verbose ); + MatrixWriter< Matrix >::writeEps( str, matrix, verbose ); } template< typename Matrix > void MatrixWriter< Matrix, TNL::Devices::Host >:: -writeToEps( std::ostream& str, +writeEps( std::ostream& str, const Matrix& matrix, bool verbose ) {