HomeSort by relevance Sort by last modified time
    Searched refs:debug_urls (Results 1 - 25 of 26) sorted by null

1 2

  /external/tensorflow/tensorflow/python/debug/lib/
debug_utils.py 30 debug_urls=None,
53 debug_urls: (`str` or `list` of `str`) URL(s) to send debug values to,
75 if debug_urls:
76 if isinstance(debug_urls, str):
77 debug_urls = [debug_urls]
79 watch.debug_urls.extend(debug_urls)
85 debug_urls=None,
109 debug_urls: URLs to send debug values to. Can be a list of strings
    [all...]
debug_utils_test.py 76 output_slot, debug_ops and debug_urls.
93 self.assertEqual(expected_debug_urls, watch.debug_urls)
99 self._run_options, "foo/node_a", 1, debug_urls="file:///tmp/tfdbg_1")
101 self._run_options, "foo/node_b", 0, debug_urls="file:///tmp/tfdbg_2")
118 self.assertEqual(["file:///tmp/tfdbg_1"], watch_0.debug_urls)
119 self.assertEqual(["file:///tmp/tfdbg_2"], watch_1.debug_urls)
127 debug_urls="file:///tmp/tfdbg_1")
141 self.assertEqual(["file:///tmp/tfdbg_1"], watch_0.debug_urls)
149 debug_urls="file:///tmp/tfdbg_1")
163 self.assertEqual(["file:///tmp/tfdbg_1"], watch_0.debug_urls)
    [all...]
session_debug_file_test.py 81 debug_urls = self._debug_urls(run_number=i)
86 run_options, "%s/read" % u_name, 0, debug_urls=debug_urls)
90 run_options, "%s/read" % v_name, 0, debug_urls=debug_urls)
session_debug_testlib.py 157 debug_urls=self._debug_urls(),
195 debug_urls = "file://%s" % self._dump_root
199 run_options, "%s/read" % u_name, 0, debug_urls=debug_urls)
202 run_options, "%s/read" % v_name, 0, debug_urls=debug_urls)
231 debug_urls = self._debug_urls()
236 debug_urls=debug_urls)
238 run_options, "v", 0, ["DebugNumericSummary"], debug_urls=debug_urls
    [all...]
dist_session_debug_grpc_test.py 143 debug_urls=[self.debug_server_url])
155 debug_urls=[self.debug_server_url])
session_debug_multi_gpu_test.py 74 debug_urls="file://" + self._dump_root)
session_debug_grpc_test.py 568 debug_urls=[self._debug_server_url_1])
639 debug_urls=[debug_server_url])
672 debug_urls=[self._debug_server_url_1, self._debug_server_url_2])
717 debug_urls=[self._debug_server_url_1])
    [all...]
source_utils_test.py 117 run_options, sess.graph, debug_urls=["file://%s" % self.dump_root])
240 run_options, sess.graph, debug_urls=["file://%s" % self.dump_root])
debug_graph_reconstruction_test.py 95 run_options, sess.graph, debug_urls=self._debug_url)
grpc_debug_test_server.py 464 run_options, x_init_name, 0, debug_urls=[debug_server_url])
debug_gradients_test.py 347 debug_utils.watch_graph(run_options, self.sess.graph, debug_urls=debug_url)
stepper.py 712 debug_urls=["file://" + dump_path])
    [all...]
  /external/tensorflow/tensorflow/core/debug/
