We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b13e37 commit 65b239aCopy full SHA for 65b239a
1 file changed
README.md
@@ -51,7 +51,7 @@ Provide the solver with an instance of the functor and the target vector:
51
//A vector to store the result of sqrt(M)*v
52
thrust::device_vector<real> result(size);
53
//A functor that multiplies by a diagonal matrix
54
- MatrixDot dot(size);
+ DiagonalMatrix dot(size);
55
//Call the solver
56
real* d_result = thrust::raw_pointer_cast(result.data());
57
real* d_v = thrust::raw_pointer_cast(v.data());
0 commit comments