@@ -8,8 +8,8 @@ for elty in (Float32, Float64, Complex64, Complex128)
8
8
U = randn (5 ,2 )
9
9
V = randn (5 ,2 )
10
10
if elty == Complex64 || elty == Complex128
11
- U = complex (U, U)
12
- V = complex (V, V)
11
+ U = complex . (U, U)
12
+ V = complex . (V, V)
13
13
end
14
14
U = convert (Array{elty, 2 }, U)
15
15
V = convert (Array{elty, 2 }, V)
@@ -23,8 +23,8 @@ for elty in (Complex64, Complex128)
23
23
U = randn (5 ,2 )
24
24
V = randn (5 ,2 )
25
25
if elty == Complex64 || elty == Complex128
26
- U = complex (U, U)
27
- V = complex (V, V)
26
+ U = complex . (U, U)
27
+ V = complex . (V, V)
28
28
end
29
29
U = convert (Array{elty, 2 }, U)
30
30
V = convert (Array{elty, 2 }, V)
@@ -58,8 +58,8 @@ for elty in [Float32, Float64, Complex64, Complex128]
58
58
@test BLAS. dot (x1,x2) ≈ sum (x1.* x2)
59
59
@test_throws DimensionMismatch BLAS. dot (x1,rand (elty, n + 1 ))
60
60
else
61
- z1 = convert (Vector{elty}, complex (randn (n),randn (n)))
62
- z2 = convert (Vector{elty}, complex (randn (n),randn (n)))
61
+ z1 = convert (Vector{elty}, complex . (randn (n),randn (n)))
62
+ z2 = convert (Vector{elty}, complex . (randn (n),randn (n)))
63
63
@test BLAS. dotc (z1,z2) ≈ sum (conj (z1).* z2)
64
64
@test BLAS. dotu (z1,z2) ≈ sum (z1.* z2)
65
65
@test_throws DimensionMismatch BLAS. dotc (z1,rand (elty, n + 1 ))
@@ -71,7 +71,7 @@ for elty in [Float32, Float64, Complex64, Complex128]
71
71
x = convert (Vector{elty}, randn (n))
72
72
@test BLAS. iamax (x) == indmax (abs .(x))
73
73
else
74
- z = convert (Vector{elty}, complex (randn (n),randn (n)))
74
+ z = convert (Vector{elty}, complex . (randn (n),randn (n)))
75
75
@test BLAS. iamax (z) == indmax (map (x -> abs (real (x)) + abs (imag (x)), z))
76
76
end
77
77
@@ -87,8 +87,8 @@ for elty in [Float32, Float64, Complex64, Complex128]
87
87
@test_throws ArgumentError BLAS. axpy! (α, copy (x1), 1 : div (n,2 ), copy (x2), 0 : (div (n, 2 ) - 1 ))
88
88
@test BLAS. axpy! (α,copy (x1),1 : n,copy (x2),1 : n) ≈ x2 + α* x1
89
89
else
90
- z1 = convert (Vector{elty}, complex (randn (n), randn (n)))
91
- z2 = convert (Vector{elty}, complex (randn (n), randn (n)))
90
+ z1 = convert (Vector{elty}, complex . (randn (n), randn (n)))
91
+ z2 = convert (Vector{elty}, complex . (randn (n), randn (n)))
92
92
α = rand (elty)
93
93
@test BLAS. axpy! (α, copy (z1), copy (z2)) ≈ z2 + α * z1
94
94
@test_throws DimensionMismatch BLAS. axpy! (α, copy (z1), rand (elty, n + 1 ))
0 commit comments