debugger_state_impl.cc 26 for (const string& url : watch.debug_urls()) {
56 std::unordered_set<string> debug_urls; local
59 for (const string& url : watch.debug_urls()) {
60 debug_urls.insert(url);
64 return DebugIO::PublishGraph(graph, device_name, debug_urls);
debug_graph_utils.h 98 const std::vector<string>& debug_urls, Node** copy_node);
117 const std::vector<string>& debug_urls,
debug_io_utils.h 67 const std::unordered_set<string>& debug_urls);
75 // debug_urls: An array of debug target URLs, e.g.,
81 const gtl::ArraySlice<string>& debug_urls,
88 const gtl::ArraySlice<string>& debug_urls);
94 // debug_urls: The set of debug URLs to publish the graph to.
96 const std::unordered_set<string>& debug_urls);
121 // debug_urls: the debug URLs of the debug node.
126 const std::vector<string>& debug_urls);
debug_graph_utils.cc 91 for (const string& url : watch.debug_urls()) {
270 const std::vector<string>& debug_urls, Node** copy_node) {
279 // Cross debug_ops and debug_urls to get the list of debug ops and watches.
282 for (const string& debug_url : debug_urls) {
442 const std::vector<string>& debug_urls, const int debug_op_num,
458 .Attr("debug_urls", debug_urls);
debug_io_utils.cc 329 const std::unordered_set<string>& debug_urls) {
370 for (const string& url : debug_urls) {
413 const gtl::ArraySlice<string>& debug_urls,
417 for (const string& url : debug_urls) {
455 "Publishing to ", num_failed_urls, " of ", debug_urls.size(),
469 const gtl::ArraySlice<string>& debug_urls) {
470 return PublishDebugTensor(debug_node_key, tensor, wall_time_us, debug_urls,
475 const std::unordered_set<string>& debug_urls) {
488 for (const string& debug_url : debug_urls) {
533 const std::vector<string>& debug_urls) {
    [all...]
  /external/tensorflow/tensorflow/core/ops/
debug_ops.cc 92 .Attr("debug_urls: list(string) = []")
104 debug_urls: List of URLs to debug targets, e.g.,
106 gated_grpc: Whether this op will be gated. If any of the debug_urls of this
109 debug op has been enabled at the debug_url. If all of the debug_urls of this
120 .Attr("debug_urls: list(string) = []")
132 debug_urls: List of URLs to debug targets, e.g.,
134 gated_grpc: Whether this op will be gated. If any of the debug_urls of this
137 debug op has been enabled at the debug_url. If all of the debug_urls of this
148 .Attr("debug_urls: list(string) = []")
191 debug_urls: List of URLs to debug targets, e.g.
    [all...]
  /external/tensorflow/tensorflow/python/debug/wrappers/
framework.py 68 with the debug URLs supplied in the debug_urls field of the response.
95 i) a run() call with fetches, feeds and debug_urls specified.
250 debug_urls,
261 debug_urls: (`list` of `str`) debug_urls used in watching the tensors
277 _check_type(debug_urls, list)
278 self.debug_urls = debug_urls
472 run_start_resp.debug_urls,
606 debug_urls,
    [all...]
hooks.py 115 on_run_start_response.debug_urls,
199 debug_urls, watch_options = self._session_wrapper._prepare_run_watch_config(
206 debug_urls=debug_urls,
291 debug_urls=self._grpc_debug_wrapper_session.prepare_run_debug_urls(
framework_test.py 131 debug_urls = self._bad_debug_urls or []
135 self._bad_run_start_action, debug_urls)
138 framework.OnRunStartAction.DEBUG_RUN, debug_urls)
293 # debug_urls ought to be a list of str, not a str. So an exception should
local_cli_wrapper.py 510 debug_urls = []
513 debug_urls = self._get_run_debug_urls()
516 debug_urls,
584 """Get the debug_urls value for the current run() call.
587 debug_urls: (list of str) Debug URLs for the current run() call.
  /external/tensorflow/tensorflow/core/kernels/
debug_ops_test.cc 42 Status Init(DataType input_type, const std::vector<string>& debug_urls) {
48 .Attr("debug_urls", debug_urls)
77 std::vector<string> debug_urls; local
82 debug_urls.push_back(strings::StrCat("file://", dump_root));
87 TF_ASSERT_OK(Init(DT_INT32, debug_urls));
251 Status InitGated(DataType input_type, const std::vector<string>& debug_urls) {
256 .Attr("debug_urls", debug_urls)
606 std::vector<string> debug_urls({"grpc://server:3333"})
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
debugger_state_interface.cc 45 for (const string& debug_url : watch.debug_urls()) {
  /external/tensorflow/tensorflow/python/debug/cli/
analyzer_cli_test.py 625 debug_urls="file://%s" % cls._dump_root)
    [all...]

Completed in 251 milliseconds

1 2