Skip to content

Commit

Permalink
Fix a small typo in the warning message of numOutputs (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathantalewis authored and fkm3 committed Aug 24, 2017
1 parent 7e0ef4b commit d79a919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow-ops/src/TensorFlow/Gradient.hs
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ numOutputs o =
"Variable" -> 1
"ZerosLike" -> 1
"Fill" -> 1
_ -> error $ "numOuputs not implemented for " ++ show (o ^. op)
_ -> error $ "numOutputs not implemented for " ++ show (o ^. op)

-- Divides `x / y` assuming `x, y >= 0`, treating `0 / 0 = 0`
safeShapeDiv :: Tensor v1 Int32 -> Tensor v2 Int32 -> Tensor Build Int32
Expand Down

0 comments on commit d79a919

Please sign in to comment.