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

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/stream_executor/lib/
strcat.h 21 #include "tensorflow/core/lib/strings/strcat.h"
27 using tensorflow::strings::StrCat;
  /external/tensorflow/tensorflow/core/lib/strings/
strcat_test.cc 16 #include "tensorflow/core/lib/strings/strcat.h"
33 // Test StrCat of ints and longs of various sizes and signdedness.
34 TEST(StrCat, Ints) {
49 answer = tensorflow::strings::StrCat(s, us);
51 answer = tensorflow::strings::StrCat(i, ui);
53 answer = tensorflow::strings::StrCat(l, ul);
55 answer = tensorflow::strings::StrCat(ll, ull);
57 answer = tensorflow::strings::StrCat(ptrdiff, size);
59 answer = tensorflow::strings::StrCat(ssize, intptr);
61 answer = tensorflow::strings::StrCat(uintptr, 0)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
device_util.h 25 #include "tensorflow/core/lib/strings/strcat.h"
33 return tensorflow::strings::StrCat(stream_exec->platform()->Name(), ":",
text_literal_writer.cc 27 #include "tensorflow/core/lib/strings/strcat.h"
54 string coordinates = tensorflow::strings::StrCat(
58 tensorflow::strings::StrCat(coordinates, ": ", value, "\n"));
  /external/tensorflow/tensorflow/core/platform/windows/
test.cc 19 #include "tensorflow/core/lib/strings/strcat.h"
39 return strings::StrCat(env, "/", workspace, "/tensorflow");
41 return strings::StrCat(env, "/tensorflow");
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_testlib.cc 35 ret->targets_[i] = strings::StrCat("localhost:", port[i]);
38 const string tf_jobs = strings::StrCat("--tf_jobs=localhost|",
54 {strings::StrCat(testing::TensorFlowSrcRoot(),
57 tf_jobs, "--tf_job=localhost", strings::StrCat("--tf_task=", i),
58 strings::StrCat("--num_cpus=", num_cpus),
59 strings::StrCat("--num_gpus=", num_gpus)});
68 options_copy.target = strings::StrCat("grpc://", ret->targets_[0]);
  /external/tensorflow/tensorflow/core/graph/
tensor_id.h 24 #include "tensorflow/core/lib/strings/strcat.h"
38 if (second == Graph::kControlSlot) return strings::StrCat("^", first);
39 return strings::StrCat(first, ":", second);
quantize_training.cc 33 #include "tensorflow/core/lib/strings/strcat.h"
159 if (node->name() == strings::StrCat(save_prefix, "/restore_all")) {
259 const string restore_op_name = strings::StrCat(name_prefix, "/RestoreV2");
260 const string assign_op_name = strings::StrCat(name_prefix, "/Assign");
265 strings::StrCat(new_restore_op_name, "/tensor_names");
267 strings::StrCat(new_restore_op_name, "/shape_and_slices");
329 name_prefix = strings::StrCat(name_prefix, "/ReductionAxes");
334 NodeBuilder(strings::StrCat(name_prefix, "/RangeStart"), "Const")
342 NodeBuilder(strings::StrCat(name_prefix, "/RangeDelta"), "Const")
348 NodeBuilder(strings::StrCat(name_prefix, "/InputRank"), "Rank"
    [all...]
mkl_tfconversion_pass_test.cc 66 return strings::StrCat(n->name(), ":control");
68 return strings::StrCat(n->name(), ":", index);
77 nodes.push_back(strings::StrCat(n->name(), "(", n->type_string(), ")"));
82 edges.push_back(strings::StrCat(EdgeId(e->src(), e->src_output()), "->",
89 return strings::StrCat(str_util::Join(nodes, ";"), "|",
289 testing::SetLabel(strings::StrCat("Per graph node. Nodes: ", N));
  /external/tensorflow/tensorflow/core/platform/posix/
test.cc 21 #include "tensorflow/core/lib/strings/strcat.h"
45 return strings::StrCat(env, "/", workspace, "/tensorflow");
47 return strings::StrCat(env, "/tensorflow");
  /external/tensorflow/tensorflow/compiler/xla/service/
versioned_computation_handle.cc 18 #include "tensorflow/core/lib/strings/strcat.h"
23 return tensorflow::strings::StrCat(handle.handle(), ":v", version);
hlo_pass_pipeline.cc 27 #include "tensorflow/core/lib/strings/strcat.h"
31 using ::tensorflow::strings::StrCat;
84 StrCat(changed_status.status().error_message(),
97 run_invariant_checkers(StrCat("before running pipeline: ", name())));
121 run_invariant_checkers(StrCat("after running pass: ", pass->name())));
  /external/tensorflow/tensorflow/core/ops/compat/
backwards_compatibility_test.cc 29 strings::StrCat("v", TF_MAJOR_VERSION),
  /external/protobuf/src/google/protobuf/util/internal/
field_mask_utility.cc 62 return StrCat(prefix, segment);
64 return StrCat(prefix, ".", segment);
142 StrCat("Invalid FieldMask '", paths,
154 StrCat("Invalid FieldMask '", paths,
166 StrCat("Invalid FieldMask '", paths,
202 StrCat("Invalid FieldMask '", paths,
211 StrCat("Invalid FieldMask '", paths,
216 StrCat("Invalid FieldMask '", paths,
  /external/tensorflow/tensorflow/contrib/cudnn_rnn/ops/
cudnn_rnn_ops_test.cc 54 return strings::StrCat("[", str_util::Join(v, ","), "]");
56 string input_shapes_desc = strings::StrCat(
  /external/tensorflow/tensorflow/core/debug/
debug_node_key.cc 33 strings::StrCat(node_name, ":", output_slot, ":", debug_op)),
46 return strings::StrCat(
  /external/tensorflow/tensorflow/stream_executor/
launch_dim.h 40 #include "tensorflow/stream_executor/lib/strcat.h"
61 return port::StrCat("ThreadDim{", x, ", ", y, ", ", z, "}");
73 return port::StrCat("BlockDim{", x, ", ", y, ", ", z, "}");
device_description.cc 22 #include "tensorflow/stream_executor/lib/strcat.h"
75 port::StrCat(thread_dim.x, ",", thread_dim.y, ",", thread_dim.z);
78 port::StrCat(block_dim.x, ",", block_dim.y, ",", block_dim.z);
80 result["Threads Per Core Limit"] = port::StrCat(threads_per_core_limit());
81 result["Threads Per Block Limit"] = port::StrCat(threads_per_block_limit());
83 port::StrCat(registers_per_block_limit());
85 result["Device Address Bits"] = port::StrCat(device_address_bits());
94 result["Clock Rate GHz"] = port::StrCat(clock_rate_ghz());
96 result["CUDA Compute Capability"] = port::StrCat(
99 result["NUMA Node"] = port::StrCat(numa_node())
    [all...]
  /external/tensorflow/tensorflow/contrib/session_bundle/
signature.cc 27 #include "tensorflow/core/lib/strings/strcat.h"
41 return errors::Internal(strings::StrCat(
55 strings::StrCat("Expected exactly one signatures proto in : ",
83 strings::StrCat("Expected a default signature in: ",
87 return errors::FailedPrecondition(strings::StrCat(
103 strings::StrCat("Missing signature named \"", name,
108 strings::StrCat("Expected a classification signature for name \"", name,
138 strings::StrCat("Expected ", output_tensor_names.size(),
158 strings::StrCat("Expected a default signature in: ",
162 return errors::FailedPrecondition(strings::StrCat(
    [all...]
  /external/tensorflow/tensorflow/core/grappler/clusters/
utils.cc 31 #include "tensorflow/core/lib/strings/strcat.h"
45 strings::StrCat((port::CPUFamily() << 4) + port::CPUModelNum()));
60 (*device.mutable_environment())["eigen"] = strings::StrCat(
100 strings::StrCat(properties.major, ".", properties.minor);
101 (*device.mutable_environment())["cuda"] = strings::StrCat(CUDA_VERSION);
102 (*device.mutable_environment())["cudnn"] = strings::StrCat(CUDNN_VERSION);
  /external/tensorflow/tensorflow/core/util/
reporter_test.cc 23 #include "tensorflow/core/lib/strings/strcat.h"
72 strings::StrCat(testing::TmpDir(), "/test_reporter_dupe"), "t1");
77 strings::StrCat(testing::TmpDir(), "/test_reporter_dupe"), "t1");
85 strings::StrCat(testing::TmpDir(), "/test_reporter_create_close"), "t1");
96 strings::StrCat(testing::TmpDir(), "/test_reporter_benchmarks_");
102 string expected_fname = strings::StrCat(fname, "b1__2__3");
equal_graph_def.cc 26 #include "tensorflow/core/lib/strings/strcat.h"
54 *diff = strings::StrCat("Did not find expected node '",
70 strings::StrCat("Found unexpected node '",
111 *diff = strings::StrCat("Actual node name '", actual.name(),
119 *diff = strings::StrCat("Node named '", actual.name(), "' has op '",
128 *diff = strings::StrCat("Node named '", actual.name(), "' has device '",
137 *diff = strings::StrCat("Node named '", actual.name(), "' has inputs '",
153 actual.input(i) != strings::StrCat(expected.input(i), ":0") &&
154 strings::StrCat(actual.input(i), ":0") != expected.input(i)) {
156 *diff = strings::StrCat("Node named '", actual.name(), "' has input "
    [all...]
tensor_slice_reader_test.cc 25 #include "tensorflow/core/lib/strings/strcat.h"
68 const string fname = strings::StrCat(fname_base, "_0");
90 const string fname = strings::StrCat(fname_base, "_1");
114 const string filepattern = strings::StrCat(fname_base, "_*");
193 const string fname = strings::StrCat(fname_base, "_0");
215 const string fname = strings::StrCat(fname_base, "_1");
239 const string filepattern = strings::StrCat(fname_base, "_*");
325 const string fname = strings::StrCat(fname_base, "_0");
347 const string fname = strings::StrCat(fname_base, "_1");
372 const string filepattern = strings::StrCat(fname_base, "_*")
    [all...]
  /external/tensorflow/tensorflow/python/framework/
python_op_gen.cc 36 #include "tensorflow/core/lib/strings/strcat.h"
79 if (IsPythonReserved(s)) return strings::StrCat(s, "_");
95 result = strings::StrCat(Spaces(initial), line, "\n");
135 return strings::StrCat("mutable `", PythonDataTypeString(dtype), "`");
137 return strings::StrCat("`", PythonDataTypeString(dtype), "`");
158 return strings::StrCat("A `Tensor` of type ", type_str, ".");
172 prefix = strings::StrCat("A list of `", arg.number_attr(), "`");
176 prefix = strings::StrCat("A list of at least ", attr->minimum());
181 prefix = strings::StrCat("A list with the same length as `",
186 return strings::StrCat(prefix, " `Tensor` objects with type "
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Wchar/
Concatenation.c 34 return (wchar_t *)StrCat( (CHAR16 *)s1, (CONST CHAR16 *)s2);

Completed in 803 milliseconds

1 2 3 4 5 6 7 8 91011>>