Skip to content

Commit 7d09283

Browse files
committed
Fixed typo.
1 parent d68b2e8 commit 7d09283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/reshape_test.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function test_for_input_and_output()
2727
input = rand(2, 5)
2828
output = rand(3, 5)
2929
input2 = reshape((@view input[:, 1:2]), 2, 1, 2)
30-
output2 = reshape((@view input[:, 1:3]), 3, 1, 2)
30+
output2 = reshape((@view output[:, 1:2]), 3, 1, 2)
3131
@variables soutput[1:3]
3232
built_function = build_nn_function((soutput - soutput2).^2, nn.params, nn.input, soutput)
3333
outputs = built_function(input2, output2, nn_cpu.params)

0 commit comments

Comments
 (0)