|
3 | 3 | A::AbstractPtrStrideArray{T,N,R,S,X,O},
|
4 | 4 | ::Val{P}
|
5 | 5 | ) where {P,T,N,R,S,X,O}
|
6 |
| - length(P) == N || throw("cannot perm $N-dimensional array with $P of length = $(length(P))") |
| 6 | + length(P) == N || |
| 7 | + throw("cannot perm $N-dimensional array with $P of length = $(length(P))") |
7 | 8 | q = Expr(
|
8 | 9 | :block,
|
9 |
| - Expr(:meta,:inline), |
10 |
| - :(sz = $getfield(A,:sizes)), |
| 10 | + Expr(:meta, :inline), |
| 11 | + :(sz = $getfield(A, :sizes)), |
11 | 12 | :(sx = $getfield(A, :strides)),
|
12 |
| - :(o = $getfield(A,:offsets)) |
| 13 | + :(o = $getfield(A, :offsets)) |
13 | 14 | )
|
14 | 15 | sz_expr = Expr(:tuple)
|
15 | 16 | sx_expr = Expr(:tuple)
|
16 | 17 | o_expr = Expr(:tuple)
|
17 | 18 | rv_expr = Expr(:tuple)
|
18 | 19 | for n = 1:N
|
19 | 20 | j = P[n]
|
20 |
| - push!(sz_expr.args, :($getfield(sz ,$j))) |
21 |
| - push!(sx_expr.args, :($getfield(sx ,$j))) |
22 |
| - push!(o_expr.args, :($getfield(o ,$j))) |
| 21 | + push!(sz_expr.args, :($getfield(sz, $j))) |
| 22 | + push!(sx_expr.args, :($getfield(sx, $j))) |
| 23 | + push!(o_expr.args, :($getfield(o, $j))) |
23 | 24 | push!(rv_expr.args, R[j])
|
24 | 25 | end
|
25 |
| - push!(q.args, :(AbstractPtrArray(pointer(A), $sz_expr, $sx_expr, $o_expr, Val{$rv_expr}()))) |
| 26 | + push!( |
| 27 | + q.args, |
| 28 | + :(AbstractPtrArray( |
| 29 | + pointer(A), |
| 30 | + $sz_expr, |
| 31 | + $sx_expr, |
| 32 | + $o_expr, |
| 33 | + Val{$rv_expr}() |
| 34 | + )) |
| 35 | + ) |
26 | 36 | q
|
27 | 37 | end
|
28 | 38 |
|
29 |
| - |
30 |
| -@inline Base.adjoint(A::AbstractStrideMatrix{<:Real}) = permutedims(A, Val{(2, 1)}()) |
| 39 | +@inline Base.adjoint(A::AbstractStrideMatrix{<:Real}) = |
| 40 | + permutedims(A, Val{(2, 1)}()) |
31 | 41 | @inline Base.transpose(A::AbstractStrideMatrix) = permutedims(A, Val{(2, 1)}())
|
32 | 42 |
|
33 |
| -@inline function Base.transpose( |
34 |
| - a::AbstractPtrArray{<:Any,1} |
35 |
| -) |
36 |
| - sx = getfield(getfield(a,:strides), 1) |
37 |
| - so = getfield(getfield(a,:offsets), 1) |
38 |
| - AbstractPtrArray(pointer(a), (One(), static_length(a)), (sx, sx), (so, so), Val{(2,1)}()) |
| 43 | +@inline function Base.transpose(a::AbstractPtrArray{<:Any,1}) |
| 44 | + sx = getfield(getfield(a, :strides), 1) |
| 45 | + so = getfield(getfield(a, :offsets), 1) |
| 46 | + AbstractPtrArray( |
| 47 | + pointer(a), |
| 48 | + (One(), static_length(a)), |
| 49 | + (sx, sx), |
| 50 | + (so, so), |
| 51 | + Val{(2, 1)}() |
| 52 | + ) |
39 | 53 | end
|
40 | 54 | @inline Base.adjoint(a::AbstractPtrArray{<:Real}) = transpose(a)
|
41 | 55 |
|
42 |
| - |
43 | 56 | @inline row_major(a::AbstractStrideVector) = a
|
44 | 57 | @inline row_major(A::AbstractStrideMatrix) = transpose(A)
|
45 | 58 | @inline row_major(A::AbstractStrideArray{T,N}) where {T,N} =
|
|
0 commit comments