Skip to content

Commit f4d8121

Browse files
committed
try smaller array size
1 parent b27f572 commit f4d8121

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ end
194194
@test B2 == A2
195195
end
196196

197-
let dims = ntuple(n -> 10, N)
197+
let dims = ntuple(n -> 6, N)
198198
A = rand(T, dims)
199199
B = StridedView(A)
200200
@test conj(A) == conj(B)
@@ -203,8 +203,8 @@ end
203203
A2 = permutedims(A, p)
204204
@test B2 == A2
205205

206-
B2 = sreshape(B, (2, 5, ntuple(n -> 10, N - 2)..., 5, 2))
207-
A2 = sreshape(A, (2, 5, ntuple(n -> 10, N - 2)..., 5, 2)...)
206+
B2 = sreshape(B, (2, 3, ntuple(n -> 6, N - 2)..., 3, 2))
207+
A2 = sreshape(A, (2, 3, ntuple(n -> 6, N - 2)..., 3, 2)...)
208208
A3 = reshape(A, size(A2))
209209
@test B2 == A3
210210
@test B2 == A2

0 commit comments

Comments
 (0)