| 73 | } |
| 74 | |
| 75 | bool AccessWindowAutoPadding::update_padding_if_needed(const Window &window) |
| 76 | { |
| 77 | ARM_COMPUTE_UNUSED(window); |
| 78 | |
| 79 | // Only update the padding if the tensor allows it |
| 80 | if (_info == nullptr || !_info->is_resizable()) |
| 81 | { |
| 82 | return false; |
| 83 | } |
| 84 | |
| 85 | // Update strides in tensor info |
| 86 | return _info->auto_padding(); |
| 87 | } |
nothing calls this directly
no test coverage detected