| 277 | } |
| 278 | |
| 279 | static inline ShapeArray UndefinedOrder(const VarDimArray shape) { |
| 280 | return ShapeArray(shape.size(), -1); |
| 281 | } |
| 282 | |
| 283 | static inline ShapeArray TensorShapeToVector(const TensorShape& shape) { |
| 284 | ShapeArray vec(shape.dims()); |
no test coverage detected