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

1 2

  /external/tensorflow/tensorflow/core/debug/
debug_node_key.cc 27 const int32 output_slot, const string& debug_op)
31 debug_op(debug_op),
33 strings::StrCat(node_name, ":", output_slot, ":", debug_op)),
38 output_slot == other.output_slot && debug_op == other.debug_op);
debug_node_key.h 31 const int32 output_slot, const string& debug_op);
44 const string debug_op; member in struct:tensorflow::DebugNodeKey
debug_grpc_testlib.cc 51 const string debug_op = name_items[2]; local
75 debug_ops.push_back(debug_op);
82 metadata.output_slot(), debug_op);
103 change->set_debug_op(debug_node_key.debug_op);
debug_service.proto 40 string debug_op = 4;
debug_graph_utils.cc 82 for (const string& debug_op : watch.debug_ops()) {
83 debug_ops.push_back(debug_op);
281 for (const string& debug_op : debug_ops) {
285 TF_RETURN_IF_ERROR(ParseDebugOpName(debug_op, &debug_op_name_proper,
debug_grpc_io_utils_test.cc 125 EXPECT_EQ(kDebugNodeKey.debug_op, server_data.server->debug_ops[0]);
145 EXPECT_EQ(kDebugNodeKey.debug_op, server_data_.server->debug_ops[0]);
301 EXPECT_EQ(kDebugNodeKey.debug_op, server_data_.server->debug_ops[0]);
351 EXPECT_EQ(kDebugNodeKey.debug_op, server_data_.server->debug_ops[0]);
debug_io_utils.h 120 // tensor_name:debug_op, e.g., "Weights:0:DebugIdentity".
133 // tensor_name:debug_op, e.g., "Weights:0:DebugIdentity".
157 // debug_op = DebugIdentity,
180 // debug_op: Name of the debug op, e.g., DebugIdentity.
218 k.output_slot, ":", k.debug_op, ":"));
debug_io_utils.cc 68 // For example, if tensor_name = "foo/node_a:0", and the debug_op is
599 debug_node_key.debug_op)),
717 ":", debug_op_state_change.debug_op());
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
evaluator_test.py 31 device_name, node_name, output_slot, debug_op, exec_index = (
36 self.assertEqual("DebugIdentity", debug_op)
39 device_name, node_name, output_slot, debug_op, exec_index = (
44 self.assertEqual("DebugIdentity", debug_op)
48 device_name, node_name, output_slot, debug_op, exec_index = (
53 self.assertEqual("DebugNanCount", debug_op)
56 device_name, node_name, output_slot, debug_op, exec_index = (
62 self.assertEqual("DebugNumericSummary", debug_op)
66 device_name, node_name, output_slot, debug_op, exec_index = (
72 self.assertEqual("DebugIdentity", debug_op)
    [all...]
evaluator.py 58 debug_op: If the debug op suffix exists, the debug op name; otheriwse,
96 debug_op = _DEFAULT_DEBUG_OP
101 debug_op = split_items[2]
103 return device_name, node_name, output_slot, debug_op, exec_index
135 device_name, node_name, output_slot, debug_op, exec_index = (
140 node_name, output_slot, debug_op,
tensor_format_test.py 159 debug_op = "DebugIdentity"
162 a, "%s:%s" % (tensor_name, debug_op), np_printoptions={"linewidth": 40})
165 8 + len(tensor_name) + 1 + len(debug_op), "yellow")],
  /external/tensorflow/tensorflow/core/common_runtime/
debugger_state_interface.cc 40 for (const string& debug_op : watch.debug_ops()) {
41 oss << debug_op << ","; local
  /external/tensorflow/tensorflow/python/debug/lib/
grpc_debug_server.py 38 ["node_name", "output_slot", "debug_op"])
41 def _state_change(new_state, node_name, output_slot, debug_op):
46 state_change.debug_op = debug_op
202 state_change.debug_op)
206 state_change.output_slot, state_change.debug_op)
211 state_change.output_slot, state_change.debug_op)
218 state_change.debug_op)
327 node_name, output_slot, _, debug_op = (
330 DebugWatch(node_name, output_slot, debug_op))
    [all...]
debug_graphs_test.py 84 debug_op) = debug_graphs.parse_debug_node_name(debug_node_name_1)
89 self.assertEqual("DebugIdentity", debug_op)
debug_data.py 184 def _get_tensor_watch_key(node_name, output_slot, debug_op):
191 debug_op: Name of the debug op that is used to watch the tensor, as a
198 return "%s:%s" % (_get_tensor_name(node_name, output_slot), debug_op)
276 `node_name`, `output_slot`, `debug_op`, and path to the dump file
303 `node_name`_`output_slot`_`debug_op`_`timestamp`
336 self.debug_op,
377 def debug_op(self): member in class:DebugTensorDatum
431 (`str`) A watch key, in the form of `tensor_name`:`debug_op`.
435 self.debug_op)
566 datum.output_slot].add(datum.debug_op)
    [all...]
debug_gradients.py 271 debug_op = self.identify_gradient(output)
276 if consumer == debug_op.op:
282 consumer._update_input(i, debug_op) # pylint: disable=protected-access
grpc_debug_test_server.py 161 debug_op = items[2]
162 if ((node_name, output_slot, debug_op) in
229 (node_name, output_slot, debug_op) tuples to toggle the
259 node_name, output_slot, debug_op = watch_key
261 self.request_unwatch(node_name, output_slot, debug_op)
263 self.request_watch(node_name, output_slot, debug_op)
383 (node_name, output_slot, debug_op) tuples to toggle the
source_utils.py 235 node_name, output_slot, debug_op = watch_key.split(":")
239 dump.get_tensors(node_name, int(output_slot), debug_op))
debug_data_test.py 122 self.assertEqual("DebugIdentity", datum.debug_op)
134 datum.debug_op,
140 datum.debug_op,
debug_graphs.py 129 debug_op = name[name.rindex("_") + 1:]
141 return watched_node_name, watched_output_slot, debug_op_index, debug_op
  /cts/hostsidetests/security/securityPatch/CVE-2016-8431/
local_poc.h 202 void *debug_op; member in struct:host1x
  /cts/hostsidetests/security/securityPatch/CVE-2016-8432/
local_poc.h 202 void *debug_op; member in struct:host1x
  /external/tensorflow/tensorflow/core/ops/
debug_ops.cc 53 <debug_op>;<grpc_url>;<gated_grpc>, wherein gated_grpc is boolean represented
81 <debug_op>;<grpc_url>;<gated_grpc>, wherein gated_grpc is boolean represented
  /external/valgrind/include/vki/
vki-xen-domctl.h 628 struct vki_xen_domctl_debug_op debug_op; member in union:vki_xen_domctl::__anon42870
  /external/mesa3d/src/mesa/main/
atifragshader.c 127 static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst, function
695 debug_op(optype, arg_count, op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod, arg3, arg3Rep, arg3Mod);

Completed in 275 milliseconds

1 2