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

Commit b20ea9c

Browse files
committed
Removed unique_ops
1 parent f90099d commit b20ea9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/opperf/utils/op_registry_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def get_all_nn_activation_operators():
303303
# Filter for NN Activation operators
304304
nn_activation_mx_operators = {}
305305
for op_name, _ in mx_operators.items():
306-
if op_name in nn_activation_ops and op_name not in unique_ops:
306+
if op_name in nn_activation_ops:
307307
nn_activation_mx_operators[op_name] = mx_operators[op_name]
308308
return nn_activation_mx_operators
309309

0 commit comments

Comments
 (0)