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

  /external/tensorflow/tensorflow/core/kernels/
save_op.cc 56 static const char* input_names[3] = {"basename", "shard", "num_shards"}; variable
59 errors::InvalidArgument(input_names[i],
79 static const char* input_names[2] = {"basename", "num_shards"}; variable
82 errors::InvalidArgument(input_names[i],
  /external/tensorflow/tensorflow/core/common_runtime/
graph_runner.cc 131 std::vector<string> input_names; local
134 input_names.emplace_back(tensor_name);
146 graph_to_run.get(), input_names, output_names, {} /* target nodes */,
  /external/tensorflow/tensorflow/tools/graph_transforms/
transform_utils.h 223 std::vector<string> input_names; member in struct:tensorflow::graph_transforms::TransformFuncContext
fold_constants_lib.cc 121 std::unordered_set<string> input_names; local
122 for (const string& input_name : context.input_names) {
123 input_names.emplace(ParseTensorName(input_name).first);
127 if (input_names.find(node.name()) == input_names.end()) {
152 std::unordered_set<TensorId, TensorId::Hasher> input_names; local
153 for (const string& input : context.input_names) {
154 input_names.insert(ParseTensorName(input));
175 if (input_names.count(id) > 0) {
185 for (const TensorId& id : input_names) {
242 std::vector<TensorId> input_names; local
    [all...]
quantize_nodes_test.cc 73 std::vector<string> input_names; local
76 context.input_names.push_back(float_input.first);
    [all...]
  /external/tensorflow/tensorflow/contrib/session_bundle/
signature_test.cc 682 const std::vector<string> input_names = {"logical_B", "logical_A"}; local
684 TF_ASSERT_OK(BindGenericNames(signature_, input_names, &bound_names));
691 const std::vector<string> input_names = {"logical_B", "logical_MISSING"}; local
693 const Status status = BindGenericNames(signature_, input_names, &bound_names);
  /external/tensorflow/tensorflow/python/client/
tf_session_helper.cc 72 NameVector input_names; local
89 input_names.push_back(key_string);
111 TF_Run(session, run_options, input_names.data(), inputs_unsafe.data(),
112 input_names.size(), const_cast<const char**>(output_names.data()),
117 TF_PRun(session, handle, input_names.data(), inputs_unsafe.data(),
118 input_names.size(), const_cast<const char**>(output_names.data()),
325 const NameVector& input_names,
331 session, const_cast<const char**>(input_names.data()), input_names.size(),
  /external/adhd/cras/src/server/
cras_alsa_mixer.c 686 static const char * const input_names[] = { local
708 input_names, ARRAY_SIZE(input_names),
  /external/tensorflow/tensorflow/core/debug/
debug_io_utils.cc 329 const int64 executor_step_index, const std::vector<string>& input_names,
340 oss << "\"input_names\":[";
341 for (size_t i = 0; i < input_names.size(); ++i) {
342 oss << "\"" << input_names[i] << "\""; local
343 if (i < input_names.size() - 1) {
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_session.cc 1757 std::vector<string> input_names; local
    [all...]

Completed in 200 milliseconds