Skip to content

Commit

Permalink
step3
Browse files Browse the repository at this point in the history
  • Loading branch information
eshoguli committed Aug 2, 2024
1 parent 328f179 commit 2f2d45c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include "snippets/op/subgraph.hpp"
#include "snippets/utils/utils.hpp"

#include "low_precision/rt_info/bias_attribute.hpp"
#include "transformations/utils/utils.hpp"
#include "transformations/utils.hpp"
#include "utils/general_utils.h"
Expand Down Expand Up @@ -205,6 +206,11 @@ bool SnippetsMarkSkipped::run_on_model(const std::shared_ptr<ov::Model> &m) {
for (auto &node : m->get_ordered_ops()) {
if (is_skipped_op(node))
continue;

if (ov::marked_as_bias(node)) {
SetNodeFusingType(node, NodeFusingType::FusedWithMisc);
}

if (isSuitableConvolutionParent(node)) {
// Initiate fusing chain
SetNodeFusingType(node, NodeFusingType::FusedWithConvolution);
Expand Down

0 comments on commit 2f2d45c

Please sign in to comment.