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

Commit

Permalink
Moved ElementWiseSum to binary_element_wise_operators
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgoggins committed Feb 5, 2020
1 parent e76dd3d commit 98c7d07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/opperf/utils/op_registry_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ def get_all_misc_binary_operators():
binary_misc_mx_operators[op_name] = mx_operators[op_name]
elif "reshape_like" == op_name:
binary_misc_mx_operators[op_name] = mx_operators[op_name]
elif "ElementWiseSum" == op_name:
binary_misc_mx_operators[op_name] = mx_operators[op_name]
return binary_misc_mx_operators


Expand All @@ -244,6 +242,8 @@ def get_all_elemen_wise_binary_operators():
"lhs" in op_params["params"]["arg_names"] and \
"rhs" in op_params["params"]["arg_names"]:
binary_elemen_wise_mx_operators[op_name] = mx_operators[op_name]
elif "ElementWiseSum" == op_name:
binary_elemen_wise_mx_operators[op_name] = mx_operators[op_name]
return binary_elemen_wise_mx_operators


Expand Down

0 comments on commit 98c7d07

Please sign in to comment.