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

1 2 3 4 5 6 7 8

  /external/tensorflow/tensorflow/core/debug/
debug_node_key.cc 26 DebugNodeKey::DebugNodeKey(const string& device_name, const string& node_name,
29 node_name(node_name),
33 strings::StrCat(node_name, ":", output_slot, ":", debug_op)),
37 return (device_name == other.device_name && node_name == other.node_name &&
debug_gateway.cc 28 [this](const string& node_name, const int output_slot,
37 comp_cb_(node_name, output_slot == 0);
43 CopyTensor(node_name, output_slot, tensor, ctx,
44 [this, node_name, output_slot,
46 val_cb_(node_name, output_slot, *copied_tensor, is_ref);
68 void DebugGateway::CopyTensor(const string& node_name, const int output_slot,
80 string tensor_tag = strings::StrCat(node_name, ":", output_slot);
99 [node_name, cpu_tensor, copy_done_cb](const Status& s) {
103 LOG(ERROR) << "Copying of device Tensor " << node_name
debug_gateway.h 40 // node_name: Name of the node that has just completed execution
42 typedef std::function<void(const string& node_name, const bool any_output)>
51 // node_name: Name of the node of which the output has become available
55 typedef std::function<void(const string& node_name, const int output_slot,
76 void CopyTensor(const string& node_name, const int output_slot,
debug_node_key.h 30 DebugNodeKey(const string& device_name, const string& node_name,
42 const string node_name; member in struct:tensorflow::DebugNodeKey
  /external/autotest/client/common_lib/cros/cfm/
cras_input_node.py 7 def __init__(self, node_id, node_name, gain, node_type, device_id,
10 self.node_name = node_name
18 'Gain: %d' % (self.node_id, self.node_name, self.device_id,
cras_output_node.py 7 def __init__(self, node_id, node_type, node_name, volume, device_id,
11 self.node_name = node_name
18 'Volume: %d' % (self.node_id, self.node_name, self.device_id,
  /external/tensorflow/tensorflow/python/debug/cli/
evaluator_test.py 31 device_name, node_name, output_slot, debug_op, exec_index = (
34 self.assertEqual("foo", node_name)
39 device_name, node_name, output_slot, debug_op, exec_index = (
42 self.assertEqual("hidden_0/Weights", node_name)
48 device_name, node_name, output_slot, debug_op, exec_index = (
51 self.assertEqual("foo", node_name)
56 device_name, node_name, output_slot, debug_op, exec_index = (
60 self.assertEqual("hidden_0/Weights", node_name)
66 device_name, node_name, output_slot, debug_op, exec_index = (
70 self.assertEqual("foo", node_name)
    [all...]
analyzer_cli.py 64 node_name=None,
74 node_name: (str or None) name of the node involved (if any). If None,
92 if node_name:
96 "node_info -a -d -t %s" % node_name,
101 "print_tensor %s" % node_name,
106 "list_inputs -c -r %s" % node_name,
111 "list_outputs -c -r %s" % node_name,
223 "node_name",
252 "node_name",
283 "node_name",
    [all...]
evaluator.py 56 node_name: Name of the node.
94 node_name = split_items[0]
99 node_name = split_items[0]
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,
145 "unavailable" % (node_name, output_slot))
analyzer_cli_test.py 89 node_name = line.strip().split(" ")[1]
91 return op_type, node_name
260 node_name,
276 node_name: Name of the node.
297 tst.assertEqual("Node %s" % node_name, next(line_iter))
309 for op_type, node_name in input_op_type_node_name_pairs:
310 tst.assertEqual(" [%s] %s" % (op_type, node_name), next(line_iter))
318 for op_type, node_name in ctrl_input_op_type_node_name_pairs:
319 tst.assertEqual(" [%s] %s" % (op_type, node_name), next(line_iter))
336 op_type, node_name = parse_op_and_node(line
    [all...]
  /external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_soc_interface/include/
node_data_float.h 34 char node_name[NODE_DATA_FLOAT_NODE_NAME_BUF_SIZE]; member in struct:NodeDataFloat
  /external/ltp/testcases/kernel/syscalls/mknod/
mknod02.c 96 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
125 TEST(mknod(node_name, MODE_SGID, 0));
131 node_name, MODE_SGID, TEST_ERRNO,
139 if (stat(node_name, &buf) < 0) {
141 node_name, TEST_ERRNO);
150 "bit not set", node_name);
158 node_name);
165 node_name, MODE_SGID);
169 if (unlink(node_name) == -1) {
171 node_name, errno, strerror(errno))
    [all...]
mknod03.c 96 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
125 TEST(mknod(node_name, MODE_SGID, 0));
130 "%s", node_name, MODE_SGID, TEST_ERRNO,
138 if (stat(node_name, &buf) < 0) {
140 node_name, TEST_ERRNO);
149 "set", node_name);
157 node_name);
164 node_name, MODE_SGID);
168 if (unlink(node_name) == -1) {
170 node_name, errno, strerror(errno))
    [all...]
mknod04.c 96 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
126 TEST(mknod(node_name, MODE_RWX, 0));
131 "%s", node_name, MODE_RWX, TEST_ERRNO,
139 if (stat(node_name, &buf) < 0) {
141 node_name, TEST_ERRNO);
149 "bit set", node_name);
157 node_name);
164 node_name, MODE_RWX);
168 if (unlink(node_name) == -1) {
170 node_name, errno, strerror(errno))
    [all...]
mknod05.c 96 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
125 TEST(mknod(node_name, MODE_SGID, 0));
130 "%s", node_name, MODE_SGID, TEST_ERRNO,
138 if (stat(node_name, &buf) < 0) {
140 node_name, TEST_ERRNO);
148 "setgid bit not set", node_name);
156 node_name);
163 node_name, MODE_SGID);
167 if (unlink(node_name) == -1) {
169 node_name, errno, strerror(errno))
    [all...]
mknod08.c 95 char node_name[PATH_MAX]; /* buffer to hold node name created */ variable
121 TEST(mknod(node_name, MODE_RWX, 0));
127 node_name, MODE_RWX, TEST_ERRNO,
135 if (stat(node_name, &buf) < 0) {
138 node_name, TEST_ERRNO);
146 "bit set", node_name);
154 node_name);
161 node_name, MODE_RWX);
165 if (unlink(node_name) == -1) {
168 node_name, errno, strerror(errno))
    [all...]
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_control_wrapper.h 48 bool FillInputNode(const string& node_name, const Tensor& tensor) final;
49 bool ReadOutputNode(const string& node_name,
56 bool ReadOutputNode(const string& node_name, std::vector<ByteArray>* outputs);
63 const string& node_name,
71 const string& node_name, GraphTransferInfo* graph_transfer_info);
  /external/tensorflow/tensorflow/core/grappler/
utils.cc 37 const string& node_name = node->name(); local
38 auto rslt = nodes_.emplace(node_name, node);
41 LOG(WARNING) << "Duplicated node in the graph: " << node_name;
44 outputs_[NodeName(input)].insert(nodes_[node_name]);
55 const string node_name = NodeName(name); local
56 auto it = nodes_.find(node_name);
64 const string node_name = NodeName(name); local
65 return nodes_.find(node_name) != nodes_.end();
68 const std::set<NodeDef*>& NodeMap::GetOutputs(const string& node_name) const {
69 auto it = outputs_.find(node_name);
95 RemoveOutput(NodeName(old_input_name), node_name); local
96 AddOutput(NodeName(new_input_name), node_name); local
    [all...]
utils.h 42 const std::set<NodeDef*>& GetOutputs(const string& node_name) const;
47 void UpdateInput(const string& node_name, const string& old_input_name,
49 void AddOutput(const string& node_name, const string& output_name);
50 void RemoveInputs(const string& node_name);
51 void RemoveOutput(const string& node_name, const string& output_name);
52 void RemoveOutputs(const string& node_name);
53 void UpdateOutput(const string& node_name, const string& old_output_name,
179 inline const int index(const string& node_name) const {
180 const auto& it = name_to_index_.find(node_name);
184 inline const string& node_name(int node_idx) const function in class:tensorflow::grappler::SimpleGraphView
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
i_remote_fused_graph_executor.h 56 virtual bool FillInputNode(const string& node_name, const Tensor& tensor) = 0;
59 virtual bool ReadOutputNode(const string& node_name,
  /external/tensorflow/tensorflow/python/debug/lib/
debug_utils.py 27 node_name,
45 node_name: (`str`) name of the node to watch.
67 watch.node_name = node_name
116 node_name_regex_whitelist: Regular-expression whitelist for node_name,
151 node_name = op.name
154 if node_name_pattern and not node_name_pattern.match(node_name):
166 node_name,
204 node_name_regex_blacklist: Regular-expression blacklist for node_name.
240 node_name = op.nam
    [all...]
debug_data.py 170 def _get_tensor_name(node_name, output_slot):
174 node_name: Name of the node that outputs the tensor, as a string.
181 return "%s:%d" % (node_name, output_slot)
184 def _get_tensor_watch_key(node_name, output_slot, debug_op):
188 node_name: Name of the node by which the watched tensor is produced, 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`
334 self.node_name,
397 def node_name(self) member in class:DebugTensorDatum
    [all...]
  /external/dtc/
fdtput.c 167 static int store_key_value(char **blob, const char *node_name,
173 node = fdt_path_offset(*blob, node_name);
175 report_error(node_name, -1, node);
236 * This will overwrite the node_name string. Any error is reported.
241 * @param node_name Name of node to create
244 static int create_node(char **blob, const char *node_name)
249 p = strrchr(node_name, '/');
251 report_error(node_name, -1, -FDT_ERR_BADPATH);
258 if (p > node_name) {
259 node = fdt_path_offset(*blob, node_name);
    [all...]
  /external/tensorflow/tensorflow/core/example/
example_parser_configuration.h 38 // Given a graph and the node_name of a ParseExample op,
41 const tensorflow::GraphDef& graph, const string& node_name,
  /external/adhd/cras/src/tests/
cras_monitor.c 137 const char *node_name = node_name_for_node_id(client, dir, node_id); local
138 printf("active node (%s): %s\n", string_for_direction(dir), node_name);
139 free((void *)node_name);
146 const char *node_name = local
148 printf("output node '%s' volume: %d\n", node_name, volume);
149 free((void *)node_name);
156 const char *node_name = local
158 printf("output node '%s' left-right swapped: %d\n", node_name, swapped);
159 free((void *)node_name);
166 const char *node_name local
    [all...]

Completed in 405 milliseconds

1 2 3 4 5 6 7 8