Skip to content

Commit

Permalink
fix(example): fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
jinmingyi1998 committed Aug 6, 2023
1 parent 0436b6d commit b591c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/add.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def add():
r = Runner()
a = np.random.random([64, 64])
a = np.ascontiguousarray(a, dtype=np.float32)
b = np.random.random([64, 64, 64, 64])
b = np.random.random(a.shape)
b = np.ascontiguousarray(b, dtype=np.float32)

out = np.zeros_like(a)
Expand Down

0 comments on commit b591c25

Please sign in to comment.