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

Commit ecb8393

Browse files
committed
reduce size of needlessly large arrays in the BoundaryPaddedArray test
1 parent bc05268 commit ecb8393

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/boundary_padded_array.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ using LinearAlgebra, DiffEqOperators, Random, Test
33
# Test BoundaryPaddedMatrix
44
################################################################################
55

6-
n = 100
7-
m = 120
6+
n = 44
7+
m = 31
88
A = rand(n,m)
99

1010

@@ -23,9 +23,9 @@ end
2323
# Test BoundaryPaddedTensor{3}
2424
################################################################################
2525

26-
n = 100
27-
m = 120
28-
o = 78
26+
n = 31
27+
m = 44
28+
o = 34
2929
A = rand(n,m,o)
3030
S = size(A)
3131
for dim in 1:3

0 commit comments

Comments
 (0)