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

1 2 3 4 56 7 8 91011>>

  /external/tensorflow/tensorflow/compiler/xla/tools/parser/
hlo_parser.cc 23 #include "tensorflow/core/lib/strings/strcat.h"
37 using tensorflow::strings::StrCat;
244 StrCat("was parsing ", line, ":", col, ": error: ", msg));
246 error_lines.push_back(col == 0 ? "" : StrCat(string(col - 1, ' '), "^"));
372 StrCat("Shape of computation ", name, ", ",
    [all...]
  /external/google-benchmark/src/
sysinfo.cc 190 StrCat("/sys/devices/system/cpu/cpu", cpu, "/cpufreq/scaling_governor");
223 std::string FPath = StrCat(dir, "index", Idx++, "/");
224 std::ifstream f(StrCat(FPath, "size").c_str());
240 if (!ReadFromFile(StrCat(FPath, "type"), &info.type))
242 if (!ReadFromFile(StrCat(FPath, "level"), &info.level))
245 if (!ReadFromFile(StrCat(FPath, "shared_cpu_map"), &map_str))
console_reporter.cc 120 rate = StrCat(" ", HumanReadableNumber(result.bytes_per_second), "B/s");
127 StrCat(" ", HumanReadableNumber(result.items_per_second), " items/s");
  /external/libcxx/utils/google-benchmark/src/
sysinfo.cc 190 StrCat("/sys/devices/system/cpu/cpu", cpu, "/cpufreq/scaling_governor");
223 std::string FPath = StrCat(dir, "index", Idx++, "/");
224 std::ifstream f(StrCat(FPath, "size").c_str());
240 if (!ReadFromFile(StrCat(FPath, "type"), &info.type))
242 if (!ReadFromFile(StrCat(FPath, "level"), &info.level))
245 if (!ReadFromFile(StrCat(FPath, "shared_cpu_map"), &map_str))
console_reporter.cc 120 rate = StrCat(" ", HumanReadableNumber(result.bytes_per_second), "B/s");
127 StrCat(" ", HumanReadableNumber(result.items_per_second), " items/s");
  /external/tensorflow/tensorflow/core/framework/
rendezvous_test.cc 28 #include "tensorflow/core/lib/strings/strcat.h"
63 Rendezvous::ParseKey(strings::StrCat(key, ";", key), &parsed).ok());
181 TF_ASSERT_OK(rendez_->Send(MakeKey(strings::StrCat(i)), args,
182 V(strings::StrCat(i)), false));
188 EXPECT_EQ(strings::StrCat(i), V(val));
204 rendez_->RecvAsync(MakeKey(strings::StrCat(i)), Rendezvous::Args(),
224 TF_ASSERT_OK(rendez_->Send(key_foo, args, V(strings::StrCat(i)), false));
types.cc 20 #include "tensorflow/core/lib/strings/strcat.h"
103 return strings::StrCat("unknown dtype enum (", dtype, ")");
111 return strings::StrCat(DataTypeStringInternal(non_ref), "_ref");
  /external/tensorflow/tensorflow/core/kernels/data/
interleave_dataset_op.cc 102 new Iterator({this, strings::StrCat(prefix, "::Interleave")}));
256 full_name(strings::StrCat("args_size[", idx, "]")),
260 full_name(strings::StrCat("args_list_[", idx, "][", i, "]")),
273 full_name(strings::StrCat("args_size[", idx, "]")))) {
276 full_name(strings::StrCat("args_size[", idx, "]")),
281 full_name(strings::StrCat("args_list_[", idx, "][", i, "]")),
random_dataset_op.cc 60 new Iterator({this, strings::StrCat(prefix, "::Random")}));
75 return strings::StrCat("RandomDatasetOp(", seed_, ", ", seed2_,
range_dataset_op.cc 54 new Iterator({this, strings::StrCat(prefix, "::Range")}));
69 return strings::StrCat("RangeDatasetOp(", start_, ", ", stop_, ", ",
skip_dataset_op.cc 54 new EmptyIterator({this, strings::StrCat(prefix, "::EmptySkip")}));
60 {this, strings::StrCat(prefix, "::FiniteSkip")}));
take_dataset_op.cc 57 new EmptyIterator({this, strings::StrCat(prefix, "::EmptyTake")}));
60 {this, strings::StrCat(prefix, "::FiniteTake")}));
zip_dataset_op.cc 66 new Iterator({this, strings::StrCat(prefix, "::Zip")}));
103 strings::StrCat(params.prefix, "[", idx++, "]")));
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_instruction.cc 41 #include "tensorflow/core/lib/strings/strcat.h"
49 using ::tensorflow::strings::StrCat;
    [all...]
