diff --git a/src/TNL/Matrices/ChunkedEllpack_impl.h b/src/TNL/Matrices/ChunkedEllpack_impl.h index 2a55a761b090879b513c3d1728b956fe4a43dd4e..878c7c2734b5bac80dd1db6b304906e7cd88c5d5 100644 --- a/src/TNL/Matrices/ChunkedEllpack_impl.h +++ b/src/TNL/Matrices/ChunkedEllpack_impl.h @@ -217,13 +217,6 @@ void ChunkedEllpack< Real, Device, Index >::setCompressedRowLengths( ConstCompre this->setSlice( rowLengths, sliceIndex, elementsToAllocation ); this->rowPointers.scan(); } - -// std::cout << "\ngetRowLength after first if: " << std::endl; -// for( IndexType i = 0; i < rowLengths.getSize(); i++ ) -// { -// std::cout << getRowLength( i ) << std::endl; -// } -// std::cout << "\n"; if( std::is_same< Device, Devices::Cuda >::value ) { @@ -248,7 +241,6 @@ void ChunkedEllpack< Real, Device, Index >::setCompressedRowLengths( ConstCompre elementsToAllocation = hostMatrix.values.getSize(); } this->maxRowLength = max( rowLengths ); -// std::cout << "\nrowLengths.max() = " << rowLengths.max() << std::endl; Sparse< Real, Device, Index >::allocateMatrixElements( elementsToAllocation ); }