Home
last modified time | relevance | path

Searched refs:proto_index (Results 1 – 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/core/tpu/kernels/
Dtpu_compilation_cache_lookup.h60 virtual Status Lookup(int64 uid, int proto_index,
64 virtual Status Lookup(int64 uid, int proto_index, in Lookup() argument
66 return Lookup(uid, proto_index, std::move(entry), in Lookup()
Dtpu_compilation_cache_local_lookup.cc49 int64 uid, int proto_index, in Lookup() argument
54 Status s = cache_->Lookup(uid, proto_index, entry); in Lookup()
55 VLOG(1) << "Looked up uid " << uid << ", index " << proto_index in Lookup()
Dtpu_compilation_cache_rpc_lookup.cc99 int64 uid, int proto_index, in Lookup() argument
117 absl::StrCat(" _ ", uid, ":", proto_index, "_", in Lookup()
127 uid_and_index->set_proto_index(proto_index); in Lookup()
132 VLOG(1) << "Found uid " << uid << " and index " << proto_index in Lookup()
Dtpu_compilation_cache_interface.cc557 int64 uid, int proto_index, in Lookup() argument
571 if (proto_index < 0 || in Lookup()
572 proto_index >= cache_entry->tpu_program_group->program_count()) { in Lookup()
573 return errors::NotFound("No proto found for core index ", proto_index, in Lookup()
577 proto_index); in Lookup()
595 int proto_index = iter->second.second; in Lookup() local
597 proto_index); in Lookup()
Dtpu_compilation_cache_local_lookup.h39 Status Lookup(int64 uid, int proto_index,
Dtpu_compilation_cache_rpc_lookup.h48 Status Lookup(int64 uid, int proto_index,
Dtpu_compilation_cache_common.proto29 int32 proto_index = 2; field
Dtpu_compilation_cache_service.cc101 call->request.uid_and_index().proto_index(), &entry); in GetTpuProgram()
Dtpu_compilation_cache_interface.h146 Status Lookup(int64 uid, int proto_index,
/external/perfetto/src/trace_processor/python/perfetto/trace_processor/
Dapi.py66 def get_cell_list(self, proto_index): argument
67 if proto_index == TraceProcessor.QUERY_CELL_NULL_FIELD_ID:
69 elif proto_index == TraceProcessor.QUERY_CELL_VARINT_FIELD_ID:
71 elif proto_index == TraceProcessor.QUERY_CELL_FLOAT64_FIELD_ID:
73 elif proto_index == TraceProcessor.QUERY_CELL_BLOB_FIELD_ID:
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dsnapshot_util.cc249 int proto_index = 0; in WriteTensors() local
257 tensor_protos[proto_index].SerializeToArray( in WriteTensors()
259 proto_index++; in WriteTensors()