未验证 提交 bf669a5c 编写于 作者: Z zhangbo9674 提交者: GitHub

fix unique and close op bug (#55168)

上级 b5645956
......@@ -336,30 +336,26 @@ class OpInfoParser:
for scalar_attr in self.op_compat_item['scalar'].keys():
if 'data_type' in self.op_compat_item['scalar'][scalar_attr]:
if (
self.op_compat_item['scalar'][scalar_attr]['data_type']
== "std::string"
scalar_attr == "depth"
and self.op_phi_name[0] == "one_hot"
):
# see isclose and allclose in op_compat.yaml
mutable_attribute_name_list.append(scalar_attr)
mutable_attribute_type_list.append(
["ir::StrAttribute", "std::string"]
)
mutable_attribute_name_list.append("num_classes")
else:
if (
scalar_attr == "depth"
and self.op_phi_name[0] == "one_hot"
):
mutable_attribute_name_list.append("num_classes")
else:
mutable_attribute_name_list.append(scalar_attr)
mutable_attribute_type_list.append(
[
"paddle::dialect::ScalarAttribute",
self.op_compat_item['scalar'][scalar_attr][
'data_type'
],
]
)
mutable_attribute_name_list.append(scalar_attr)
data_type = self.op_compat_item['scalar'][scalar_attr][
'data_type'
]
# patch for isclose and allclose
if (self.op_compat_item['op'] == "isclose") or (
self.op_compat_item['op'] == "allclose"
):
data_type = "float"
mutable_attribute_type_list.append(
[
"paddle::dialect::ScalarAttribute",
data_type,
]
)
# See eye in op_compat.yaml
else:
mutable_attribute_name_list.append(scalar_attr)
......@@ -371,7 +367,6 @@ class OpInfoParser:
],
]
)
# int_array
if (self.op_compat_item is not None) and (
'int_array' in self.op_compat_item
......
......@@ -979,6 +979,7 @@
kernel :
func : unique
data_type : x
optional : indices, inverse, counts
- op : unpool
args: (Tensor x, Tensor indices, int[] ksize, int[] strides, int[] padding, IntArray output_size, str data_format)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册