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

Fix of comparison warning in TNL_ASSERT.

parent 8c26f8c9
No related branches found
No related tags found
1 merge request!89To/matrices adaptive csr
...@@ -510,7 +510,7 @@ rowsReduction( IndexType begin, IndexType end, Fetch& fetch, const Reduce& reduc ...@@ -510,7 +510,7 @@ rowsReduction( IndexType begin, IndexType end, Fetch& fetch, const Reduce& reduc
const auto values_view = this->values.getConstView(); const auto values_view = this->values.getConstView();
const IndexType paddingIndex_ = this->getPaddingIndex(); const IndexType paddingIndex_ = this->getPaddingIndex();
auto fetch_ = [=] __cuda_callable__ ( IndexType rowIdx, IndexType localIdx, IndexType globalIdx, bool& compute ) mutable -> decltype( fetch( IndexType(), IndexType(), RealType() ) ) { auto fetch_ = [=] __cuda_callable__ ( IndexType rowIdx, IndexType localIdx, IndexType globalIdx, bool& compute ) mutable -> decltype( fetch( IndexType(), IndexType(), RealType() ) ) {
TNL_ASSERT_LT( globalIdx, columns_view.getSize(), "" ); TNL_ASSERT_LT( globalIdx, ( IndexType ) columns_view.getSize(), "" );
IndexType columnIdx = columns_view[ globalIdx ]; IndexType columnIdx = columns_view[ globalIdx ];
if( columnIdx != paddingIndex_ ) if( columnIdx != paddingIndex_ )
{ {
......
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