HomeSort by relevance Sort by last modified time
    Searched defs:input_name (Results 1 - 25 of 25) sorted by null

  /hardware/akm/AK8975_FS/libsensors/
SensorBase.h 34 char input_name[PATH_MAX]; member in class:SensorBase
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_rewriter_transform.cc 51 const string& input_name = context.input_names.at(i); local
68 LOG(INFO) << "Input(" << i << "): name = " << input_name
72 inputs.emplace_back(input_name, Tensor(data_type, TensorShape(dims)));
  /external/tensorflow/tensorflow/examples/label_image/
label_image.py 43 input_name = "file_reader"
45 file_reader = tf.read_file(file_name, input_name)
126 input_name = "import/" + input_layer variable
128 input_operation = graph.get_operation_by_name(input_name)
  /external/tensorflow/tensorflow/cc/saved_model/
loader_test.cc 74 const string input_name = signature_def.inputs().at(kRegressInputs).name(); local
87 TF_ASSERT_OK(bundle.session->Run({{input_name, input}}, {output_name}, {},
  /external/tensorflow/tensorflow/compiler/jit/
graph_to_functiondef.cc 220 const string& input_name = fdef->signature().input_arg(i).name(); local
221 if (input_name.empty()) {
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
import.cc 125 const string& input_name = tensors_table.at(input_index); local
126 op->inputs.push_back(input_name);
148 const string& input_name = tensors_table.at(input); local
149 model->flags.add_input_arrays()->set_name(input_name);
  /external/tensorflow/tensorflow/examples/speech_commands/
label_wav.cc 104 string input_name = "wav_data"; local
111 Flag("input_name", &input_name, "name of input node in model"),
157 session->Run({{input_name, wav_tensor}}, {output_name}, {}, &outputs);
  /hardware/invensense/6515/libsensors_iio/
SensorBase.h 73 char input_name[PATH_MAX]; member in class:SensorBase
  /hardware/invensense/65xx/libsensors_iio/
SensorBase.h 72 char input_name[PATH_MAX]; member in class:SensorBase
  /external/blktrace/btt/
bt_timeline.c 30 char *devices, *exes, *input_name, *output_name, *seek_name, *bno_dump_name; variable
  /external/tensorflow/tensorflow/contrib/session_bundle/
session_bundle_test.cc 95 const string input_name = regression_signature.input().tensor_name(); local
106 bundle.session->Run({{input_name, input}}, {output_name}, {}, &outputs));
115 const string input_name = signatures.named_signatures() local
132 bundle.session->Run({{input_name, input}}, {output_name}, {}, &outputs));
  /frameworks/compile/mclinker/lib/LD/
GarbageCollection.cpp 187 const std::string input_name = (*obj)->name(); local
195 sect_map.find(input_name, section->name()).second;
  /system/sepolicy/tools/fc_sort/
fc_sort.c 333 char *input_name, *output_name, *line_buf; local
349 input_name = argv[1];
355 if (!(in_file = fopen(input_name, "r"))) {
  /external/tensorflow/tensorflow/c/
c_api_function.cc 115 const string& input_name = GetOutputName(name); local
116 name_mapping_[name] = input_name;
117 return input_name;
121 const string& input_name = UniquifyHelper(Normalize(name)); local
124 used_names_.insert(input_name);
125 return input_name;
303 const string& input_name = node_names.GetInputName(node->name()); local
304 argdef->set_name(input_name);
305 tensor_renaming[strings::StrCat(node->name(), ":", idx)] = input_name;
c_api_test.cc 1356 const string input_name = local
    [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
utils.cc 94 const string input_name = node.input(i); local
95 CHECK(!input_name.empty());
96 if (IsControlInput(input_name)) {
99 TensorId input_tensor_id = ParseTensorName(input_name);
170 for (const auto& input_name : node.input()) {
171 CHECK(!input_name.empty());
172 TensorId input_tensor_id = ParseTensorName(input_name);
  /external/tensorflow/tensorflow/core/grappler/optimizers/
dependency_optimizer.cc 166 string input_name = ParseNodeName(fanout->input(i), &pos); local
167 if (input_name == node_name) {
layout_optimizer_test.cc 175 string input_name = "Conv2DBackpropInput-0-LayoutOptimizer"; local
176 auto input_sizes_node = node_map.GetNode(input_name);
180 EXPECT_EQ(input_name, conv2d_backprop_node->input(0));
    [all...]
memory_optimizer.cc 86 for (const string& input_name : node.input()) {
88 const NodeDef* input_node = node_map.GetNode(input_name);
1050 string input_name = local
1184 string input_name = strings::StrCat(node->name(), ":", input_id); local
    [all...]
layout_optimizer.cc 646 string input_name = ParseNodeName(input, &input_port); local
648 if (input_name == node_->name()) {
788 NodeDef* AddNodeTranspose(const string& node_name, const string& input_name,
795 *node->add_input() = input_name;
    [all...]
  /external/tensorflow/tensorflow/tools/graph_transforms/
transform_utils.cc 82 void NodeNamePartsFromInput(const string& input_name, string* prefix,
84 std::vector<string> input_parts = str_util::Split(input_name, ':');
99 string NodeNameFromInput(const string& input_name) {
103 NodeNamePartsFromInput(input_name, &prefix, &node_name, &suffix);
107 string CanonicalInputName(const string& input_name) {
111 NodeNamePartsFromInput(input_name, &prefix, &node_name, &suffix);
140 void AddNodeInput(const string& input_name, NodeDef* node) {
141 *(node->mutable_input()->Add()) = input_name;
203 StringPiece input_name(node_def.input(i));
204 if (input_name.starts_with("^"))
217 const string& input_name = node_def.input(i); local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
propagate_fixed_sizes.cc 543 const string& input_name = op->inputs[0]; local
544 const auto& input_array = model->GetArray(input_name);
558 for (const auto& input_name : op->inputs) {
559 auto& input_array = model->GetArray(input_name);
574 for (const auto& input_name : op->inputs) {
575 auto& input_array = model->GetArray(input_name);
645 const string& input_name = op->inputs[1]; local
646 const auto& input_array = model->GetArray(input_name);
689 const string& input_name = op->inputs[0]; local
690 const auto& input_array = model->GetArray(input_name);
706 const string& input_name = op->inputs[0]; local
723 const string& input_name = op->inputs[0]; local
    [all...]
  /external/tensorflow/tensorflow/core/framework/
function.cc 236 const string& input_name = fnode.input(fnode_arg_index); local
237 const auto* item = GetItemOrNull(input_name);
240 "input ", input_name, " is not found: ", SummarizeNodeDef(fnode));
243 return errors::InvalidArgument("Input ", input_name, " too long for ",
254 input_name, "[", k, "]");
    [all...]
  /external/tensorflow/tensorflow/core/graph/
graph_constructor.cc 438 StringPiece input_name = node_def.input(i); local
439 if (!input_name.empty() && input_name.starts_with("^")) {
486 StringPiece input_name(node_def.input(i));
487 if (input_name.starts_with("^")) {
490 TensorId id(ParseTensorName(input_name));
502 StringPiece input_name = node_def.input(i); local
503 TensorId id(ParseTensorName(input_name));
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/
import_tensorflow.cc 373 const auto& input_name = node.input(0); local
394 conv->inputs = {input_name, reordered_weights_name};
426 const auto& input_name = node.input(0); local
447 conv->inputs = {input_name, reordered_weights_name};
502 const auto& input_name = node.input(0); local
506 biasadd->inputs.push_back(input_name);
517 const auto& input_name = node.input(0); local
519 relu->inputs.push_back(input_name);
530 const auto& input_name = node.input(0); local
532 op->inputs.push_back(input_name);
543 const auto& input_name = node.input(0); local
556 const auto& input_name = node.input(0); local
590 const auto& input_name = node.input(0); local
849 const auto& input_name = node.input(0); local
864 const auto& input_name = node.input(0); local
876 const auto& input_name = node.input(0); local
892 const auto& input_name = node.input(0); local
934 const auto& input_name = node.input(0); local
    [all...]

Completed in 884 milliseconds