OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:node_input
(Results
1 - 3
of
3
) sorted by null
/external/tensorflow/tensorflow/core/profiler/internal/
tfprof_stats.cc
208
string
node_input
= it->second->input(i);
local
212
auto prefix_pos =
node_input
.find(":");
213
if (prefix_pos !=
node_input
.npos) {
214
std::vector<string> input_parts = str_util::Split(
node_input
, ":");
216
<< "Unknown NodeDef.input format: " <<
node_input
;
217
node_input
= input_parts[0];
221
if (
node_input
.substr(0, 1) == "^") {
222
node_input
=
node_input
.substr(1);
227
node->AddInput(
node_input
, output_idx, i)
[
all
...]
/external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_control_wrapper.cc
178
GraphTransferInfo::NodeInput&
node_input
=
local
180
node_input
.set_node_id(node_info->node_id());
181
node_input
.set_output_port(port);
214
const GraphTransferInfo::NodeInput&
node_input
=
local
215
input_params.
node_input
(i);
216
node_ids[i] =
node_input
.node_id() + NODE_ID_OFFSET;
217
ports[i] =
node_input
.output_port();
graph_transferer.cc
258
for (const GraphTransferInfo::NodeInput&
node_input
:
259
input_map.at(node_id)->
node_input
()) {
260
dependency_map.at(node_id).emplace(
node_input
.node_id());
764
GraphTransferInfo::NodeInput&
node_input
=
local
766
node_input
.set_node_id(id);
767
node_input
.set_output_port(0);
876
GraphTransferInfo::NodeInput&
node_input
= *
node_input
_info->add_
node_input
();
local
892
GraphTransferInfo::NodeInput&
node_input
=
local
[
all
...]
Completed in 229 milliseconds