| 9 | namespace core { |
| 10 | |
| 11 | BatchShape::BatchShape() : nodim_(true), num_sample_(0) {}; |
| 12 | BatchShape::BatchShape(int dim) : dim_(dim), nodim_(false), num_sample_(0) {}; |
| 13 | |
| 14 | int64_t BatchShape::size() const { |
nothing calls this directly
no outgoing calls
no test coverage detected