Skip to content

Commit

Permalink
Review comment fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
siju-samuel committed Apr 21, 2020
1 parent 218a7dd commit 293bb05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/relay/op/_tensor_grad.py
Expand Up @@ -75,7 +75,7 @@ def log10_grad(orig, grad):
"""Returns [grad * 1 / (log(10) * x)]"""
x = orig.args[0]
ones = ones_like(x)
ten = const(2.0)
ten = const(10.0)
return [grad * ones / (log(ten) * x)]


Expand Down

0 comments on commit 293bb05

Please sign in to comment.