Skip to content

Commit b436b9e

Browse files
committed
Formatter
1 parent e446ebd commit b436b9e

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

ext/ReactantFixedSizeArraysExt.jl

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,27 @@ using Reactant: TracedRArray, TracedRNumber, Ops
66
using ReactantCore: ReactantCore
77

88
function Reactant.traced_type_inner(
9-
@nospecialize(_::Type{FixedSizeArrays.FixedSizeArrayDefault{T, N}}),
9+
@nospecialize(_::Type{FixedSizeArrays.FixedSizeArrayDefault{T,N}}),
1010
seen,
1111
@nospecialize(mode::Reactant.TraceMode),
1212
@nospecialize(track_numbers::Type),
1313
@nospecialize(sharding),
1414
@nospecialize(runtime)
15-
) where {T, N}
15+
) where {T,N}
1616
T2 = Reactant.TracedRNumber{T}
17-
return FixedSizeArrays.FixedSizeArrayDefault{T2, N}
17+
return FixedSizeArrays.FixedSizeArrayDefault{T2,N}
1818
end
1919

2020
Base.@nospecializeinfer function Reactant.make_tracer(
2121
seen,
22-
@nospecialize(prev::FixedSizeArrays.FixedSizeArrayDefault{T, N}),
22+
@nospecialize(prev::FixedSizeArrays.FixedSizeArrayDefault{T,N}),
2323
@nospecialize(path),
24-
mode; kwargs...
25-
) where {T, N}
24+
mode;
25+
kwargs...,
26+
) where {T,N}
2627
return Reactant.make_tracer(
2728
seen, parent(prev), (path..., 1), mode; kwargs..., track_numbers=Number
2829
)
2930
end
30-
31+
3132
end

0 commit comments

Comments
 (0)