| 193 | const TensorShape& GetShape() const { return m_Shape; } |
| 194 | TensorShape& GetShape() { return m_Shape; } |
| 195 | void SetShape(const TensorShape& newShape) { m_Shape = newShape; } |
| 196 | |
| 197 | unsigned int GetNumDimensions() const { return m_Shape.GetNumDimensions(); } |
| 198 | unsigned int GetNumElements() const { return m_Shape.GetNumElements(); } |
no outgoing calls