Skip to content

Commit 6bd4f94

Browse files
committed
Fix line length in comment
1 parent ca3c179 commit 6bd4f94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/nf_conv2d_layer_submodule.f90

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,16 @@ pure module subroutine forward(self, input)
8282
jws = j - half_window ! TODO window_height
8383
jwe = j + half_window ! TODO window_height
8484

85-
! This computes the inner tensor product, sum(w_ij * x_ij), for each filter,
86-
! and we add bias b_n to it.
85+
! This computes the inner tensor product, sum(w_ij * x_ij), for each
86+
! filter, and we add bias b_n to it.
8787
inner_product: do concurrent(n = 1:self % filters)
8888
self % output(n,iws,jws) = &
8989
sum(self % kernel(n,:,:,:) * input(:,iws:iwe,jws:jwe)) &
9090
+ self % biases(n)
9191
end do inner_product
9292

93-
! TODO We may need to store self % output before we activate it for the backward
94-
! TODO pass, just like we do for the dense layer.
93+
! TODO We may need to store self % output before we activate it for the
94+
! TODO backward pass, just like we do for the dense layer.
9595

9696
! Activate
9797
self % output(:,iws,jws) = self % activation(self % output(:,iws,jws))

0 commit comments

Comments
 (0)