| 27 | using absl::StrJoin; |
| 28 | |
| 29 | HloSharding HloSharding::AssignDevice(int64 device_id) { |
| 30 | return HloSharding(device_id); |
| 31 | } |
| 32 | |
| 33 | HloSharding HloSharding::Tile1D(const Shape& input_shape, int64 num_tiles) { |
| 34 | CHECK_EQ(1, input_shape.rank()); |
nothing calls this directly
no test coverage detected