HomeSort by relevance Sort by last modified time
    Searched refs:StrCat (Results 51 - 75 of 492) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/framework/
op_segment_test.cc 25 #include "tensorflow/core/lib/strings/strcat.h"
41 TF_CHECK_OK(NodeDefBuilder(strings::StrCat("op", i), "Mul")
46 TF_CHECK_OK(NodeDefBuilder(strings::StrCat("op", i), "Mul")
101 opseg.FindOrCreate("A", strings::StrCat("op", i), &op, reterr));
106 opseg.FindOrCreate("B", strings::StrCat("op", i), &op, reterr));
queue_interface.h 93 return strings::StrCat("A Queue of size: ", size());
session_state.h 66 return strings::StrCat(tensor_name, ";", id, ";", device_name);
variant_tensor_data.cc 19 #include "tensorflow/core/lib/strings/strcat.h"
89 strings::StrCat(repeated_field, " tensors: ", t.DebugString());
91 return strings::StrCat("type_name: ", type_name(), " metadata: ", metadata_,
  /external/tensorflow/tensorflow/core/kernels/
variable_ops.h 44 return strings::StrCat(DataTypeString(tensor_.dtype()), "/",
text_line_reader_op.cc 23 #include "tensorflow/core/lib/strings/strcat.h"
31 : ReaderBase(strings::StrCat("TextLineReader '", node_name, "'")),
64 *key = strings::StrCat(current_work(), ":", line_number_);
tf_record_reader_op.cc 23 #include "tensorflow/core/lib/strings/strcat.h"
32 : ReaderBase(strings::StrCat("TFRecordReader '", node_name, "'")),
55 *key = strings::StrCat(current_work(), ":", offset_);
  /external/tensorflow/tensorflow/core/lib/gif/
gif_io.cc 21 #include "tensorflow/core/lib/strings/strcat.h"
71 *error_string = strings::StrCat("failed to open gif file: ",
76 *error_string = strings::StrCat("failed to slurp gif file: ",
81 *error_string = strings::StrCat("gif file does not contain any image");
108 strings::StrCat("the first frame does not fill the canvas");
  /external/tensorflow/tensorflow/core/ops/compat/
update_ops_main.cc 31 directory, strings::StrCat("v", TF_MAJOR_VERSION), nullptr);
  /external/tensorflow/tensorflow/core/platform/cloud/
time_util.cc 42 strings::StrCat("Unrecognized RFC 3339 time format: ", time));
  /external/tensorflow/tensorflow/stream_executor/
dnn.cc 18 #include "tensorflow/stream_executor/lib/strcat.h"
208 return port::StrCat(algorithm_.algo_id(), ", ",
280 string depth = port::StrCat("d", feature_map_count());
281 string batch = port::StrCat("b", count());
298 return port::StrCat(spatial, depth, batch, suffix);
300 return port::StrCat(spatial, batch, depth, suffix);
302 return port::StrCat(batch, spatial, depth, suffix);
304 return port::StrCat(batch, depth, spatial, suffix);
306 return port::StrCat(batch, depth, spatial, suffix, "(VECT_C)");
391 string od = port::StrCat("od", output_feature_map_count_)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
string_util.h 29 inline std::string StrCat(Args&&... args) {
  /external/tensorflow/tensorflow/core/kernels/data/
parallel_map_dataset_op.cc 91 new Iterator({this, strings::StrCat(prefix, "::ParallelMap")}));
225 full_name(strings::StrCat("invocation_results[", i, "].size")),
231 strings::StrCat("invocation_results[", i, "][", j, "]")),
236 full_name(strings::StrCat("invocation_results[", i, "]_empty")),
260 strings::StrCat("invocation_results[", i, "]_empty")))) {
268 reader->ReadScalar(full_name(strings::StrCat(
273 return errors::InvalidArgument(strings::StrCat(
275 strings::StrCat("invocation_results[", i, "].size")),
284 strings::StrCat("invocation_results[", i, "][", j, "]")),
369 strings::StrCat("invocation_results[", index, "].code"))
    [all...]
group_by_window_dataset_op.cc 124 new Iterator({this, strings::StrCat(prefix, "::GroupByWindow")}));
315 full_name(strings::StrCat("groups_[", idx, "]->key")), key));
317 writer, full_name(strings::StrCat("groups_[", idx, "]")),
331 full_name(strings::StrCat("window_sizes_[", idx, "]->key")),
334 full_name(strings::StrCat("window_sizes_[", idx, "]->value")),
369 full_name(strings::StrCat("groups_[", idx, "]->key")), &key));
372 reader, full_name(strings::StrCat("groups_[", idx, "]")),
386 full_name(strings::StrCat("window_sizes_[", idx, "]->key")),
389 full_name(strings::StrCat("window_sizes_[", idx, "]->value")),
415 writer->WriteScalar(strings::StrCat(name, "_size"), group.size()))
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
graph_to_functiondef.cc 27 #include "tensorflow/core/lib/strings/strcat.h"
87 const string candidate = strings::StrCat(name, "_", i);
137 tensor_renaming[strings::StrCat(node->name(), ":0")] = normalized;
157 strings::StrCat(edge->src()->name(), ":", edge->src_output());
197 strings::StrCat(edge->src()->name(), ":", edge->src_output()));
202 node_def->add_input(strings::StrCat("^", edge->src()->name()));
211 const string tensor_name = strings::StrCat(
213 tensor_renaming[strings::StrCat(node->name(), ":", i)] = tensor_name;
241 *node_def->mutable_input(i) = strings::StrCat("^", normalized);
  /external/tensorflow/tensorflow/core/common_runtime/
session_factory.cc 59 return strings::StrCat("Registered factories are {",
63 return strings::StrCat("target: \"", options.target,
  /external/tensorflow/tensorflow/core/distributed_runtime/
remote_device_test.cc 27 #include "tensorflow/core/lib/strings/strcat.h"
84 EXPECT_EQ(devices_[0]->name(), strings::StrCat(remote_name_, "/cpu:0"));
88 EXPECT_EQ(devices_[1]->name(), strings::StrCat(remote_name_, "/cpu:1"));
  /external/tensorflow/tensorflow/core/grappler/costs/
virtual_placer_test.cc 19 #include "tensorflow/core/lib/strings/strcat.h"
119 devices[strings::StrCat("/job:", job_name, "/replica:0/task:0/cpu:0")] =
123 devices[strings::StrCat("/job:", job_name,
131 EXPECT_EQ(strings::StrCat("/job:", job_name, "/replica:0/task:0/cpu:0"),
135 strings::StrCat("/job:", job_name, "/replica:0/task:0/device:GPU:0"),
183 devices[strings::StrCat("/job:worker/replica:0/task:0/gpu:", i)] =
198 devices[strings::StrCat("/job:worker/replica:", i, "/task:0/cpu:0")] =
201 devices[strings::StrCat("/job:worker/replica:", i, "/task:0/gpu:", j)] =
234 devices[strings::StrCat("/job:ps/replica:", i, "/task:0/cpu:0")] =
  /external/tensorflow/tensorflow/core/grappler/optimizers/
auto_parallel.cc 28 #include "tensorflow/core/lib/strings/strcat.h"
36 node->set_name(strings::StrCat(kAutoParallelPrefix, "-Div-Const"));
54 node->set_name(strings::StrCat(kAutoParallelPrefix, "-Div-", name));
71 node->add_input(strings::StrCat("^", dep));
205 string prefix = strings::StrCat(kAutoParallelPrefix, "-Replica-", 0);
219 string prefix = strings::StrCat(kAutoParallelPrefix, "-Replica-", number);
226 new_node->set_device(strings::StrCat("/gpu:", number % num_gpus_));
246 string prefix = strings::StrCat(kAutoParallelPrefix, "-Replica-", j);
252 strings::StrCat(kAutoParallelPrefix, "-Control-", "Fetch");
  /external/tensorflow/tensorflow/core/lib/core/
errors.h 20 #include "tensorflow/core/lib/strings/strcat.h"
36 ::tensorflow::strings::StrCat(status->error_message(), "\n\t", args...));
65 ::tensorflow::strings::StrCat(args...)); \
  /external/tensorflow/tensorflow/python/util/
util.cc 17 #include "tensorflow/core/lib/strings/strcat.h"
44 tensorflow::strings::StrCat(
106 tensorflow::strings::StrCat(
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_tfgraph_builder.cc 25 #include "tensorflow/core/lib/strings/strcat.h"
31 using ::tensorflow::strings::StrCat;
39 string name = StrCat("hlo-", HloOpcodeString(instruction->opcode()));
59 string GetDeviceName(int device) { return StrCat("/device/XLA:", device); }
107 node_name = StrCat(
168 layout_string = StrCat(
235 *node_def->add_input() = StrCat(
  /external/tensorflow/tensorflow/core/graph/
optimizer_cse_test.cc 62 return strings::StrCat(n->name(), ":control");
64 return strings::StrCat(n->name(), ":", index);
73 nodes.push_back(strings::StrCat(n->name(), "(", n->type_string(), ")"));
78 edges.push_back(strings::StrCat(EdgeId(e->src(), e->src_output()), "->",
85 return strings::StrCat(str_util::Join(nodes, ";"), "|",
366 testing::SetLabel(strings::StrCat("Per graph node. Nodes: ", N));
  /external/tensorflow/tensorflow/core/lib/strings/
strcat.h 34 // The AlphaNum type was designed to be used as the parameter type for StrCat().
57 // To do this, pass strings::Hex(my_int) as a parameter to StrCat. You may
59 // of Printf("%04x", my_int) is StrCat(Hex(my_int, strings::ZERO_PAD_4))
151 // StrCat()
160 // For clarity and performance, don't use StrCat when appending to a
162 // str.append(StrCat(...))
163 // str += StrCat(...)
164 // str = StrCat(str, ...)
174 string StrCat(const AlphaNum &a) TF_MUST_USE_RESULT;
175 string StrCat(const AlphaNum &a, const AlphaNum &b) TF_MUST_USE_RESULT
    [all...]
  /external/tensorflow/tensorflow/python/eager/
python_eager_op_gen.cc 33 #include "tensorflow/core/lib/strings/strcat.h"
49 const string var = strings::StrCat("_attr_", attr_name);
63 if (l.size() == 1) return strings::StrCat("(", l.front(), ",)");
102 return strings::StrCat("\"\"\"", ProtoShortDebugString(pb), "\"\"\"");
215 strings::StrCat("len(", param_names_[i].GetRenameTo(), ")"));
267 strings::StrCat(
279 strings::StrCat("[_execute.make_tensor(_pb, \"",
432 return strings::StrCat("raise RuntimeError(\"", op_name_,
462 strings::StrCat("len(", arg_api_name, ")"),
557 strings::StrCat("# No definition for ", function_name_
    [all...]

Completed in 365 milliseconds

1 23 4 5 6 7 8 91011>>