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

1 23 4 5 6 7 8

  /external/tensorflow/tensorflow/core/grappler/
graph_view.cc 50 NodeDef* GraphView::GetNode(const string& node_name) const {
51 auto it = nodes_.find(node_name);
58 GraphView::InputPort GraphView::GetInputPort(const string& node_name,
61 result.node = GetNode(node_name);
67 GraphView::OutputPort GraphView::GetOutputPort(const string& node_name,
70 result.node = GetNode(node_name);
  /external/tensorflow/tensorflow/core/grappler/optimizers/
dependency_optimizer.cc 156 const string node_name = node->name(); local
160 const std::set<NodeDef*> output_nodes = node_map_->GetOutputs(node_name);
167 if (input_name == node_name) {
180 node_map_->RemoveOutput(node_name, fanout->name());
184 if (node_map_->GetOutputs(node_name).empty() && fetch_nodes_known_ &&
185 nodes_to_preserve_.find(node_name) == nodes_to_preserve_.end()) {
194 VLOG(1) << "***** Replacing " << node_name << " (" << node->op()
216 node_map_->UpdateInput(node_name, old_input, ctrl_input);
277 const auto& output_node_set = node_map_->GetOutputs(node_name);
346 if (old_input == node_name) {
    [all...]
static_schedule.cc 76 string node_name = NodeName(input); local
77 auto it = name_map.find(node_name);
136 string node_name = NodeName(input); local
137 auto it = name_map.find(node_name);
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_control_wrapper.cc 41 static string AddPort(const string& node_name) {
42 if (node_name.find(':') != string::npos) {
43 return node_name;
45 return strings::StrCat(node_name, ":", 0);
169 const string node_name = tid.first.ToString(); local
173 FindNodeInfo(node_name, &graph_transfer_info);
323 const string& node_name,
326 const string tensor_name = AddPort(node_name);
356 const string& node_name, TensorAllocatorFunc tensor_allocator) {
361 if (execute_info_->graph_output_node_name(i) == node_name) {
    [all...]
soc_interface.h 66 bool soc_interface_ReadOutputNodeFloat(const char* const node_name,
  /external/tensorflow/tensorflow/contrib/lite/toco/tensorflow_graph_matching/
resolve_svdf.cc 120 const string node_name = node->name(); local
121 if (StrContains(node_name, "SVDF_weights_feature")) {
122 *weights_feature_input = node_name;
123 } else if (StrContains(node_name, "SVDF_weights_time")) {
124 *weights_time_input = node_name;
125 } else if (StrContains(node_name, "SVDF_bias")) {
128 *bias_input = node_name;
  /external/tensorflow/tensorflow/core/kernels/
remote_fused_graph_execute_utils.cc 324 const string& node_name) {
327 if (node_name == tid.first.ToString()) {
346 const string& node_name = output_node_names.at(i); local
348 EmplaceTensorShapeType(node_name, tensor, tensor_shape_map);
424 const string node_name = tid.first.ToString(); local
426 const NodeDef* node_def = FindNodeDefByName(node_name, graph_def);
506 const string& node_name = node->name(); local
507 CHECK(tensor_shape_map->count(node_name) == 0);
508 tensor_shape_map->emplace(node_name,
520 const TensorShapeMap& tensor_shape_map, const string& node_name) {
745 const string& node_name = node->name(); local
1439 const string node_name = tid.first.ToString(); local
    [all...]
remote_fused_graph_execute_utils.h 114 const string& node_name);
150 const TensorShapeMap& tensor_shape_map, const string& node_name);
153 const TensorShapeMap& tensor_shape_map, const string& node_name,
175 const string& node_name, const string& executor_name,
181 static Status BuildIdentityOpNode(const string& node_name,
302 const int index, const string& executor_name, const string& node_name);
lmdb_reader_op.cc 29 LMDBReader(const string& node_name, Env* /*unused*/)
30 : ReaderBase(strings::StrCat("LMDBReader '", node_name, "'")),
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_memory.cc 121 const string& node_name, int output_id,
124 string name = strings::StrCat(node_name, ":", output_id);
129 temp.node = node_name;
158 node_placement[node_stats.node_name()] = dev_stats.device();
176 node_stats.node_name(), i, &live_tensors, &device_tensors);
194 const NodeDef* node = node_map.GetNode(node_stats.node_name());
graph_properties.h 64 const string& node_name) const;
66 const string& node_name) const;
  /external/tensorflow/tensorflow/c/
while_loop_test.cc 282 const char* node_name = "test_loop/cond/scalar"; local
283 EXPECT_TRUE(TF_GraphOperationByName(graph_, node_name) != nullptr);
284 node_name = "test_loop/body/add";
285 EXPECT_TRUE(TF_GraphOperationByName(graph_, node_name) != nullptr);
286 node_name = "test_loop/body/inner_loop/body/one";
287 EXPECT_TRUE(TF_GraphOperationByName(graph_, node_name) != nullptr);
288 node_name = "test_loop/body/inner_loop/cond/less_than";
289 EXPECT_TRUE(TF_GraphOperationByName(graph_, node_name) != nullptr);
  /external/tensorflow/tensorflow/core/graph/
node_builder.h 36 // Status status = NodeBuilder(node_name, op_name)
119 const string& node_name() const { return def_builder_.node_name(); } function in class:tensorflow::NodeBuilder
  /external/tensorflow/tensorflow/python/debug/lib/
grpc_debug_test_server.py 155 self._event_listener_servicer.debug_tensor_values[value.node_name].append(
158 items = event.summary.value[0].node_name.split(":")
159 node_name = items[0]
162 if ((node_name, output_slot, debug_op) in
211 self._dump_dir, device_name, value.node_name)
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 th
    [all...]
source_utils.py 235 node_name, output_slot, debug_op = watch_key.split(":")
236 tensor_name = "%s:%s" % (node_name, output_slot)
239 dump.get_tensors(node_name, int(output_slot), debug_op))
303 not node_name_regex.match(profile_datum.node_exec_stats.node_name)):
  /external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_soc_interface/include/
soc_interface.h 67 bool soc_interface_ReadOutputNodeFloat(const char* const node_name,
  /external/tensorflow/tensorflow/core/common_runtime/
debugger_state_interface.cc 34 strings::StrCat(watch.node_name(), ":", watch.output_slot());
  /external/tensorflow/tensorflow/core/debug/
debug_graph_utils.h 85 static const string GetCopyNodeName(const string& node_name,
debug_io_utils_test.cc 62 EXPECT_EQ("hidden_1/MatMul", debug_node_key.node_name);
125 event.summary().value(0).node_name());
166 ASSERT_EQ(kDebugNodeKey.node_name, event.summary().value(0).tag());
168 event.summary().value(0).node_name());
279 ASSERT_EQ(kDebugNodeKey.node_name, event.summary().value(0).tag());
281 event.summary().value(0).node_name());
330 ASSERT_EQ(kDebugNodeKey.node_name, key.node_name);
423 ASSERT_EQ(kDebugNodeKey.node_name, event.summary().value(0).tag());
425 event.summary().value(0).node_name());
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
jid.h 32 explicit Jid(const std::string& node_name,
  /external/tensorflow/tensorflow/python/tools/
optimize_for_inference_lib.py 144 def node_name_from_input(node_name):
146 if node_name.startswith("^"):
147 node_name = node_name[1:]
148 m = re.search(r"(.*):\d+$", node_name)
150 node_name = m.group(1)
151 return node_name
  /external/tensorflow/tensorflow/python/grappler/
item.i 151 const string& node_name = node.name();
153 properties.GetOutputProperties(node_name);
162 CHECK_EQ(0, PyDict_SetItem(props, PyString_FromString(node_name.c_str()), prop));
292 const string& node_name = group[j];
293 PyTuple_SetItem(g, j, PyString_FromString(node_name.c_str()));
  /external/tensorflow/tensorflow/contrib/tensorrt/convert/
convert_graph.cc 105 string node_name; local
107 std::tie(node_name, index) = ParseTensorName(tensor_name);
108 result[node_name].push_back(index);
257 for (const string& node_name : subgraph_node_names) {
258 subgraph_node_ids.insert(node_map.at(node_name)->id());
  /external/tensorflow/tensorflow/tools/graph_transforms/
fold_constants_lib.cc 141 for (StringPiece node_name : current_nodes) {
142 if (node_map.count(node_name) == 0) {
143 LOG(ERROR) << "Bad graph structure, no node named '" << node_name
146 node_name, "' found for input lookup");
148 const NodeDef& node = *(node_map[node_name]);
  /external/tensorflow/tensorflow/python/debug/cli/
profile_analyzer_cli_test.py 85 node_name="Add/123",
91 node_name="Mul/456",
121 node_name="Add/123",
180 node_name="Add/123",
187 node_name="Mul/456",
232 node_name="Add/123",
239 node_name="Mul/456",
286 node_name="Add/123",
293 node_name="Mul/456",

Completed in 817 milliseconds

1 23 4 5 6 7 8