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 133 std::vector<string> input_names; local
136 input_names.emplace_back(tensor_name);
148 graph_to_run.get(), input_names, output_names, {} /* target nodes */,
  /external/tensorflow/tensorflow/tools/graph_transforms/
fold_constants_lib.cc 128 std::unordered_set<TensorId, TensorId::Hasher> input_names; local
129 for (const string& input : context.input_names) {
130 input_names.insert(ParseTensorName(input));
151 if (input_names.count(id) > 0) {
161 for (const TensorId& id : input_names) {
217 std::vector<TensorId> input_names; local
218 input_names.reserve(context.input_names.size());
219 std::transform(context.input_names.begin(), context.input_names.end()
    [all...]
transform_utils.h 223 std::vector<string> input_names; member in struct:tensorflow::graph_transforms::TransformFuncContext
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 678 const std::vector<string> input_names = {"logical_B", "logical_A"}; local
680 TF_ASSERT_OK(BindGenericNames(signature_, input_names, &bound_names));
687 const std::vector<string> input_names = {"logical_B", "logical_MISSING"}; local
689 const Status status = BindGenericNames(signature_, input_names, &bound_names);
  /external/tensorflow/tensorflow/python/client/
tf_session_helper.cc 58 NameVector input_names; local
75 input_names.push_back(key_string);
97 TF_Run(session, run_options, input_names.data(), inputs_unsafe.data(),
98 input_names.size(), const_cast<const char**>(output_names.data()),
103 TF_PRun(session, handle, input_names.data(), inputs_unsafe.data(),
104 input_names.size(), const_cast<const char**>(output_names.data()),
161 const NameVector& input_names,
167 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 326 const int64 executor_step_index, const std::vector<string>& input_names,
337 oss << "\"input_names\":[";
338 for (size_t i = 0; i < input_names.size(); ++i) {
339 oss << "\"" << input_names[i] << "\""; local
340 if (i < input_names.size() - 1) {
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_session.cc 1557 std::vector<string> input_names; local
    [all...]

Completed in 159 milliseconds