Skip to content

Commit debf2be

Browse files
fix
1 parent 017acdf commit debf2be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/layers/basic.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@ If called with multiple inputs, they are `zip`ped with the layers, thus `Paralle
337337
338338
```jldoctest
339339
julia> model = Chain(Dense(3, 5),
340-
Parallel(vcat, Dense(5, 4), Chain(Dense(5, 7), Dense(7, 4))),
341-
Dense(8, 17));
340+
Parallel(vcat, Dense(5, 4), Chain(Dense(5, 7), Dense(7, 4))),
341+
Dense(8, 17));
342342
343343
julia> size(model(rand(3)))
344344
(17,)

test/cuda/layers.jl

+1
Original file line numberDiff line numberDiff line change
@@ -231,4 +231,5 @@ end
231231
gs = gradient(() -> sum(tanh.(m(x))), params(m))
232232
gs_g = gradient(() -> sum(tanh.(m_g(x_g))), params(m_g))
233233
@test collect(gs_g[m_g.weight]) gs[m.weight]
234+
end
234235
end

0 commit comments

Comments
 (0)