| 55 | } |
| 56 | |
| 57 | const void *RawTensor::operator()(const Coordinates &coord) const |
| 58 | { |
| 59 | return _buffer.get() + coord2index(_shape, coord) * element_size(); |
| 60 | } |
| 61 | |
| 62 | void *RawTensor::operator()(const Coordinates &coord) |
| 63 | { |
nothing calls this directly
no test coverage detected