Skip to content

Commit

Permalink
make check_op_desc.py support python3 (#32807)
Browse files Browse the repository at this point in the history
  • Loading branch information
tianshuo78520a authored May 10, 2021
1 parent 23ab01e commit 92adece
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tools/check_op_desc.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import json
import sys
import operator
from paddle.utils import OpLastCheckpointChecker
from paddle.fluid.core import OpUpdateType

Expand Down Expand Up @@ -71,7 +72,8 @@ def diff_vars(origin_vars, new_vars):
vars_name_only_in_new = set(new_vars.keys()) - set(origin_vars.keys())

for var_name in common_vars_name:
if cmp(origin_vars.get(var_name), new_vars.get(var_name)) == SAME:
if operator.eq(origin_vars.get(var_name),
new_vars.get(var_name)) == SAME:
continue
else:
error, var_error = True, True
Expand Down Expand Up @@ -120,7 +122,8 @@ def diff_attr(ori_attrs, new_attrs):
attrs_only_in_new = set(new_attrs.keys()) - set(ori_attrs.keys())

for attr_name in common_attrs:
if cmp(ori_attrs.get(attr_name), new_attrs.get(attr_name)) == SAME:
if operator.eq(ori_attrs.get(attr_name),
new_attrs.get(attr_name)) == SAME:
continue
else:
error, attr_error = True, True
Expand Down Expand Up @@ -184,7 +187,7 @@ def compare_op_desc(origin_op_desc, new_op_desc):
new = json.loads(new_op_desc)
desc_error_message = {}
version_error_message = {}
if cmp(origin_op_desc, new_op_desc) == SAME:
if operator.eq(origin_op_desc, new_op_desc) == SAME:
return desc_error_message, version_error_message

for op_type in origin:
Expand Down

0 comments on commit 92adece

Please sign in to comment.