hlo_graph_dumper.cc 42 #include "tensorflow/core/lib/strings/strcat.h"
56 using ::tensorflow::strings::StrCat;
330 return StrCat(reinterpret_cast<uint64>(instruction));
335 return StrCat("cluster_", reinterpret_cast<uint64>(computation));
464 StrCat(label_, "<br/>Computation ", computation_->name());
467 StrCat(" (in fusion instruction ",
553 string HloDotDumper::Footer() { return StrCat(Join(edges_, "\n"), "\n}"); }
803 constant_name = StrCat("constant ", constant->name());
817 return StrCat("<b>constant</b> ", stringify_constant(operand));
    [all...]
while_util.cc 29 tensorflow::strings::StrCat("wide.", narrow_condition->name()));
61 tensorflow::strings::StrCat("wide.", narrow_body->name()));
  /external/tensorflow/tensorflow/core/grappler/optimizers/
memory_optimizer.cc 334 strings::StrCat("^", current_trigger_node->name());
345 strings::StrCat("^", (*target_input_iterator)->name());
403 strings::StrCat("^", triggers[original_node]->name());
508 strings::StrCat(input.node->name(), ":", input.port_id);
542 string tensor_name = strings::StrCat(live.node, ":", live.output_id);
627 tmp_var->set_name(strings::StrCat(node->name(), "/tmp_var"));
642 zeros->set_name(strings::StrCat(node->name(), "/tmp_var_zeros"));
649 initialize->set_name(strings::StrCat(node->name(), "/tmp_var_initializer"));
665 strings::StrCat(node->name(), "/tmp_var_accum_", i));
711 string tensor_to_swap = strings::StrCat(node->name(), "_", input_to_swap)
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter.cc 200 StrCat("Missing or invalid @type for any field in ",
244 StrCat("Missing or invalid @type for any field in ",
281 StrCat("Missing or invalid @type for any field in ",
677 InvalidValue("Map", StrCat("Cannot have repeated items ('", name,
770 StrCat("Cannot bind a list to map for field '", name, "'."));
864 StrCat("Invalid data type for timestamp, value is ",
874 return Status(INVALID_ARGUMENT, StrCat("Invalid time format: ", value));
894 StrCat("Invalid data type for field mask, value is ",
910 StrCat("Invalid data type for duration, value is ",
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Drivers/FdtDxe/
FdtDxe.c 262 StrCat(FilePathText, L"/");
263 StrCat(FilePathText, FdtFileName);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 74 StrCat("&this->", FieldName(descriptor), "()");
106 StrCat(prefix, (*variables)["name"], "_");
  /external/tensorflow/tensorflow/c/
c_api_function.cc 29 #include "tensorflow/core/lib/strings/strcat.h"
109 const string candidate = strings::StrCat(name, "_", i);
211 strings::StrCat(edge->src()->name(), ":", edge->src_output());
238 node_def->add_input(strings::StrCat("^", normalized));
305 tensor_renaming[strings::StrCat(node->name(), ":", idx)] = input_name;
330 const string& original_name = strings::StrCat(node->name(), ":", i);
332 strings::StrCat(node_name, ":", output_name, ":", i - index_start);
351 strings::StrCat(outputs[r].node->name(), ":", outputs[r].index);
375 fdef->mutable_signature()->set_name(strings::StrCat(fn_name, "_", encoded));
  /external/tensorflow/tensorflow/compiler/tf2xla/lib/
while_loop.cc 49 builder->CreateSubBuilder(strings::StrCat(name, "_condition"));
63 builder->CreateSubBuilder(strings::StrCat(name, "_body"));
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_parallelization_preparation.cc 27 #include "tensorflow/core/lib/strings/strcat.h"
99 tensorflow::strings::StrCat("pp_", instruction->name()),
156 {instruction}, tensorflow::strings::StrCat("pp_", instruction->name()),
  /external/tensorflow/tensorflow/core/common_runtime/
accumulate_n_optimizer.cc 91 op, g->NewName(strings::StrCat(n->name(), "/Internal")));
116 strings::StrCat(n->name(), "/Internal/Accumulator");
  /external/tensorflow/tensorflow/core/grappler/
graph_view_test.cc 67 strings::StrCat(fo.node->name(), ":", fo.port_id, " "));
74 strings::StrCat(fi.node->name(), ":", fi.port_id, " "));

Completed in 845 milliseconds

1 2 3 4 56 7 8 91011>>