| 22 | namespace xla { |
| 23 | |
| 24 | TileProto Tile::ToProto() const { |
| 25 | TileProto tile_proto; |
| 26 | for (int64 i : dimensions()) { |
| 27 | tile_proto.add_dimensions(i); |
| 28 | } |
| 29 | return tile_proto; |
| 30 | } |
| 31 | |
| 32 | string Tile::ToString() const { |
| 33 | std::vector<string> elements; |
nothing calls this directly
no test coverage detected