Skip to content

Commit ad584f5

Browse files
MonalSDrkazants
andauthored
Adding ADDV2 operation for complex numbers (openvinotoolkit#23178)
### Details: - *Extended loader ADDV2 by propagating ComplexTypeMark from input to output and to represent output complex type tensor as a floating-point type tensor with an auxiliary dimension that concatenates real and imaginary parts of complex tensor.* - *Performed addition for complex numbers.* - *Wrapped the complex result with ComplexTypeMark and returned the result* Fixes openvinotoolkit#22946 --------- Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com>
1 parent 81e236f commit ad584f5

File tree

4 files changed

+87
-3
lines changed

4 files changed

+87
-3
lines changed

src/frontends/tensorflow/src/op_table.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ const std::map<std::string, CreatorFunction> get_supported_ops() {
166166
{"Swish", CreatorFunction(translate_unary_op<v4::Swish>)},
167167

168168
// note: BinaryOp translator declaration for each op must to be added in binary_op.cpp file
169-
{"Add", CreatorFunction(translate_binary_op<v1::Add>)},
170-
{"AddV2", CreatorFunction(translate_binary_op<v1::Add>)},
169+
{"Add", CreatorFunction(translate_addv2_op)},
170+
{"AddV2", CreatorFunction(translate_addv2_op)},
171171
{"Atan2", CreatorFunction(translate_atan2_op)},
172172
{"BitwiseAnd", CreatorFunction(translate_binary_op<v13::BitwiseAnd>)},
173173
{"BitwiseOr", CreatorFunction(translate_binary_op<v13::BitwiseOr>)},

src/frontends/tensorflow_common/include/common_op_table.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ OP_T_CONVERTER(translate_unary_op);
3131
OP_CONVERTER(translate_selu_op);
3232
OP_T_CONVERTER(translate_binary_op);
3333
OP_T_CONVERTER(translate_direct_reduce_op);
34-
34+
OP_CONVERTER(translate_addv2_op);
3535
OP_CONVERTER(translate_add_n_op);
3636
OP_CONVERTER(translate_adjust_contrast_op);
3737
OP_CONVERTER(translate_arg_max_op);

src/frontends/tensorflow_common/src/op/binary_op.cpp

+27
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,33 @@ OutputVector translate_mul_op(const NodeContext& node) {
142142
set_node_name(node.get_name(), result);
143143
return {result};
144144
}
145+
146+
OutputVector translate_addv2_op(const NodeContext& node) {
147+
default_op_checks(node, 2, {"Add", "AddV2"}, true);
148+
auto lhs = node.get_input(0);
149+
auto rhs = node.get_input(1);
150+
151+
auto complex_type_mark_lhs = as_type_ptr<ComplexTypeMark>(lhs.get_node_shared_ptr());
152+
auto complex_type_mark_rhs = as_type_ptr<ComplexTypeMark>(rhs.get_node_shared_ptr());
153+
auto complex_type_inputs = (complex_type_mark_lhs || complex_type_mark_rhs) ? true : false;
154+
155+
if (complex_type_inputs) {
156+
lhs = complex_type_mark_lhs->input_value(0);
157+
rhs = complex_type_mark_rhs->input_value(0);
158+
}
159+
160+
auto result = make_shared<v1::Add>(lhs, rhs);
161+
if (complex_type_inputs) {
162+
auto complex_result = make_shared<ComplexTypeMark>(result, complex_type_mark_lhs->get_complex_part_type());
163+
set_node_name(node.get_name(), result);
164+
165+
return {complex_result};
166+
}
167+
168+
set_node_name(node.get_name(), result);
169+
return {result};
170+
}
171+
145172
template OutputVector translate_binary_op<v1::Add>(const NodeContext& node);
146173
template OutputVector translate_binary_op<v13::BitwiseAnd>(const NodeContext& node);
147174
template OutputVector translate_binary_op<v13::BitwiseOr>(const NodeContext& node);

tests/layer_tests/tensorflow_tests/test_tf_Add.py

+57
Original file line numberDiff line numberDiff line change
@@ -222,3 +222,60 @@ def test_add_placeholder_const_broadcast_5D(self, params, ie_device, precision,
222222
use_legacy_frontend=use_legacy_frontend),
223223
ie_device, precision,
224224
ir_version=ir_version, temp_dir=temp_dir, use_legacy_frontend=use_legacy_frontend)
225+
226+
227+
class TestComplexAdd(CommonTFLayerTest):
228+
def _prepare_input(self, inputs_info):
229+
rng = np.random.default_rng()
230+
assert 'param_real_1:0' in inputs_info
231+
assert 'param_imag_1:0' in inputs_info
232+
assert 'param_real_2:0' in inputs_info
233+
assert 'param_imag_2:0' in inputs_info
234+
param_real_shape_1 = inputs_info['param_real_1:0']
235+
param_imag_shape_1 = inputs_info['param_imag_1:0']
236+
param_real_shape_2 = inputs_info['param_real_2:0']
237+
param_imag_shape_2 = inputs_info['param_imag_2:0']
238+
inputs_data = {}
239+
inputs_data['param_real_1:0'] = 4 * rng.random(param_real_shape_1).astype(np.float32) - 2
240+
inputs_data['param_imag_1:0'] = 4 * rng.random(param_imag_shape_1).astype(np.float32) - 2
241+
inputs_data['param_real_2:0'] = 4 * rng.random(param_real_shape_2).astype(np.float32) - 2
242+
inputs_data['param_imag_2:0'] = 4 * rng.random(param_imag_shape_2).astype(np.float32) - 2
243+
return inputs_data
244+
245+
def create_complex_addv2_net(self, input_shape):
246+
import tensorflow as tf
247+
tf.compat.v1.reset_default_graph()
248+
# Create the graph and model
249+
with tf.compat.v1.Session() as sess:
250+
param_real1 = tf.compat.v1.placeholder(np.float32, input_shape, 'param_real_1')
251+
param_imag1 = tf.compat.v1.placeholder(np.float32, input_shape, 'param_imag_1')
252+
param_real2 = tf.compat.v1.placeholder(np.float32, input_shape, 'param_real_2')
253+
param_imag2 = tf.compat.v1.placeholder(np.float32, input_shape, 'param_imag_2')
254+
complex1 = tf.raw_ops.Complex(real=param_real1, imag=param_imag1)
255+
complex2 = tf.raw_ops.Complex(real=param_real2, imag=param_imag2)
256+
add = tf.raw_ops.AddV2(x=complex1, y=complex2, name="complex_add")
257+
real = tf.raw_ops.Real(input=add)
258+
img = tf.raw_ops.Imag(input=add)
259+
tf.compat.v1.global_variables_initializer()
260+
tf_net = sess.graph_def
261+
262+
return tf_net, None
263+
264+
265+
test_data_basic = [
266+
dict(input_shape=[]),
267+
dict(input_shape=[2]),
268+
dict(input_shape=[1, 3]),
269+
dict(input_shape=[2, 3, 4]),
270+
dict(input_shape=[3, 4, 5, 6]),
271+
]
272+
273+
@pytest.mark.parametrize("params", test_data_basic)
274+
@pytest.mark.precommit_tf_fe
275+
@pytest.mark.nightly
276+
def test_complex_add(self, params, ie_device, precision, ir_version, temp_dir,
277+
use_legacy_frontend):
278+
self._test(
279+
*self.create_complex_addv2_net(**params),
280+
ie_device, precision, ir_version, temp_dir=temp_dir,
281+
use_legacy_frontend=use_legacy_frontend)

0 commit comments

Comments
 (0)