Skip to content

Commit 96fad0c

Browse files
committed
fix: fix issue
1 parent 701dc5b commit 96fad0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/batchs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ end
2121
function ConcatenatedBatch((; field)::Batch)
2222
ConcatenatedBatch(cat(field; dims=ndims(field)), vcat([0], field .|> size .|> last |> cumsum))
2323
end
24-
function stack_ConcatenatedBatch(x::AbstractVector{<:ConcatenatedBatch{T}})::ConcatenatedBatch{T} where T
24+
function stack_ConcatenatedBatch(x::AbstractVector{ConcatenatedBatch{T}})::ConcatenatedBatch{T} where T
2525
field = mapreduce((a,b) ->cat(a, b; dims=ndims(a)), x) do a
2626
a.field
2727
end

0 commit comments

Comments
 (0)