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

Commit

Permalink
Dropped unique_ops condition - no longer in use
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgoggins committed Feb 4, 2020
1 parent 2225306 commit 0df02c2
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 @@ -337,7 +337,7 @@ def get_all_loss_operators():
# Filter for NN Loss operators
loss_mx_operators = {}
for op_name, op_params in mx_operators.items():
if op_name in loss_ops and op_name not in unique_ops:
if op_name in loss_ops:
loss_mx_operators[op_name] = mx_operators[op_name]
return loss_mx_operators

Expand Down

0 comments on commit 0df02c2

Please sign in to comment.