* \brief Converts from the linear index back to row, column and batch index. * Requirement of \c AccessFlags::WriteCwise * \param index the linear index * \param row the row index (output) * \param col the column index (output) * \param batch the batch index (output) */
| 150 | * \param batch the batch index (output) |
| 151 | */ |
| 152 | __device__ void index(Index index, Index& row, Index& col, Index& batch) const |
| 153 | { |
| 154 | return internal::SparseMatrixIndexEvaluator<_SparseFlags>::linearToCoords(sparsity_, index, row, col, batch); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * \brief Access to the linearized coefficient, write-only. |
nothing calls this directly
no outgoing calls
no test coverage detected