Skip to content

Commit 65b239a

Browse files
committed
Update
1 parent 2b13e37 commit 65b239a

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
@@ -51,7 +51,7 @@ Provide the solver with an instance of the functor and the target vector:
5151
//A vector to store the result of sqrt(M)*v
5252
thrust::device_vector<real> result(size);
5353
//A functor that multiplies by a diagonal matrix
54-
MatrixDot dot(size);
54+
DiagonalMatrix dot(size);
5555
//Call the solver
5656
real* d_result = thrust::raw_pointer_cast(result.data());
5757
real* d_v = thrust::raw_pointer_cast(v.data());

0 commit comments

Comments
 (0)