Skip to content

Commit c0045bc

Browse files
committed
Update README.md
1 parent 5ddfc63 commit c0045bc

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ Provide the solver with an instance of the functor and the target vector:
4444
4545
```c++
4646
int size = 10;
47-
//A vector filled with 1.
48-
//Lanczos defines this type for convenience. It will be a thrust::device_vector if CUDA_ENABLED is defined and an std::vector otherwise
47+
//A GPU vector filled with ones.
4948
thrust::device_vector<real> v(size);
5049
thrust::fill(v.begin(), v.end(), 1);
5150
//A vector to store the result of sqrt(M)*v

0 commit comments

Comments
 (0)