Searched refs:tuple_shapes_ (Results 1 – 2 of 2) sorted by relevance
49 tuple_shapes_(std::move(tuple_shapes)) {} in Shape()128 int tuple_shapes_size() const { return tuple_shapes_.size(); } in tuple_shapes_size()129 const Shape& tuple_shapes(int index) const { return tuple_shapes_.at(index); } in tuple_shapes()130 Shape* mutable_tuple_shapes(int index) { return &tuple_shapes_.at(index); } in mutable_tuple_shapes()132 tuple_shapes_.push_back(Shape()); in add_tuple_shapes()133 return &tuple_shapes_.back(); in add_tuple_shapes()135 void clear_tuple_shapes() { tuple_shapes_.clear(); } in clear_tuple_shapes()136 const std::vector<Shape>& tuple_shapes() const { return tuple_shapes_; } in tuple_shapes()137 std::vector<Shape>* mutable_tuple_shapes() { return &tuple_shapes_; } in mutable_tuple_shapes()153 for (auto& subshape : tuple_shapes_) { in clear_dynamic_dimensions()[all …]
49 tuple_shapes_.reserve(shape_proto.tuple_shapes_size()); in Shape()51 tuple_shapes_.emplace_back(element_shape); in Shape()88 for (const Shape& subshape : tuple_shapes_) { in is_static()