Skip to content

Commit f100672

Browse files
committed
Fix hh(avx)! test.
1 parent 12b357c commit f100672

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/gemv.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ using Test
211211
fill!(G2, TC(NaN)); AtmulvB_avx3!(G2,B,1);
212212
@test G1 G2
213213

214-
D = rand(M);
215-
B1 = rand(M,N); B2 = copy(B1);
216-
C1 = rand(N); C2 = copy(C1);
217-
A1 = similar(D); A2 = similar(A1);
214+
D = rand(T, M);
215+
B1 = rand(T, M,N); B2 = copy(B1);
216+
C1 = rand(T, N); C2 = copy(C1);
217+
A1 = rand(T, size(D)...); A2 = copy(A1);
218218
hh!(A1, B1, C1, D)
219219
hhavx!(A2, B2, C2, D)
220220
@test B1 B2

0 commit comments

Comments
 (0)