Skip to content

Commit e86553c

Browse files
Format code of branch "main" (#116)
Co-authored-by: mofeing <[email protected]>
1 parent 5de71d3 commit e86553c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/nn.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ end
9999
conv_flip(x, W) = NNlib.conv(x, W; pad=1, flipped=false)
100100

101101
@test Reactant.compile(conv_noflip, (xx, WW))(xx, WW) ==
102-
[0*1+1*2+2*3; 1*1+2*2+3*3; 1*2+2*3+3*0;;;]
102+
[0*1+1*2+2*3; 1*1+2*2+3*3; 1*2+2*3+3*0;;;]
103103
@test Reactant.compile(conv_flip, (xx, WW))(xx, WW) ==
104-
[3*0+2*1+1*2; 3*1+2*2+1*3; 3*2+2*3+1*0;;;]
104+
[3*0+2*1+1*2; 3*1+2*2+1*3; 3*2+2*3+1*0;;;]
105105
end
106106

107107
@testset "$f" for f in (NNlib.meanpool, NNlib.maxpool)

0 commit comments

Comments
 (0)