Indirection
| 94 | |
| 95 | /// Indirection |
| 96 | __device__ CUMAT_STRONG_INLINE value_type operator*() const |
| 97 | { |
| 98 | Index3 coords = fromLinear(index_, dims_, stride_); |
| 99 | return mat_.coeff(coords.get<0>(), coords.get<1>(), coords.get<2>(), -1); |
| 100 | } |
| 101 | |
| 102 | __device__ CUMAT_STRONG_INLINE reference operator*() |
| 103 | { |
nothing calls this directly
no test coverage detected