| 142 | int32_t d() const { return IntegralDivideRoundUp(c, 4); } |
| 143 | |
| 144 | int32_t product() const { return b * h * w * c; } |
| 145 | |
| 146 | bool operator==(const Dimensions& other) const { |
| 147 | return b == other.b && h == other.h && w == other.w && c == other.c; |
no outgoing calls