Skip to content
Snippets Groups Projects
Commit 777c0c95 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber Committed by Jakub Klinkovský
Browse files

Fixing wrong type in SparseMatrixView documentation.

parent 11f7692a
No related branches found
No related tags found
1 merge request!105TO/matrices-adaptive-csr
......@@ -451,7 +451,7 @@ class SparseMatrixView : public MatrixView< Real, Device, Index >
* \tparam Keep is a type of lambda function for storing results of reduction in each row. It is declared as
*
* ```
* auto keep = [=] __cuda_callable__ ( const IndexType rowIdx, const double& value ) { ... };
* auto keep = [=] __cuda_callable__ ( const IndexType rowIdx, const RealType& value ) { ... };
* ```
*
* \tparam FetchValue is type returned by the Fetch lambda function.
......
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