Skip to content

Commit ea268f7

Browse files
committed
Change seed
1 parent 9fabfb0 commit ea268f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/tensor/signal/test_conv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def test_convolve2d(kernel_shape, data_shape, mode, boundary, boundary_kwargs):
167167

168168
fn = function([data, kernel], conv_result)
169169

170-
rng = np.random.default_rng((26, kernel_shape, data_shape, sum(map(ord, mode))))
170+
rng = np.random.default_rng((172, kernel_shape, data_shape, sum(map(ord, mode))))
171171
data_val = rng.normal(size=data_shape).astype(data.dtype)
172172
kernel_val = rng.normal(size=kernel_shape).astype(kernel.dtype)
173173

0 commit comments

Comments
 (0)