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

12 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/compiler/xla/
window_util.cc 23 #include "tensorflow/core/lib/strings/strcat.h"
53 using tensorflow::strings::StrCat;
54 string str = StrCat("(size=", dim.size());
79 using tensorflow::strings::StrCat;
94 [](const WindowDimension& dim) { return StrCat(dim.size()); });
97 [](const WindowDimension& dim) { return StrCat(dim.stride()); });
101 return StrCat(dim.padding_low(), "_", dim.padding_high());
106 return StrCat(dim.base_dilation());
111 return StrCat(dim.window_dilation());
116 return StrCat(dim.window_reversal() ? 1 : 0)
    [all...]
status_macros.cc 22 #include "tensorflow/core/lib/strings/strcat.h"
41 tensorflow::strings::StrCat("\n", tensorflow::CurrentStackTrace());
147 ? tensorflow::strings::StrCat(prior_message_, stream_str)
148 : tensorflow::strings::StrCat(stream_str, prior_message_);
151 tensorflow::strings::StrCat(
  /external/tensorflow/tensorflow/contrib/verbs/
verbs_util.cc 23 #include "tensorflow/core/lib/strings/strcat.h"
29 return strings::StrCat(key, ";", step_id);
  /external/tensorflow/tensorflow/core/common_runtime/
threadpool_device_factory.cc 39 string name = strings::StrCat(name_prefix, "/device:CPU:", i);
  /external/tensorflow/tensorflow/core/kernels/data/
dataset_utils.cc 44 strings::StrCat(prefix, "[", thread_index, "]"));
  /external/tensorflow/tensorflow/compiler/aot/
codegen.cc 32 #include "tensorflow/core/lib/strings/strcat.h"
125 dim_vars.push_back(strings::StrCat("size_t dim", dim));
126 dim_sizes += strings::StrCat("[", shape.dimensions(dim), "]");
127 indices += strings::StrCat("[dim", dim, "]");
130 rewrites->push_back({"{{I}}", strings::StrCat(i)});
183 *methods += RewriteWithName(strings::StrCat(i), code, rewrites);
224 *methods += RewriteWithName(strings::StrCat(i), code, rewrites);
316 ns_start += strings::StrCat("namespace ", n, " {\n");
322 ns_end += strings::StrCat("} // end namespace ", n, "\n");
499 {"{{ARG_BYTES_ALIGNED}}", strings::StrCat(arg_bytes_aligned)}
    [all...]
