HomeSort by relevance Sort by last modified time
    Searched refs:debug_node_key (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/core/debug/
debug_grpc_testlib.cc 81 const DebugNodeKey debug_node_key(metadata.device(), node_name,
83 if (write_enabled_debug_node_keys_.find(debug_node_key) !=
100 const DebugNodeKey& debug_node_key = debug_node_keys_[i]; local
101 change->set_node_name(debug_node_key.node_name);
102 change->set_output_slot(debug_node_key.output_slot);
103 change->set_debug_op(debug_node_key.debug_op);
107 write_enabled_debug_node_keys_.insert(debug_node_key);
109 write_enabled_debug_node_keys_.erase(debug_node_key);
132 const DebugNodeKey& debug_node_key) {
135 debug_node_keys_.push_back(debug_node_key);
    [all...]
debug_io_utils.h 27 #include "tensorflow/core/debug/debug_node_key.h"
72 // debug_node_key: A DebugNodeKey identifying the debug node.
78 static Status PublishDebugTensor(const DebugNodeKey& debug_node_key,
85 static Status PublishDebugTensor(const DebugNodeKey& debug_node_key,
163 // debug_node_key: A DebugNodeKey identifying the debug node.
168 static Status DumpTensorToDir(const DebugNodeKey& debug_node_key,
183 const DebugNodeKey& debug_node_key,
198 static Status DumpTensorToEventFile(const DebugNodeKey& debug_node_key,
311 static Status SendTensorThroughGrpcStream(const DebugNodeKey& debug_node_key,
debug_io_utils.cc 58 Event PrepareChunkEventProto(const DebugNodeKey& debug_node_key,
71 value->set_node_name(debug_node_key.debug_node_name);
75 value->set_tag(debug_node_key.node_name);
79 metadata.set_device(debug_node_key.device_name);
80 metadata.set_output_slot(debug_node_key.output_slot);
98 << "The debug_node_name is " << debug_node_key.debug_node_name
123 Status WrapStringTensorAsEvents(const DebugNodeKey& debug_node_key,
143 debug_node_key.debug_node_name,
156 Event event = PrepareChunkEventProto(debug_node_key, wall_time_us,
183 Status WrapTensorAsEvents(const DebugNodeKey& debug_node_key,
    [all...]
debug_grpc_testlib.h 49 const DebugNodeKey& debug_node_key);
debug_io_utils_test.cc 21 #include "tensorflow/core/debug/debug_node_key.h"
58 DebugNodeKey debug_node_key("/job:worker/replica:1/task:0/device:GPU:2",
61 debug_node_key.device_name);
62 EXPECT_EQ("hidden_1/MatMul", debug_node_key.node_name);
63 EXPECT_EQ(0, debug_node_key.output_slot);
64 EXPECT_EQ("DebugIdentity", debug_node_key.debug_op);
65 EXPECT_EQ("hidden_1/MatMul:0:DebugIdentity", debug_node_key.debug_node_name);
67 debug_node_key.device_path);
  /external/tensorflow/tensorflow/python/debug/lib/
grpc_debug_server.py 201 debug_node_key = (state_change.node_name, state_change.output_slot,
207 self._breakpoints.add(debug_node_key)
212 if debug_node_key in self._breakpoints:
213 self._breakpoints.discard(debug_node_key)
219 if debug_node_key in self._breakpoints:
220 self._breakpoints.discard(debug_node_key)
224 debug_node_key)

Completed in 96 milliseconds