| 629 | |
| 630 | template <class Shape> |
| 631 | TensorShapeIter<Shape> TensorShapeBase<Shape>::end() const { |
| 632 | CHECK(!unknown_rank()); |
| 633 | return TensorShapeIter<Shape>(static_cast<const Shape*>(this), dims()); |
| 634 | } |
| 635 | |
| 636 | string TensorShapeRep::DebugString() const { |
| 637 | const auto& shape = *static_cast<const PartialTensorShape*>(this); |