Skip to content

Commit

Permalink
Added Transpose to op_supports_only_exec_type
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanNovoselov committed Nov 25, 2022
1 parent 6577147 commit a153865
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/common/snippets/src/pass/align_element_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ inline auto is_in_op(const std::shared_ptr<ov::Node>& n) -> bool {
inline auto op_supports_only_exec_type(const std::shared_ptr<ov::Node>& n) -> bool {
return !is_in_op(n) &&
!ov::is_type<ov::op::v0::Result>(n) &&
!ov::is_type<ov::op::v1::Transpose>(n) &&
!ov::is_type<ov::op::v0::Convert>(n);
}

Expand Down

0 comments on commit a153865

Please sign in to comment.