Skip to content

Commit

Permalink
Trying to fail code style check
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDuplensky committed Dec 7, 2024
1 parent 0ce076a commit 0a6555c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ 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: 6 additions & 2 deletions src/plugins/intel_cpu/src/graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1401,10 +1401,14 @@ 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 0a6555c

Please sign in to comment.