Skip to content

Commit

Permalink
Revert "Trying to fail code style check"
Browse files Browse the repository at this point in the history
This reverts commit 0a6555c.
  • Loading branch information
EgorDuplensky committed Dec 7, 2024
1 parent 0a6555c commit 6b8e524
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,7 @@ bool ov::pass::CommonOptimizations::run_on_model(const std::shared_ptr<ov::Model
ADD_MATCHER(common_fusions, ReduceMerge)
common_fusions->set_name("ov::pass::CommonFusions");

manager.
register_pass<ConcatReduceFusion>();
manager.register_pass<ConcatReduceFusion>();
REGISTER_DISABLED_PASS(manager, ConvertPadToGroupConvolution)
REGISTER_DISABLED_PASS(manager, ConvertInterpolate1ToInterpolate4)

Expand Down
8 changes: 2 additions & 6 deletions src/plugins/intel_cpu/src/graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1401,14 +1401,10 @@ void Graph::Infer(SyncInferRequest* request) {

switch (status) {
case Status::ReadyDynamic:
InferDynamic(request,
numaId,
UpdateNodes(m_executableGraphNodes));
InferDynamic(request, numaId, UpdateNodes(m_executableGraphNodes));
break;
case Status::ReadyDynamicSeq:
InferDynamic(
request, numaId, UpdateNodesSeq(m_executableGraphNodes)
);
InferDynamic(request, numaId, UpdateNodesSeq(m_executableGraphNodes));
break;
case Status::ReadyStatic:
InferStatic(request, numaId);
Expand Down

0 comments on commit 6b8e524

Please sign in to comment.