HomeSort by relevance Sort by last modified time
    Searched refs:TensorShapeIter (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/framework/
tensor_shape.h 35 class TensorShapeIter;
254 TensorShapeIter<Shape> begin() const;
255 TensorShapeIter<Shape> end() const;
332 class TensorShapeIter {
334 TensorShapeIter(const Shape* shape, int d) : shape_(shape), d_(d) {}
335 bool operator==(const TensorShapeIter& rhs) {
339 bool operator!=(const TensorShapeIter& rhs) {
tensor_shape.cc 500 TensorShapeIter<Shape> TensorShapeBase<Shape>::begin() const {
501 return TensorShapeIter<Shape>(static_cast<const Shape*>(this), 0);
505 TensorShapeIter<Shape> TensorShapeBase<Shape>::end() const {
507 return TensorShapeIter<Shape>(static_cast<const Shape*>(this), dims());

Completed in 519 milliseconds