embedded_protocol_buffers.cc 47 strings::StrCat(unique_identifier, "_protobuf_array_contents");
78 {"{{ARRAY_SYMBOL}}", strings::StrCat(protobuf_array_symbol_name)},
79 {"{{ARRAY_SIZE}}", strings::StrCat(protobuf_array_size)},
80 {"{{PROTOBUF_NAME}}", strings::StrCat(qualified_cpp_protobuf_name)},
144 cpp_variable_decl = strings::StrCat("extern \"C\" char ",
  /external/tensorflow/tensorflow/contrib/ffmpeg/default/
ffmpeg_lib.cc 34 using tensorflow::strings::StrCat;
53 "-probesize", StrCat(kDefaultProbeSize), "-i", input_filename,
58 "-ac:a:0", StrCat(channel_count), "-ar:a:0", StrCat(samples_per_second),
66 command.emplace_back(StrCat("0:", stream));
68 command.emplace_back(StrCat(output_filename));
78 StrCat(kDefaultProbeSize), "-loglevel",
85 StrCat(output_filename)};
323 return Status(error::Code::NOT_FOUND, StrCat("FFmpeg could not be found."));
330 StrCat("fork failed: ", strerror(errno)))
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_buffer.cc 31 #include "tensorflow/core/lib/strings/strcat.h"
37 using ::tensorflow::strings::StrCat;
62 return StrCat("HloBuffer ", id_, ", values: ",
hlo_sharding.cc 23 using ::tensorflow::strings::StrCat;
48 return StrCat("{", tensorflow::str_util::Join(parts, ", "), "}");
51 string result = StrCat("{", (replicated_ ? " replicated" : ""),
57 return StrCat(
60 return StrCat("{", ShapeUtil::HumanString(tile_shape_), " ",
166 StrCat("Sharding is tuple-shaped but validation shape is not."));
177 StrCat("Validation tuple shape has ", num_leaves,
190 &status, StrCat("Note: While validating sharding tuple element ",
204 &status, StrCat("Note: While validating sharding ", ToString(),
214 StrCat("Validation shape is a tuple but sharding is not."))
    [all...]
hlo_value.cc 33 #include "tensorflow/core/lib/strings/strcat.h"
40 using ::tensorflow::strings::StrCat;
49 return StrCat(instruction->name(), index_str);
62 return StrCat(instruction->name(), ", operand ", operand_number, index_str);
93 return StrCat(id_, " ", is_phi_ ? "PHI " : "", defining_instruction()->name(),
99 string out = StrCat(indentation, ToShortString(), ", positions:\n");
217 return StrCat("HloValueSet: ",
283 StrCat("InstructionValueSet(", ShapeUtil::HumanString(shape()), ")\n");
computation_layout.cc 22 #include "tensorflow/core/lib/strings/strcat.h"
52 return tensorflow::strings::StrCat("(",
hlo_module_config.cc 25 #include "tensorflow/core/lib/strings/strcat.h"
43 tensorflow::strings::StrCat("profiling=", hlo_profiling_enabled_);
  /external/tensorflow/tensorflow/core/util/
env_var.cc 23 #include "tensorflow/core/lib/strings/strcat.h"
43 return errors::InvalidArgument(strings::StrCat(
58 return errors::InvalidArgument(strings::StrCat(
  /external/tensorflow/tensorflow/core/graph/
quantize_training_test.cc 35 #include "tensorflow/core/lib/strings/strcat.h"
113 FindNode(g, strings::StrCat(identity->name(), "/QuantizeAndDequantizeV2"),
120 FindNode(g, strings::StrCat(relu->name(), "/QuantizeAndDequantizeV2"),
164 FindNode(g, strings::StrCat(relu6->name(), "/QuantizeAndDequantizeV2"),
171 FindNode(g, strings::StrCat(relu->name(), "/QuantizeAndDequantizeV2"),
216 Status s = FindNode(g, strings::StrCat(d->name(), "/QuantizeAndDequantizeV2"),
222 FindNode(g, strings::StrCat(relu->name(), "/QuantizeAndDequantizeV2"),
225 FindNode(g, strings::StrCat(identity->name(), "/QuantizeAndDequantizeV2"),
228 g, strings::StrCat(c->name(), "/QuantizeAndDequantizeV2"), &found_node));
270 Status s = FindNode(g, strings::StrCat(d->name(), "/FakeQuantWithMinMaxVars")
    [all...]
  /external/tensorflow/tensorflow/core/framework/
node_def_builder.cc 71 errors_.push_back(strings::StrCat("More Input() calls than the ",
113 errors_.push_back(strings::StrCat("Single tensor passed to '",
158 errors_.push_back(strings::StrCat("List provided to input '",
169 strings::StrCat("Non-control input starting with ^: ", src_node));
171 node_def_.add_input(strings::StrCat(src_node, ":", src_index));
180 errors_.push_back(strings::StrCat("Input '", input_arg->name(), "' passed ",
189 errors_.push_back(strings::StrCat("Input '", input_arg->name(), "' passed ",
213 strings::StrCat(inputs_specified_, " inputs specified of ",
241 node_def->add_input(strings::StrCat("^", control_input));
254 errors_.push_back(strings::StrCat("Inconsistent values for attr '", name
    [all...]
  /external/tensorflow/tensorflow/tools/proto_text/
gen_proto_text_functions_lib.cc 37 string StrCat(const Args&... args) {
45 *to_append += StrCat(args...);
170 return StrCat(GetClassName(*d.containing_type()), "_", d.name());
176 return StrCat(GetClassName(*ed.containing_type()), "_", ed.name());
182 return StrCat(GetPackageReferencePrefix(d.file()), GetClassName(d));
188 return StrCat(GetPackageReferencePrefix(d.file()), GetClassName(d));
194 return StrCat(GetPackageReferencePrefix(d.file()),
201 return StrCat("EnumName_", GetClassName(enum_d));
206 return StrCat(GetPackageReferencePrefix(enum_d.file()),
319 StrCat("msg.", name, "().at(key)"))
    [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_memory_test.cc 60 tensors.insert(strings::StrCat(t.node, ":", t.output_id));
90 tensors.insert(strings::StrCat(t.node, ":", t.output_id));
114 cpu_tensors.insert(strings::StrCat(t.node, ":", t.output_id));
127 gpu_tensors.insert(strings::StrCat(t.node, ":", t.output_id));
154 gpu_tensors.insert(strings::StrCat(t.node, ":", t.output_id));
181 new_gpu_tensors.insert(strings::StrCat(t.node, ":", t.output_id));
217 tensors.insert(strings::StrCat(t.node, ":", t.output_id));
  /external/tensorflow/tensorflow/core/kernels/
load_and_remap_matrix_op.cc 48 strings::StrCat("Old ID ", old_id, " is mapped to both new ID ",
79 errors::InvalidArgument(strings::StrCat(
113 errors::InvalidArgument(strings::StrCat(
142 errors::InvalidArgument(strings::StrCat(
149 errors::InvalidArgument(strings::StrCat(
159 errors::InvalidArgument(strings::StrCat(
253 errors::Internal(strings::StrCat(
  /external/tensorflow/tensorflow/contrib/lite/models/smartreply/
predictor_test.cc 38 return string(StrCat(tensorflow::testing::TensorFlowSrcRoot(), "/",
58 StrCat(TestDataPath(), "/", kModelName).c_str());
124 std::ifstream fin(StrCat(TestDataPath(), "/", kSamples));
  /external/tensorflow/tensorflow/cc/framework/
cc_op_gen.cc 32 #include "tensorflow/core/lib/strings/strcat.h"
130 return strings::StrCat("\"", str_util::CEscape(str), "\"");
200 return strings::StrCat("Input::Initializer(", "{", PrintTensor(proto), "}, ",
210 return strings::StrCat(attr_value.i());
213 return strings::StrCat(attr_value.f(), floorf(f) == f ? ".0" : "", "f");
440 return strings::StrCat(name, "_");
535 comment = strings::StrCat(api_def.summary(), "\n");
543 comment = strings::StrCat(api_def.summary(), "\n");
554 arg_types.push_back(strings::StrCat(
596 arg_types.push_back(strings::StrCat(
    [all...]
  /external/google-benchmark/src/
string_util.h 29 inline std::string StrCat(Args&&... args) {
  /external/libcxx/utils/google-benchmark/src/
string_util.h 29 inline std::string StrCat(Args&&... args) {
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/llvm_gpu_backend/
utils.cc 26 #include "tensorflow/core/lib/strings/strcat.h"
62 return tensorflow::strings::StrCat(stem, ".", new_extension);
  /external/tensorflow/tensorflow/core/common_runtime/sycl/
sycl_device_factory.cc 38 string name = strings::StrCat(name_prefix, "/device:SYCL:", i);

Completed in 906 milliseconds

12 3 4 5 6 7 8 91011>>