| 306 | // Accessors. |
| 307 | int64 count() const { return tensor_.dimensions(0); } |
| 308 | int64 feature_map_count() const { return tensor_.dimensions(1); } |
| 309 | int64 height() const { return GetDim(spatial_size(), DimIndex::Y); } |
| 310 | int64 width() const { return GetDim(spatial_size(), DimIndex::X); } |
| 311 | int64 spatial_dim(DimIndex dim) const { return GetDim(spatial_size(), dim); } |
no test coverage detected