| 151 | * \return the entry at that index |
| 152 | */ |
| 153 | __device__ CUMAT_STRONG_INLINE _Scalar getRawCoeff(Index idx) const |
| 154 | { |
| 155 | //This method is quite ineffective at the moment, since it has to convert the values back to row,col,batch |
| 156 | Index i, j, k; |
| 157 | index(idx, i, j, k); |
| 158 | return coeff(i, j, k, -1); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * \brief Access to the linearized coefficient, read-only. |
no test coverage detected