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

Commit 3255d87

Browse files
fix broadcast op param (#15714)
1 parent 7c26810 commit 3255d87

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benchmark/opperf/rules/default_params.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
# For Unary operators like abs, arccos, arcsin etc..
2929
DEFAULT_DATA = [(1024, 1024), (10000, 1), (10000, 100)]
3030

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

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

0 commit comments

Comments
 (0)