Skip to content

Commit

Permalink
add support aten::__ior__
Browse files Browse the repository at this point in the history
  • Loading branch information
eaidova committed Oct 29, 2024
1 parent 669537a commit c8747d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/frontends/pytorch/src/op_table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,15 @@ OP_CONVERTER(translate_zeros_like_fx);
const std::unordered_map<std::string, CreatorFunction> get_supported_ops_ts() {
return {
{"aten::__and__", op::translate_bitwise_and},
{"aten::__iand__", op::inplace_op<op::translate_bitwise_and>},
{"aten::__derive_index", op::translate_derive_index},
{"aten::__getitem__", op::translate_getitem},
{"aten::__not__", op::translate_1to1_match_1_inputs<opset10::LogicalNot>},
{"aten::__or__", op::translate_bitwise_or},
{"aten::__ior__", op::inplace_op<op::translate_bitwise_or>},
{"aten::__range_length", op::translate_range_length},
{"aten::__xor__", op::translate_bitwise_xor},
{"aten::__ixor__", op::inplace_op<op::translate_bitwise_xor>},
{"aten::_convolution", op::translate_convolution},
{"aten::_convolution_mode", op::translate_convolution_mode},
{"aten::_native_multi_head_attention", op::translate_native_multi_head_attention},
Expand Down

0 comments on commit c8747d7

Please sign in to comment.