Skip to content

Commit

Permalink
fix broadcast op param (apache#15714)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaiBapchya authored and Ubuntu committed Aug 20, 2019
1 parent af1415c commit 1977724
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 1977724

Please sign in to comment.