Skip to content

Commit

Permalink
Fi code style
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Vafin <maxim.vafin@intel.com>
  • Loading branch information
mvafin committed Mar 9, 2025
1 parent e90f0d9 commit 17d009e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/frontends/pytorch/src/op/exp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
// SPDX-License-Identifier: Apache-2.0
//

#include "openvino/op/exp.hpp"

#include "openvino/frontend/complex_type_mark.hpp"
#include "openvino/op/constant.hpp"
#include "openvino/op/convert_like.hpp"
#include "openvino/op/exp.hpp"
#include "openvino/op/subtract.hpp"
#include "utils.hpp"

namespace ov {
Expand All @@ -23,7 +22,7 @@ OutputVector translate_exp(const NodeContext& context) {
// This const only needed for type alignment
auto dummy_const = context.mark_node(v0::Constant::create(element::f32, Shape({}), {0.5}))->output(0);
align_eltwise_input_types(context, x, dummy_const, false, true);

auto exp = ComplexTypeMark::exp(context, x);

return {exp};
Expand Down

0 comments on commit 17d009e

Please sign in to comment.