Skip to content

Commit

Permalink
[GPU] Fix unit tests ph4
Browse files Browse the repository at this point in the history
  • Loading branch information
p-durandin committed Oct 2, 2024
1 parent c583265 commit 9af870c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/plugins/intel_gpu/src/graph/program_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -611,11 +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;
if (layout.get_spatial_rank() < 3)
return false;
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() - 1,
[](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() - 1,
[](const tensor::value_type& el) { return el != 0; });
}

Expand Down

0 comments on commit 9af870c

Please sign in to comment.