forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogging_ops_test.py
More file actions
72 lines (60 loc) · 2.35 KB
/
Copy pathlogging_ops_test.py
File metadata and controls
72 lines (60 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Tests for tensorflow.kernels.logging_ops."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import tensorflow as tf
class LoggingOpsTest(tf.test.TestCase):
def testAssertDivideByZero(self):
with self.test_session() as sess:
epsilon = tf.convert_to_tensor(1e-20)
x = tf.convert_to_tensor(0.0)
y = tf.convert_to_tensor(1.0)
z = tf.convert_to_tensor(2.0)
# assert(epsilon < y)
# z / y
with sess.graph.control_dependencies(
[tf.Assert(tf.less(epsilon, y), ["Divide-by-zero"])]):
out = tf.div(z, y)
self.assertAllEqual(2.0, out.eval())
# assert(epsilon < x)
# z / x
#
# This tests printing out multiple tensors
with sess.graph.control_dependencies(
[tf.Assert(tf.less(epsilon, x),
["Divide-by-zero", "less than x"])]):
out = tf.div(z, x)
with self.assertRaisesOpError("less than x"):
out.eval()
class PrintGradientTest(tf.test.TestCase):
def testPrintShape(self):
inp = tf.constant(2.0, shape=[100, 32])
inp_printed = tf.Print(inp, [inp])
self.assertEqual(inp.get_shape(), inp_printed.get_shape())
def testPrintGradient(self):
with self.test_session():
inp = tf.constant(2.0, shape=[100, 32], name="in")
w = tf.constant(4.0, shape=[10, 100], name="w")
wx = tf.matmul(w, inp, name="wx")
wx_print = tf.Print(wx, [w, w, w])
wx_grad = tf.gradients(wx, w)[0]
wx_print_grad = tf.gradients(wx_print, w)[0]
wxg = wx_grad.eval()
wxpg = wx_print_grad.eval()
self.assertAllEqual(wxg, wxpg)
if __name__ == "__main__":
tf.test.main()