| 16 | struct CwiseAssignmentHandler |
| 17 | { |
| 18 | static __device__ CUMAT_STRONG_INLINE void assign(M& matrix, V value, Index index) |
| 19 | { |
| 20 | matrix.setRawCoeff(index, value); |
| 21 | } |
| 22 | }; |
| 23 | |
| 24 | #define CUMAT_DECLARE_ASSIGNMENT_HANDLER(mode, op1, op2) \ |
nothing calls this directly
no test coverage detected