Skip to content

Commit 2e0cafe

Browse files
committed
format
1 parent 2225134 commit 2e0cafe

9 files changed

+369
-203
lines changed

.JuliaFormatter.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
indent = 2
1+
indent = 2
2+
margin = 80
3+
remove_extra_newlines = true
4+
long_to_short_function_def = true
5+
format_docstrings = true
6+
trailing_comma = false
7+
separate_kwargs_with_semicolon = true

docs/make.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ makedocs(;
99
format = Documenter.HTML(;
1010
prettyurls = get(ENV, "CI", "false") == "true",
1111
canonical = "https://JuliaSIMD.github.io/StrideArraysCore.jl",
12-
assets = String[],
12+
assets = String[]
1313
),
14-
pages = ["Home" => "index.md"],
14+
pages = ["Home" => "index.md"]
1515
)
1616

1717
deploydocs(; repo = "github.com/JuliaSIMD/StrideArraysCore.jl")

src/StrideArraysCore.jl

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module StrideArraysCore
22

3-
using LayoutPointers, ArrayInterface, ThreadingUtilities, ManualMemory, IfElse, Static
3+
using LayoutPointers,
4+
ArrayInterface, ThreadingUtilities, ManualMemory, IfElse, Static
45
using Static: StaticInt, StaticBool, True, False, Zero, One
56
const Integer = Union{StaticInt,Base.BitInteger}
67

@@ -37,7 +38,9 @@ using SIMDTypes: NativeTypes, Bit
3738
export PtrArray, StrideArray, StaticInt, static
3839

3940
@static if VERSION < v"1.7"
40-
struct Returns{T}; x::T; end
41+
struct Returns{T}
42+
x::T
43+
end
4144
(r::Returns)(args...) = r.x
4245
end
4346

@@ -52,9 +55,7 @@ include("adjoints.jl")
5255

5356
if VERSION >= v"1.7.0" && hasfield(Method, :recursion_relation)
5457
dont_limit = Returns(true)
55-
for f in (
56-
_strides,
57-
)
58+
for f in (_strides,)
5859
for m in methods(f)
5960
m.recursion_relation = dont_limit
6061
end

src/adjoints.jl

+30-17
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,56 @@
33
A::AbstractPtrStrideArray{T,N,R,S,X,O},
44
::Val{P}
55
) 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))")
78
q = Expr(
89
:block,
9-
Expr(:meta,:inline),
10-
:(sz = $getfield(A,:sizes)),
10+
Expr(:meta, :inline),
11+
:(sz = $getfield(A, :sizes)),
1112
:(sx = $getfield(A, :strides)),
12-
:(o = $getfield(A,:offsets))
13+
:(o = $getfield(A, :offsets))
1314
)
1415
sz_expr = Expr(:tuple)
1516
sx_expr = Expr(:tuple)
1617
o_expr = Expr(:tuple)
1718
rv_expr = Expr(:tuple)
1819
for n = 1:N
1920
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)))
2324
push!(rv_expr.args, R[j])
2425
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+
)
2636
q
2737
end
2838

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)}())
3141
@inline Base.transpose(A::AbstractStrideMatrix) = permutedims(A, Val{(2, 1)}())
3242

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+
)
3953
end
4054
@inline Base.adjoint(a::AbstractPtrArray{<:Real}) = transpose(a)
4155

42-
4356
@inline row_major(a::AbstractStrideVector) = a
4457
@inline row_major(A::AbstractStrideMatrix) = transpose(A)
4558
@inline row_major(A::AbstractStrideArray{T,N}) where {T,N} =

0 commit comments

Comments
 (0)