|
6 | 6 |
|
7 | 7 | #include "openvino/op/add.hpp"
|
8 | 8 | #include "openvino/op/divide.hpp"
|
| 9 | +#include "openvino/op/equal.hpp" |
9 | 10 | #include "openvino/op/erf.hpp"
|
10 | 11 | #include "openvino/op/exp.hpp"
|
11 | 12 | #include "openvino/op/greater.hpp"
|
12 | 13 | #include "openvino/op/greater_eq.hpp"
|
13 | 14 | #include "openvino/op/maximum.hpp"
|
14 | 15 | #include "openvino/op/multiply.hpp"
|
| 16 | +#include "openvino/op/not_equal.hpp" |
15 | 17 | #include "openvino/op/reduce_max.hpp"
|
16 | 18 | #include "openvino/op/reduce_sum.hpp"
|
17 | 19 | #include "openvino/op/sqrt.hpp"
|
@@ -63,13 +65,15 @@ const std::map<std::string, CreatorFunction> get_supported_ops_jaxpr() {
|
63 | 65 | {"device_put", op::skip_node},
|
64 | 66 | {"div", op::translate_1to1_match_2_inputs<v1::Divide>},
|
65 | 67 | {"dot_general", op::translate_dot_general},
|
| 68 | + {"eq", op::translate_binary_op<v1::Equal>}, |
66 | 69 | {"erf", op::translate_1to1_match_1_input<v0::Erf>},
|
67 | 70 | {"exp", op::translate_1to1_match_1_input<v0::Exp>},
|
68 | 71 | {"ge", op::translate_binary_op<v1::GreaterEqual>},
|
69 | 72 | {"gt", op::translate_binary_op<v1::Greater>},
|
70 | 73 | {"integer_pow", op::translate_integer_pow},
|
71 | 74 | {"max", op::translate_1to1_match_2_inputs<v1::Maximum>},
|
72 | 75 | {"mul", op::translate_1to1_match_2_inputs<v1::Multiply>},
|
| 76 | + {"ne", op::translate_binary_op<v1::NotEqual>}, |
73 | 77 | {"reduce_max", op::translate_reduce_op<v1::ReduceMax>},
|
74 | 78 | {"reduce_sum", op::translate_reduce_op<v1::ReduceSum>},
|
75 | 79 | {"reduce_window_max", op::translate_reduce_window_max},
|
|
0 commit comments