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

Commit

Permalink
Added remaining misc ops, including Custom op logic
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgoggins committed Feb 6, 2020
1 parent 7b00a70 commit a721938
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmark/opperf/rules/default_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,4 +239,4 @@
"weight", "weight32", "grad", "mean", "var", "mom", "n", "d",
"v", "z", "g", "delta", "args", "indices", "shape_like", "y",
"x", "condition", "a", "index", "raveL_data", "label", "lrs",
"wds", "weights_sum_sq", "grads_sum_sq"]
"wds", "weights_sum_sq", "grads_sum_sq", "mhs"]
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 @@ -423,7 +423,7 @@ def get_all_miscellaneous_operators():
-------
{"operator_name": {"has_backward", "nd_op_handle", "params"}}
"""
misc_ops = ['squeeze', 'all_finite', 'clip', 'multi_lars', 'SequenceReverse', 'SequenceLast', 'SequenceMask']
misc_ops = ['squeeze', 'all_finite', 'clip', 'multi_lars', 'SequenceReverse', 'SequenceLast', 'SequenceMask', 'cast_storage', 'cumsum', 'fill_element_0index']

# Get all mxnet operators
mx_operators = _get_all_mxnet_operators()
Expand Down

0 comments on commit a721938

Please sign in to comment.