(self)
| 167 | return f'Tensor({self.name}) meta: dtype({self.dtype}), shape({self.shape})' |
| 168 | |
| 169 | def copy(self): |
| 170 | if self.shape is not None: |
| 171 | return TensorMeta(dtype=self.dtype, shape=self.shape.copy(), tensor_name=self.name) |
| 172 | else: return TensorMeta(dtype=self.dtype, shape=None, tensor_name=self.name) |
| 173 | |
| 174 | |
| 175 | class OperationMeta: |
no test coverage detected