Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 9b917a5

Browse files
committed
Moved ElementWiseSum to binary_element_wise_operators
1 parent 15787d4 commit 9b917a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/opperf/utils/op_registry_utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,6 @@ def get_all_misc_binary_operators():
213213
binary_misc_mx_operators[op_name] = mx_operators[op_name]
214214
elif "reshape_like" == op_name:
215215
binary_misc_mx_operators[op_name] = mx_operators[op_name]
216-
elif "ElementWiseSum" == op_name:
217-
binary_misc_mx_operators[op_name] = mx_operators[op_name]
218216
return binary_misc_mx_operators
219217

220218

@@ -235,6 +233,8 @@ def get_all_elemen_wise_binary_operators():
235233
"lhs" in op_params["params"]["arg_names"] and \
236234
"rhs" in op_params["params"]["arg_names"]:
237235
binary_elemen_wise_mx_operators[op_name] = mx_operators[op_name]
236+
elif "ElementWiseSum" == op_name:
237+
binary_elemen_wise_mx_operators[op_name] = mx_operators[op_name]
238238
return binary_elemen_wise_mx_operators
239239

240240

0 commit comments

Comments
 (0)