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

All tests passed for SparseMatrix using Segments.

parent bc152d3f
No related branches found
No related tags found
1 merge request!48Segments
......@@ -79,8 +79,11 @@ class CSR
void segmentsReduction( IndexType first, IndexType last, Fetch& fetch, Reduction& reduction, ResultKeeper& keeper, const Real& zero, Args... args ) const;
template< typename Fetch, typename Reduction, typename ResultKeeper, typename Real, typename... Args >
void allReduction( Fetch& fetch, Reduction& reduction, ResultKeeper& keeper, const Real& zero, Args... args );
void allReduction( Fetch& fetch, Reduction& reduction, ResultKeeper& keeper, const Real& zero, Args... args ) const;
void save( File& file ) const;
void load( File& file );
protected:
......
......@@ -181,10 +181,29 @@ template< typename Device,
template< typename Fetch, typename Reduction, typename ResultKeeper, typename Real, typename... Args >
void
CSR< Device, Index >::
allReduction( Fetch& fetch, Reduction& reduction, ResultKeeper& keeper, const Real& zero, Args... args )
allReduction( Fetch& fetch, Reduction& reduction, ResultKeeper& keeper, const Real& zero, Args... args ) const
{
this->segmentsReduction( 0, this->getSize(), fetch, reduction, keeper, zero, args... );
}
template< typename Device,
typename Index >
void
CSR< Device, Index >::
save( File& file ) const
{
file << this->offsets;
}
template< typename Device,
typename Index >
void
CSR< Device, Index >::
load( File& file )
{
file >> this->offsets;
}
} // namespace Segements
} // namespace Conatiners
} // namespace TNL
......@@ -597,7 +597,9 @@ void
SparseMatrix< Real, Segments, Device, Index, RealAllocator, IndexAllocator >::
save( File& file ) const
{
Matrix< RealType, DeviceType, IndexType >::save( file );
file << this->columnIndexes;
this->segments.save( file );
}
template< typename Real,
......@@ -610,7 +612,9 @@ void
SparseMatrix< Real, Segments, Device, Index, RealAllocator, IndexAllocator >::
load( File& file )
{
Matrix< RealType, DeviceType, IndexType >::load( file );
file >> this->columnIndexes;
this->segments.load( file );
}
template< typename Real,
......@@ -623,7 +627,7 @@ void
SparseMatrix< Real, Segments, Device, Index, RealAllocator, IndexAllocator >::
save( const String& fileName ) const
{
Object::save( fileName );
}
template< typename Real,
......@@ -636,7 +640,7 @@ void
SparseMatrix< Real, Segments, Device, Index, RealAllocator, IndexAllocator >::
load( const String& fileName )
{
Object::load( fileName );
}
template< typename Real,
......@@ -649,7 +653,20 @@ void
SparseMatrix< Real, Segments, Device, Index, RealAllocator, IndexAllocator >::
print( std::ostream& str ) const
{
for( IndexType row = 0; row < this->getRows(); row++ )
{
str <<"Row: " << row << " -> ";
const IndexType rowLength = this->segments.getSegmentSize( row );
for( IndexType i = 0; i < rowLength; i++ )
{
const IndexType globalIdx = this->segments.getGlobalIndex( row, i );
const IndexType column = this->columnIndexes.getElement( globalIdx );
if( column == this->getPaddingIndex() )
break;
str << " Col:" << column << "->" << this->values.getElement( globalIdx ) << "\t";
}
str << std::endl;
}
}
template< typename Real,
......
......@@ -122,11 +122,11 @@ TYPED_TEST( CSRMatrixTest, vectorProductTest )
test_VectorProduct< CSRMatrixType >();
}
/*TYPED_TEST( CSRMatrixTest, saveAndLoadTest )
TYPED_TEST( CSRMatrixTest, saveAndLoadTest )
{
using CSRMatrixType = typename TestFixture::CSRMatrixType;
test_SaveAndLoad< CSRMatrixType >( "test_SparseMatrixTest_CSR" );
test_SaveAndLoad< CSRMatrixType >( "test_SparseMatrixTest_CSR_segments" );
}
TYPED_TEST( CSRMatrixTest, printTest )
......@@ -134,7 +134,7 @@ TYPED_TEST( CSRMatrixTest, printTest )
using CSRMatrixType = typename TestFixture::CSRMatrixType;
test_Print< CSRMatrixType >();
}*/
}
#endif
......
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