| 467 | |
| 468 | template <class Shape> |
| 469 | void TensorShapeBase<Shape>::AppendShape(const TensorShapeBase& shape) { |
| 470 | for (auto d : shape) AddDim(d.size); |
| 471 | } |
| 472 | |
| 473 | template <class Shape> |
| 474 | void TensorShapeBase<Shape>::InsertDim(int d, int64 size) { |
no outgoing calls
no test coverage detected