static */
| 293 | } |
| 294 | |
| 295 | /* static */ void ShapeUtil::UpdateTupleShape(const Shape& shape, int64 index, |
| 296 | Shape* tuple_shape) { |
| 297 | CHECK(index < tuple_shape->tuple_shapes_size()); |
| 298 | *tuple_shape->mutable_tuple_shapes(index) = shape; |
| 299 | } |
| 300 | |
| 301 | /* static */ void ShapeUtil::UpdateDynamicDimension(Shape* shape, |
| 302 | ShapeIndexView index, |
nothing calls this directly
no test coverage detected