Returns a reference to the tensor's underlying data.
(&self)
| 26 | { |
| 27 | /// Returns a reference to the tensor's underlying data. |
| 28 | pub fn data(&self) -> &V { |
| 29 | &self.data |
| 30 | } |
| 31 | |
| 32 | /// Returns a reference to the tensor's descriptor. |
| 33 | pub fn descriptor(&self) -> &TensorDescriptor<T, F, D> { |
no outgoing calls
no test coverage detected