Home
last modified time | relevance | path

Searched refs:debug_ops (Results 1 – 24 of 24) sorted by relevance

/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_utils.py29 debug_ops="DebugIdentity", argument
70 if isinstance(debug_ops, str):
71 debug_ops = [debug_ops]
73 watch.debug_ops.extend(debug_ops)
84 debug_ops="DebugIdentity", argument
138 if isinstance(debug_ops, str):
139 debug_ops = [debug_ops]
171 debug_ops=debug_ops,
181 debug_ops="DebugIdentity", argument
231 if isinstance(debug_ops, str):
[all …]
Ddebug_utils_test.py92 self.assertEqual(expected_debug_ops, watch.debug_ops)
114 self.assertEqual(["DebugIdentity"], watch_0.debug_ops)
115 self.assertEqual(["DebugIdentity"], watch_1.debug_ops)
126 debug_ops="DebugNanCount",
138 self.assertEqual(["DebugNanCount"], watch_0.debug_ops)
148 debug_ops=["DebugNanCount", "DebugIdentity"],
160 self.assertEqual(["DebugNanCount", "DebugIdentity"], watch_0.debug_ops)
170 debug_ops="DebugNanCount",
182 self.assertEqual(["DebugNanCount"], watch_0.debug_ops)
193 debug_ops=["DebugIdentity", "DebugNanCount"],
Dgrpc_large_data_test.py72 debug_ops=["DebugIdentity"],
102 debug_ops=["DebugIdentity"],
125 debug_ops=["DebugIdentity"],
154 debug_ops=["DebugIdentity"],
175 debug_ops=["DebugIdentity"],
197 debug_ops=["DebugIdentity"],
Ddist_session_debug_grpc_test.py142 debug_ops=["DebugIdentity"],
154 debug_ops=["DebugIdentity(gated_grpc=True)"],
207 debug_ops=["DebugIdentity"],
Dsession_debug_grpc_test.py208 debug_ops=["DebugIdentity", "DebugNumericSummary"],
400 debug_ops=["DebugIdentity(gated_grpc=true)",
473 debug_ops=["DebugIdentity(gated_grpc=true)"],
507 debug_ops=["DebugIdentity(gated_grpc=true)"],
553 debug_ops=["DebugIdentity(gated_grpc=true)"],
718 debug_ops=["DebugNumericSummary(gated_grpc=true)"],
722 debug_ops=["DebugIdentity"],
753 return framework.WatchOptions(debug_ops=["DebugIdentity"])
Dsession_debug_testlib.py129 debug_ops="DebugIdentity", argument
157 debug_ops=debug_ops,
908 debug_ops=["DebugIdentity"],
1198 debug_ops=["DebugIdentity"],
1243 sess, c, debug_ops=["DebugNumericSummary"])
1257 sess, a.initializer, debug_ops=["DebugNumericSummary"])
1298 debug_ops=["DebugNumericSummary"],
1306 sess, m, debug_ops=["DebugNumericSummary"],
1331 debug_ops=["DebugNumericSummary(foo=1.0)"],
1343 debug_ops=["DebugNumericSummary(foo=1.0; bar=false)"],
[all …]
Ddebug_data.py1372 debug_ops = self._debug_watches[device_name][node_name][watched_slot]
1373 for debug_op in debug_ops:
/external/tensorflow/tensorflow/python/debug/wrappers/
Dframework.py253 debug_ops="DebugIdentity", argument
282 self.debug_ops = debug_ops
508 debug_ops=run_start_resp.debug_ops,
674 debug_ops="DebugIdentity", argument
703 debug_ops=debug_ops,
827 debug_ops=None, argument
854 if debug_ops:
855 self.debug_ops = debug_ops
857 self.debug_ops = ["DebugIdentity"]
868 self.debug_ops, self.node_name_regex_whitelist,
[all …]
Dhooks.py119 debug_ops=on_run_start_response.debug_ops,
212 debug_ops=watch_options.debug_ops,
299 debug_ops=watch_options.debug_ops,
343 debug_ops=["DebugIdentity(gated_grpc=true)"])
Ddumping_wrapper_test.py243 debug_ops=["DebugIdentity", "DebugNumericSummary"],
292 debug_ops="DebugIdentity",
297 debug_ops="DebugIdentity",
Dgrpc_wrapper.py196 debug_ops=["DebugIdentity(gated_grpc=true)"])
/external/tensorflow/tensorflow/core/debug/
Ddebug_grpc_io_utils_test.cc121 ASSERT_EQ(1, server_data.server->debug_ops.size()); in TEST_F()
125 EXPECT_EQ(kDebugNodeKey.debug_op, server_data.server->debug_ops[0]); in TEST_F()
141 ASSERT_EQ(1, server_data_.server->debug_ops.size()); in TEST_F()
145 EXPECT_EQ(kDebugNodeKey.debug_op, server_data_.server->debug_ops[0]); in TEST_F()
295 ASSERT_EQ(1, server_data_.server->debug_ops.size()); in TEST_F()
301 EXPECT_EQ(kDebugNodeKey.debug_op, server_data_.server->debug_ops[0]); in TEST_F()
345 ASSERT_EQ(1, server_data_.server->debug_ops.size()); in TEST_F()
351 EXPECT_EQ(kDebugNodeKey.debug_op, server_data_.server->debug_ops[0]); in TEST_F()
Ddebug_graph_utils.cc74 if (watch.debug_ops().empty()) { in InsertNodes()
81 std::vector<string> debug_ops; in InsertNodes() local
82 for (const string& debug_op : watch.debug_ops()) { in InsertNodes()
83 debug_ops.push_back(debug_op); in InsertNodes()
86 tensor_watches[tensor_name] = debug_ops; in InsertNodes()
269 const string& tensor_name, const std::vector<string>& debug_ops, in CreateCopyNode() argument
281 for (const string& debug_op : debug_ops) { in CreateCopyNode()
Ddebug_grpc_testlib.cc76 debug_ops.push_back(debug_op); in SendEvents()
127 debug_ops.clear(); in ClearReceivedDebugData()
Ddebug_grpc_testlib.h56 std::vector<string> debug_ops; variable
Ddebug_graph_utils.h97 const string& tensor_name, const std::vector<string>& debug_ops,
/external/tensorflow/tensorflow/core/protobuf/
Ddebug.proto25 repeated string debug_ops = 3; field
38 // Each debug op listed in debug_ops will publish its output tensor (debug
/external/tensorflow/tensorflow/core/common_runtime/
Ddebugger_state_interface.cc40 for (const string& debug_op : watch.debug_ops()) { in SummarizeDebugTensorWatches()
/external/tensorflow/tensorflow/python/debug/cli/
Danalyzer_cli_test.py626 debug_ops=["DebugIdentity"],
1593 debug_ops=["DebugIdentity"],
1626 debug_ops=["DebugIdentity"],
1706 debug_ops=["DebugIdentity"],
2023 watch.debug_ops.append("DebugIdentity")
/external/tensorflow/tensorflow/contrib/cmake/
Dtf_core_ops.cmake163 "${tensorflow_source_dir}/tensorflow/core/ops/debug_ops.cc"
Dtf_python.cmake427 GENERATE_PYTHON_OP_LIB("debug_ops"
/external/tensorflow/tensorflow/python/training/
Dmonitored_session_test.py1778 debug_ops=['DebugIdentity'],
1784 debug_ops=['DebugIdentity'],
1819 debug_ops=['DebugIdentity'],
1826 debug_ops=['DebugIdentity'],
/external/tensorflow/tensorflow/core/kernels/
DBUILD860 name = "debug_ops",
861 prefix = "debug_ops",
1710 ":debug_ops",
5941 "debug_ops.*",
/external/tensorflow/tensorflow/core/
DBUILD1186 op_lib_names = ["debug_ops"],
1187 deps = ["//tensorflow/core/kernels:debug_ops"],