Home
last modified time | relevance | path

Searched refs:tuple_shapes_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/
Dshape.h112 int tuple_shapes_size() const { return tuple_shapes_.size(); } in tuple_shapes_size()
113 const Shape& tuple_shapes(int index) const { return tuple_shapes_.at(index); } in tuple_shapes()
114 Shape* mutable_tuple_shapes(int index) { return &tuple_shapes_.at(index); } in mutable_tuple_shapes()
116 tuple_shapes_.push_back(Shape()); in add_tuple_shapes()
117 return &tuple_shapes_.back(); in add_tuple_shapes()
119 void clear_tuple_shapes() { tuple_shapes_.clear(); } in clear_tuple_shapes()
120 const std::vector<Shape>& tuple_shapes() const { return tuple_shapes_; } in tuple_shapes()
121 std::vector<Shape>* mutable_tuple_shapes() { return &tuple_shapes_; } in mutable_tuple_shapes()
137 tuple_shapes_.clear(); in Clear()
212 std::vector<Shape> tuple_shapes_; variable
Dshape.cc49 tuple_shapes_.reserve(shape_proto.tuple_shapes_size()); in Shape()
88 for (const Shape& subshape : tuple_shapes_) { in is_static()