| 758 | } |
| 759 | |
| 760 | PartialTensorShape PartialTensorShape::Concatenate(int64 size) const { |
| 761 | PartialTensorShape out = *this; |
| 762 | out.AddDim(size); |
| 763 | return out; |
| 764 | } |
| 765 | |
| 766 | PartialTensorShape PartialTensorShape::Concatenate( |
| 767 | const PartialTensorShape& shape) const { |