63 lines
2.3 KiB
Python
63 lines
2.3 KiB
Python
# Copyright 2017 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.
|
|
# ==============================================================================
|
|
"""Unit tests for common values and methods of TensorFlow Debugger."""
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
import json
|
|
|
|
from tensorflow.python.debug.lib import common
|
|
from tensorflow.python.framework import constant_op
|
|
from tensorflow.python.framework import test_util
|
|
from tensorflow.python.platform import googletest
|
|
|
|
|
|
class CommonTest(test_util.TensorFlowTestCase):
|
|
|
|
@test_util.run_deprecated_v1
|
|
def testOnFeedOneFetch(self):
|
|
a = constant_op.constant(10.0, name="a")
|
|
b = constant_op.constant(20.0, name="b")
|
|
run_key = common.get_run_key({"a": a}, [b])
|
|
loaded = json.loads(run_key)
|
|
self.assertItemsEqual(["a:0"], loaded[0])
|
|
self.assertItemsEqual(["b:0"], loaded[1])
|
|
|
|
@test_util.run_deprecated_v1
|
|
def testGetRunKeyFlat(self):
|
|
a = constant_op.constant(10.0, name="a")
|
|
b = constant_op.constant(20.0, name="b")
|
|
run_key = common.get_run_key({"a": a}, [a, b])
|
|
loaded = json.loads(run_key)
|
|
self.assertItemsEqual(["a:0"], loaded[0])
|
|
self.assertItemsEqual(["a:0", "b:0"], loaded[1])
|
|
|
|
@test_util.run_deprecated_v1
|
|
def testGetRunKeyNestedFetches(self):
|
|
a = constant_op.constant(10.0, name="a")
|
|
b = constant_op.constant(20.0, name="b")
|
|
c = constant_op.constant(30.0, name="c")
|
|
d = constant_op.constant(30.0, name="d")
|
|
run_key = common.get_run_key(
|
|
{}, {"set1": [a, b], "set2": {"c": c, "d": d}})
|
|
loaded = json.loads(run_key)
|
|
self.assertItemsEqual([], loaded[0])
|
|
self.assertItemsEqual(["a:0", "b:0", "c:0", "d:0"], loaded[1])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
googletest.main()
|