Commit 3190b11c authored by Tomáš Oberhuber's avatar Tomáš Oberhuber Committed by Jakub Klinkovský
Browse files

Fixing EllpackView::getView method.

parent 117283d0
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -137,7 +137,6 @@ template< typename Device,
          int Alignment >
std::ostream& operator<<( std::ostream& str, const EllpackView< Device, Index, Organization, Alignment >& ellpack ) { return printSegments( str, ellpack ); }


      } // namespace Segments
   }  // namespace Algorithms
} // namespace TNL
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ typename EllpackView< Device, Index, Organization, Alignment >::ViewType
EllpackView< Device, Index, Organization, Alignment >::
getView()
{
   return ViewType( segmentSize, segmentsCount, alignedSize );
   return ViewType( segmentsCount, segmentSize, alignedSize );
}

template< typename Device,