Skip to content

Commit

Permalink
Fix: remove the leftover delta addition in cwise_ops_test.
Browse files Browse the repository at this point in the history
  • Loading branch information
gunan committed Nov 24, 2016
1 parent 2ff1303 commit 101ca9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/python/kernel_tests/cwise_ops_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ def _compareBCast(self, xs, ys, dtype, np_func, tf_func):
else:
self._compareGradientX(x, y, np_func, tf_func)
self._compareGradientY(x, y, np_func, tf_func)
self._compareGpu(x, y+ 0.1, np_func, tf_func)
self._compareGpu(x, y, np_func, tf_func)

# TODO(josh11b,vrv): Refactor this to use parameterized tests.
def _testBCastByFunc(self, funcs, xs, ys):
Expand Down

0 comments on commit 101ca9e

Please sign in to comment.