Skip to content

Commit 2b13e37

Browse files
committed
Update
1 parent 008ca82 commit 2b13e37

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Computes the matrix-vector product sqrt(M)·v using a recursive algorithm.
33
For that, it requires a functor in which the () operator takes an output real* array and an input real* (both in device memory if compiled in CUDA mode or host memory otherwise) as:
44
```c++
5-
inline operator()(real* in_v, real * out_Mv);
5+
inline void operator()(real* in_v, real * out_Mv);
66
```
77
This function must fill "out" with the result of performing the M·v dot product- > out = M·a_v.
88
If M has size NxN and the cost of the dot product is O(M). The total cost of the algorithm is O(m·M). Where m << N.

0 commit comments

Comments
 (0)