Home
last modified time | relevance | path

Searched refs:str_id (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/data/experimental/benchmarks/
Dmap_vectorization_benchmark.py115 def _compare(self, input_dataset, map_fn, batch_size, input_size, str_id): argument
135 name=name_template.format(str_id, batch_size, num_elems, "unoptimized"))
138 name=name_template.format(str_id, batch_size, num_elems, "optimized"))
143 "Speedup: {}\n".format(batch_size, input_size, str_id,
185 def _benchmark_helper(self, map_fn, str_id, base_dataset_factory=None): argument
197 self._compare(base_dataset, map_fn, batch_size, input_size, str_id)
/external/perfetto/tools/trace_to_text/
Dtrace_to_profile.cc148 for (uint64_t str_id : mapping.path_string_ids()) { in DumpProfilePacket() local
149 auto it = string_lookup.find(str_id); in DumpProfilePacket()
153 static_cast<uint64_t>(mapping.id()), str_id); in DumpProfilePacket()
/external/perfetto/src/trace_processor/
Dheap_profile_tracker.cc75 const StringId& str_id = opt_str_id.value(); in AddFrame() local
85 TraceStorage::HeapProfileFrames::Row row{str_id, mapping_row, in AddFrame()
Dproto_trace_parser.cc1301 auto str_id = context_->storage->InternString( in ParseProfilePacket() local
1303 context_->heap_profile_tracker->AddString(index, entry.id(), str_id); in ParseProfilePacket()
/external/tensorflow/tensorflow/core/nccl/
Dnccl_manager.cc113 void StringToNcclUniqueId(const string& str_id, ncclUniqueId* nccl_id) { in StringToNcclUniqueId() argument
114 if (str_id.size() == NCCL_UNIQUE_ID_BYTES) { in StringToNcclUniqueId()
115 memcpy(nccl_id->internal, str_id.data(), NCCL_UNIQUE_ID_BYTES); in StringToNcclUniqueId()