| 135 | * \param newValue the new value at that index |
| 136 | */ |
| 137 | __device__ CUMAT_STRONG_INLINE void setRawCoeff(Index idx, const _Scalar& newValue) |
| 138 | { |
| 139 | //This method is quite ineffective at the moment, since it has to convert the values back to row,col,batch |
| 140 | Index i, j, k; |
| 141 | index(idx, i, j, k); |
| 142 | coeff(i, j, k, -1) = newValue; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * \brief Access to the linearized coefficient, read-only. |
no test coverage detected