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

Commit

Permalink
Removed unique_ops
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgoggins committed Feb 7, 2020
1 parent f90099d commit b20ea9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/opperf/utils/op_registry_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def get_all_nn_activation_operators():
# Filter for NN Activation operators
nn_activation_mx_operators = {}
for op_name, _ in mx_operators.items():
if op_name in nn_activation_ops and op_name not in unique_ops:
if op_name in nn_activation_ops:
nn_activation_mx_operators[op_name] = mx_operators[op_name]
return nn_activation_mx_operators

Expand Down

0 comments on commit b20ea9c

Please sign in to comment.