Loading src/TNL/Matrices/SparseMatrix.h +8 −4 Original line number Diff line number Diff line Loading @@ -793,7 +793,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator > /** * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end). * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrix::forElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -818,7 +819,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator > /** * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end) for constant instances. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrix::forElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -843,7 +845,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator > /** * \brief Method for parallel iteration over all matrix rows. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrix::forAllElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -866,7 +869,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator > /** * \brief Method for parallel iteration over all matrix rows for constant instances. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrix::forAllElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading src/TNL/Matrices/SparseMatrixView.h +9 −4 Original line number Diff line number Diff line Loading @@ -573,7 +573,9 @@ class SparseMatrixView : public MatrixView< Real, Device, Index > /** * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end). * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrixView::forElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -598,7 +600,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index > /** * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end) for constant instances. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrixView::forElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -623,7 +626,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index > /** * \brief Method for parallel iteration over all matrix rows. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrixView::forAllElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -646,7 +650,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index > /** * \brief Method for parallel iteration over all matrix rows for constant instances. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrixView::forAllElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading Loading
src/TNL/Matrices/SparseMatrix.h +8 −4 Original line number Diff line number Diff line Loading @@ -793,7 +793,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator > /** * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end). * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrix::forElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -818,7 +819,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator > /** * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end) for constant instances. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrix::forElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -843,7 +845,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator > /** * \brief Method for parallel iteration over all matrix rows. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrix::forAllElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -866,7 +869,8 @@ class SparseMatrix : public Matrix< Real, Device, Index, RealAllocator > /** * \brief Method for parallel iteration over all matrix rows for constant instances. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrix::forAllElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading
src/TNL/Matrices/SparseMatrixView.h +9 −4 Original line number Diff line number Diff line Loading @@ -573,7 +573,9 @@ class SparseMatrixView : public MatrixView< Real, Device, Index > /** * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end). * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrixView::forElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -598,7 +600,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index > /** * \brief Method for parallel iteration over matrix rows from interval [ \e begin, \e end) for constant instances. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrixView::forElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -623,7 +626,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index > /** * \brief Method for parallel iteration over all matrix rows. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrixView::forAllElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading @@ -646,7 +650,8 @@ class SparseMatrixView : public MatrixView< Real, Device, Index > /** * \brief Method for parallel iteration over all matrix rows for constant instances. * * In each row, given lambda function is performed. * In each row, given lambda function is performed. Each row is processed by at most one thread unlike the method * \ref SparseMatrixView::forAllElements where more than one thread can be mapped to each row. * * \tparam Function is type of the lambda function. * Loading