* \brief Returns the total number of entries in this matrix. * This value is computed as \code rows()*cols()*batches()* \endcode * \return the total number of entries */
| 52 | * \return the total number of entries |
| 53 | */ |
| 54 | __host__ __device__ CUMAT_STRONG_INLINE Index size() const { return rows()*cols()*batches(); } |
| 55 | |
| 56 | // EVALUATION |
| 57 |
no test coverage detected