Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class OperationBufferExtractorTest : public testing::Test {
auto reshape = std::make_shared<ov::op::v1::Reshape>(add_1, reshape_pattern, true);

ov::ParameterVector inputs{input};
ov::NodeVector outputs{reshape};
ov::OutputVector outputs{reshape};
model_ = std::make_unique<ov::Model>(outputs, inputs, "SimpleGraph");

exec_sequence_ = model_->get_ordered_ops();
Expand Down Expand Up @@ -346,7 +346,7 @@ class OperationBufferExtractorConcatOptimizedTest : public testing::Test {
auto reshape = std::make_shared<ov::op::v1::Reshape>(add_1, reshape_pattern, true);

ov::ParameterVector inputs{input};
ov::NodeVector outputs{reshape};
ov::OutputVector outputs{reshape};
model_ = std::make_unique<ov::Model>(outputs, inputs, "ConcatOptimizedGraph");

exec_sequence_ = model_->get_ordered_ops();
Expand Down Expand Up @@ -482,7 +482,7 @@ class OperationBufferExtractorConcatOptimizedV2Test : public testing::Test {
auto reshape1 = std::make_shared<ov::op::v1::Reshape>(add_1, reshape_pattern, true);

ov::ParameterVector inputs{input};
ov::NodeVector outputs{reshape1};
ov::OutputVector outputs{reshape1};
model_ = std::make_unique<ov::Model>(outputs, inputs, "ConcatOptimizedGraph");

exec_sequence_ = model_->get_ordered_ops();
Expand Down
Loading