Commit 318c3fa7 authored by Lukas Cejka's avatar Lukas Cejka Committed by Tomáš Oberhuber
Browse files

Fixed indentation in VectorProduct.

parent fa25aed3
Loading
Loading
Loading
Loading
+22 −21
Original line number Diff line number Diff line
@@ -1173,6 +1173,7 @@ void BiEllpack< Real, Device, Index >::spmvCuda( const InVector& inVector,
    __syncthreads();
    if( warpStart + inWarpIdx >= this->getRows() )
        return;
    
    outVector[ warpStart + inWarpIdx ] = results[ this->rowPermArray[ warpStart + inWarpIdx ] & ( cudaBlockSize - 1 ) ];
}
#endif