Segment Sum renamed in common lib (#17378)
This commit is contained in:
parent
94a7342548
commit
af3d1d69dd
@ -16,7 +16,7 @@ namespace op {
|
||||
OutputVector space_to_depth(const ov::frontend::tensorflow_lite::NodeContext& node) {
|
||||
const auto& decoder = get_decoder(node);
|
||||
std::map<std::string, ov::Any> attrs{
|
||||
{"seed", static_cast<int64_t>(decoder->get_attribute(&tflite::SpaceToDepthOptions::block_size))},
|
||||
{"block_size", static_cast<int64_t>(decoder->get_attribute(&tflite::SpaceToDepthOptions::block_size))},
|
||||
};
|
||||
return attribute_helper(node, attrs, ov::frontend::tensorflow::op::translate_space_to_depth_op, "SpaceToDepth");
|
||||
}
|
||||
|
@ -156,7 +156,7 @@ std::map<std::string, CreatorFunction> get_supported_ops() {
|
||||
{"ROUND", DEQUANTIZE_INPUTS(translate_round_op)},
|
||||
{"RSQRT", DEQUANTIZE_INPUTS(translate_rsqrt_op)},
|
||||
{"SCATTER_ND", DEQUANTIZE_INPUTS(translate_scatter_nd_op)},
|
||||
{"SEGMENT_SUM", DEQUANTIZE_INPUTS(translate_segment_sum_op)},
|
||||
{"SEGMENT_SUM", OP_CONVERT_TYPE_RENAME(translate_segment_sum_op, "SegmentSum")},
|
||||
{"SELECT", OP_CONVERT_TYPE_RENAME(translate_select_op, "Select")},
|
||||
{"SELECT_V2", OP_CONVERT_TYPE_RENAME(translate_select_v2_op, "SelectV2")},
|
||||
{"SHAPE", shape},
|
||||
|
Loading…
Reference in New Issue
Block a user