We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6027732 commit c778406Copy full SHA for c778406
src/frontends/tensorflow_common/src/op/bias_add.cpp
@@ -62,6 +62,11 @@ OutputVector translate_bias_add_op(const NodeContext& node) {
62
63
auto res = make_shared<v1::Add>(value, bias_reshaped);
64
set_node_name(node.get_name(), res);
65
+
66
+ if (complex_type_inputs) {
67
+ auto complex_reshape = make_shared<ComplexTypeMark>(res, complex_type_mark_value->get_complex_part_type());
68
+ return {complex_reshape->output(0)};
69
+ }
70
return res->outputs();
71
}
72
} // namespace op
0 commit comments