| 136 | } |
| 137 | |
| 138 | bool HasStride(const Window& window) { |
| 139 | for (const auto& dim : window.dimensions()) { |
| 140 | if (dim.stride() != 1) { |
| 141 | return true; |
| 142 | } |
| 143 | } |
| 144 | return false; |
| 145 | } |
| 146 | |
| 147 | bool HasPadding(const Window& window) { |
| 148 | for (const auto& dim : window.dimensions()) { |
no test coverage detected