1
0
mirror of https://github.com/tensorflow/haskell.git synced 2024-06-02 11:03:34 +02:00

Delete inaccurate comments

This commit is contained in:
fkm3 2017-07-25 00:15:04 -04:00
parent bebc4aa7d9
commit c6783ebf48

View File

@ -444,8 +444,8 @@ gradForBinaryCwise (x, gx) (y, gy) =
where
dx = reshape (sum gx rx) sx
dy = reshape (sum gy ry) sy
sx = shape x -- (x :: Tensor Build t)
sy = shape y -- (y :: Tensor Build t)
sx = shape x
sy = shape y
(rx, ry) = broadcastGradientArgs sx sy
-- | The gradient function for an op type.