Searched defs:node_name (Results 1 - 25 of 83) sorted by relevance

1234

/external/tensorflow/tensorflow/core/kernels/
H A Didentity_reader_op.cc31 explicit IdentityReader(const string& node_name) argument
32 : ReaderBase(strings::StrCat("IdentityReader '", node_name, "'")) {}
H A Dtext_line_reader_op.cc30 TextLineReader(const string& node_name, int skip_header_lines, Env* env) argument
31 : ReaderBase(strings::StrCat("TextLineReader '", node_name, "'")),
H A Dtf_record_reader_op.cc30 TFRecordReader(const string& node_name, const string& compression_type, argument
32 : ReaderBase(strings::StrCat("TFRecordReader '", node_name, "'")),
H A Dlmdb_reader_op.cc29 LMDBReader(const string& node_name, Env* /*unused*/) argument
30 : ReaderBase(strings::StrCat("LMDBReader '", node_name, "'")),
H A Dwhole_file_read_ops.cc47 WholeFileReader(Env* env, const string& node_name) argument
48 : ReaderBase(strings::StrCat("WholeFileReader '", node_name, "'")),
H A Dfixed_length_record_reader_op.cc35 FixedLengthRecordReader(const string& node_name, int64 header_bytes, argument
39 strings::StrCat("FixedLengthRecordReader '", node_name, "'")),
/external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_soc_interface/include/
H A Dnode_data_float.h34 char node_name[NODE_DATA_FLOAT_NODE_NAME_BUF_SIZE]; member in struct:NodeDataFloat
/external/tensorflow/tensorflow/core/debug/
H A Ddebug_node_key.cc26 DebugNodeKey::DebugNodeKey(const string& device_name, const string& node_name, argument
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 &&
H A Ddebug_node_key.h30 DebugNodeKey(const string& device_name, const string& node_name,
42 const string node_name; member in struct:tensorflow::DebugNodeKey
H A Ddebug_gateway.cc28 [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, argument
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
/external/tensorflow/tensorflow/core/framework/
H A Dop_segment.cc38 const string& node_name, OpKernel** kernel,
46 *kernel = gtl::FindPtrOrNull(item->name_kernel, node_name);
62 OpKernel** p_kernel = &(item->name_kernel[node_name]);
37 FindOrCreate(const string& session_handle, const string& node_name, OpKernel** kernel, CreateKernelFn create_fn) argument
H A Dnode_def_builder.h43 // Status status = NodeDefBuilder(node_name, op_name)
133 const string& node_name() const { return node_def_.name(); } function in class:tensorflow::NodeDefBuilder
/external/ltp/testcases/kernel/syscalls/mknod/
H A Dmknod02.c96 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, errn
[all...]
H A Dmknod03.c96 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, errn
[all...]
H A Dmknod04.c96 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, errn
[all...]
H A Dmknod05.c96 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, errn
[all...]
H A Dmknod06.c135 char *node_name; /* ptr. for node name created */ local
152 node_name = Test_cases[ind].pathname;
156 if (node_name == High_address_node) {
157 node_name = get_high_address();
166 TEST(mknod(node_name, MODE_RWX, 0));
H A Dmknod08.c95 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, errn
[all...]
/external/tensorflow/tensorflow/contrib/cloud/kernels/
H A Dbigquery_reader_ops.cc55 const string& node_name)
56 : ReaderBase(strings::StrCat("BigQueryReader '", node_name, "'")),
54 BigQueryReader(BigQueryTableAccessor* bigquery_table_accessor, const string& node_name) argument
/external/tensorflow/tensorflow/core/graph/
H A Dnode_builder.h36 // 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/core/grappler/
H A Dgraph_view.cc50 NodeDef* GraphView::GetNode(const string& node_name) const {
51 auto it = nodes_.find(node_name);
58 GraphView::InputPort GraphView::GetInputPort(const string& node_name, argument
61 result.node = GetNode(node_name);
67 GraphView::OutputPort GraphView::GetOutputPort(const string& node_name, argument
70 result.node = GetNode(node_name);
/external/tensorflow/tensorflow/tools/graph_transforms/
H A Dstrip_unused_nodes.cc33 const string& node_name, DataType* result) {
64 if (context.params.at("name")[i] == node_name) {
78 const string& node_name, TensorShape* result) {
106 if (context.params.at("name")[i] == node_name) {
32 TypeForPlaceholder(const TransformFuncContext& context, const string& node_name, DataType* result) argument
77 ShapeForPlaceholder(const TransformFuncContext& context, const string& node_name, TensorShape* result) argument
/external/tensorflow/tensorflow/cc/tools/
H A Dfreeze_saved_model.cc96 const string node_name = nodes_to_visit.front(); local
98 if (reachable_node_names->find(node_name) != reachable_node_names->end()) {
101 reachable_node_names->insert(node_name);
102 NodeDef* node = name_to_node_map[node_name];
121 for (const string& node_name : variable_names_set) {
122 variable_names.push_back(node_name);
124 tensor_names.push_back(node_name + ":0");
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_tfgraph_builder.cc103 string node_name; local
107 node_name = StrCat(
114 append(&node_name,
117 append(&node_name, computation->name());
120 append(&node_name, instruction->metadata().op_name());
127 append(&node_name, instruction_name);
128 CleanNodeName(&node_name);
130 instruction_to_node_name_.insert(std::make_pair(instruction, node_name));
/external/tensorflow/tensorflow/contrib/lite/toco/tensorflow_graph_matching/
H A Dresolve_svdf.cc120 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;

Completed in 531 milliseconds

1234