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

Commit

Permalink
fix broadcast op param (#15714)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaiBapchya authored and sandeep-krishnamurthy committed Aug 5, 2019
1 parent 7c26810 commit 3255d87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmark/opperf/rules/default_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
# For Unary operators like abs, arccos, arcsin etc..
DEFAULT_DATA = [(1024, 1024), (10000, 1), (10000, 100)]

# For Binary broadcast operators like - broadcast_add/sub/mode/logical_and etc..
DEFAULT_LHS = [[(1024, 1024), (10000, 10), (10000, 1)]]
DEFAULT_RHS = [[(1024, 1024), (10000, 10), (10000, 1)]]
# For Binary broadcast operators like - broadcast_add/sub/mod/logical_and etc..
DEFAULT_LHS = [(1024, 1024), (10000, 10), (10000, 1)]
DEFAULT_RHS = [(1024, 1024), (10000, 10), (10000, 1)]

# For operators like - random_uniform, random_normal etc..
DEFAULT_SHAPE = [(1024, 1024), (10000, 1), (10000, 100)]
Expand Down

0 comments on commit 3255d87

Please sign in to comment.