Skip to content

Commit

Permalink
[GPU] Fix unit tests ph4 (#26879)
Browse files Browse the repository at this point in the history
### Details:
 - Fix oob array
  • Loading branch information
p-durandin authored Oct 3, 2024
1 parent 58d4f9a commit 8f27cbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/intel_gpu/src/graph/program_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,9 @@ bool program_node::is_padded_spatial(size_t idx) const {
auto& layout = get_output_layout(idx);
const auto& lower_size = layout.data_padding._lower_size;
const auto& upper_size = layout.data_padding._upper_size;
return std::any_of(std::begin(lower_size) + 2, std::begin(lower_size) + layout.get_spatial_rank() - 1,
return std::any_of(std::begin(lower_size) + 2, std::begin(lower_size) + 2 + layout.get_spatial_rank(),
[](const tensor::value_type& el) { return el != 0; }) ||
std::any_of(std::begin(upper_size) + 2, std::begin(upper_size) + layout.get_spatial_rank() - 1,
std::any_of(std::begin(upper_size) + 2, std::begin(upper_size) + 2 + layout.get_spatial_rank(),
[](const tensor::value_type& el) { return el != 0; });
}

Expand Down

0 comments on commit 8f27cbb

Please sign in to comment.