Skip to content

Commit

Permalink
Fix failures of internal functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemySkrebkov committed Oct 3, 2024
1 parent a9ea3c4 commit a5d936c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ std::string LevelZeroCompilerInDriver<TableExtension>::serializeIOInfo(const std
size_t resultIndex = 0;
for (const std::shared_ptr<ov::op::v0::Result>& result : results) {
const ov::element::Type_t precision = result->get_element_type();
const size_t rank = result->get_output_partial_shape(resultIndex).size();
const size_t rank = result->get_output_partial_shape(0).size();

if (resultIndex != 0) {
outputsPrecisionSS << VALUES_SEPARATOR;
Expand Down

0 comments on commit a5d936c

Please sign in to comment.