Skip to content

Commit d757efd

Browse files
authored
[PT FE] Support aten::concatenate (openvinotoolkit#28518)
### Details: - *Support `aten::concatenate`* ### Tickets: - *CVS-160777* Signed-off-by: Maxim Vafin <maxim.vafin@intel.com>
1 parent 5fba441 commit d757efd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/frontends/pytorch/src/op_table.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ const std::unordered_map<std::string, CreatorFunction> get_supported_ops_ts() {
432432
{"aten::col2im", op::translate_col2im},
433433
{"aten::complex", op::translate_complex},
434434
{"aten::concat", op::translate_cat},
435+
{"aten::concatenate", op::translate_cat},
435436
{"aten::contiguous", op::skip_node}, // In openvino how tensors are stored in memory is internal plugin detail,
436437
// we assume all tensors are contiguous
437438
{"aten::conv_transpose1d", op::translate_conv_transposend},

0 commit comments

Comments
 (0)