| 190 | } |
| 191 | |
| 192 | bool HasInteriorPadding(const PaddingConfig& config) { |
| 193 | for (const auto& dim : config.dimensions()) { |
| 194 | if (dim.interior_padding() != 0) { |
| 195 | return true; |
| 196 | } |
| 197 | } |
| 198 | return false; |
| 199 | } |
| 200 | |
| 201 | namespace { |
| 202 | string HumanReadableNumOps(double flops, double nanoseconds, |