| 318 | } |
| 319 | |
| 320 | __MATX_INLINE__ __MATX_HOST__ __MATX_DEVICE__ index_t TotalSize() const { |
| 321 | |
| 322 | index_t size = 1; |
| 323 | for(int i = 0 ; i < T::Rank(); i++) { |
| 324 | size *= static_cast<const T*>(this)->Size(i); |
| 325 | } |
| 326 | return size; |
| 327 | } |
| 328 | |
| 329 | |
| 330 | /* This must be in derived class. Copy paste line below to derived case if it is an lvalue |