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

Implement remaining nn_activation ops in opperf #17475

Merged
merged 7 commits into from
Feb 12, 2020
Merged
Prev Previous commit
Removed unique_ops
  • Loading branch information
connorgoggins committed Feb 12, 2020
commit c6fc7e3e457ba0f3049ee872d110ddedd0783d7e
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 @@ -326,7 +326,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