| /external/tensorflow/tensorflow/core/tpu/kernels/ |
| D | tpu_compilation_cache_interface.cc | 424 const std::string session_name = in CompileIfKeyAbsentHelper() local 430 /*is_cache_hit=*/false, session_name); in CompileIfKeyAbsentHelper() 433 cache_key, "), session_name(", session_name, ")"); in CompileIfKeyAbsentHelper() 442 "disabled, session_name(", in CompileIfKeyAbsentHelper() 443 session_name, ") Debug String: ", subgraph_key.debug_string); in CompileIfKeyAbsentHelper() 458 << " with session_name( " << session_name << ");" in CompileIfKeyAbsentHelper() 471 cache_key, "), session_name(", session_name, "), subgraph_key(", in CompileIfKeyAbsentHelper() 473 // If session_name is present, log some additional stats related to HBM in CompileIfKeyAbsentHelper() 475 if (!session_name.empty()) { in CompileIfKeyAbsentHelper() 480 /*is_cache_hit=*/true, session_name); in CompileIfKeyAbsentHelper() [all …]
|
| D | tpu_compilation_metrics.h | 29 absl::string_view session_name); 35 static void IncrementCompilationCount(absl::string_view session_name);
|
| D | tpu_compilation_metrics.cc | 25 bool is_cache_hit, absl::string_view session_name) { in IncrementCacheLookupCount() argument 36 absl::string_view session_name) { in IncrementCompilationCount() argument
|
| D | tpu_compile_op_common.cc | 175 const std::string session_name = SessionNameFromMetadata(session_metadata); in CompileLocallyAndFillHostCache() local 177 << session_name << " took " << duration << " and " in CompileLocallyAndFillHostCache() 181 TpuCompilationMetrics::IncrementCompilationCount(session_name); in CompileLocallyAndFillHostCache()
|
| D | tpu_util.h | 34 // Utility to get session_name from `SessionMetadata`. `SessionMetadata` may
|
| /external/scapy/scapy/ |
| D | main.py | 290 def init_session(session_name, mydict=None): argument 300 if session_name: 302 os.stat(session_name) 304 log_loading.info("New session [%s]" % session_name) 308 SESSION = six.moves.cPickle.load(gzip.open(session_name,"rb")) 310 SESSION = six.moves.cPickle.load(open(session_name,"rb")) 311 log_loading.info("Using session [%s]" % session_name) 313 log_loading.error("Error opening session [%s]" % session_name) 315 log_loading.error("Error opening session [%s]. Attribute missing" % session_name) 322 conf.session = session_name [all …]
|
| /external/tensorflow/tensorflow/core/distributed_runtime/ |
| D | worker_session.cc | 113 const string& session_name, const string& worker_name, in WorkerSession() argument 117 : session_name_(session_name), in WorkerSession() 122 this, !session_name.empty(), in WorkerSession() 150 const string& session_name, const string& worker_name, in CreateWithBorrowedDeviceMgr() argument 155 session_name, worker_name, std::move(worker_cache), borrowed_device_mgr, in CreateWithBorrowedDeviceMgr() 160 const string& session_name, const string& worker_name, in WorkerSession() argument 164 : session_name_(session_name), in WorkerSession() 169 this, !session_name.empty(), remote_device_mgr.get())), in WorkerSession()
|
| D | worker_session.h | 46 const string& session_name() const { return session_name_; } in session_name() function 59 WorkerSession(const string& session_name, const string& worker_name, 66 const string& session_name, const string& worker_name, 91 WorkerSession(const string& session_name, const string& worker_name,
|
| D | cluster_function_library_runtime.cc | 225 req->set_session_handle(worker_session_->session_name()); in Instantiate() 276 req->set_session_handle(worker_session_->session_name()); in Run()
|
| /external/autotest/server/cros/multimedia/ |
| D | cfm_facade_adapter.py | 108 def start_new_hangout_session(self, session_name): argument 111 @param session_name: Name of the hangout session. 113 self._cfm_proxy.start_new_hangout_session(session_name) 169 def join_meeting_session(self, session_name): argument 172 @param session_name: Name of the meeting session. 174 self._cfm_proxy.join_meeting_session(session_name)
|
| /external/autotest/client/cros/multimedia/ |
| D | cfm_facade_native.py | 301 def start_new_hangout_session(self, session_name): argument 304 @param session_name: Name of the hangout session. 306 self._cfmApi.start_new_hangout_session(session_name) 330 def join_meeting_session(self, session_name): argument 333 @param session_name: Name of the meeting session. 335 self._cfmApi.join_meeting_session(session_name)
|
| /external/tensorflow/tensorflow/core/distributed_runtime/eager/ |
| D | eager_service_impl.cc | 234 auto session_name = in CreateContext() local 244 session_name, request->server_def(), request->cluster_device_attributes(), in CreateContext() 247 std::function<void()> session_destroyer = [this, context_id, session_name]() { in CreateContext() 249 auto s = env_->session_mgr->DeleteSession(session_name); in CreateContext() 251 LOG(WARNING) << "Failed to destroy worker session '" << session_name in CreateContext() 258 session_name, &worker_session)); in CreateContext() 386 auto session_name = in UpdateContext() local 390 session_name, request->server_def(), request->cluster_device_attributes(), in UpdateContext() 395 session_name, &worker_session)); in UpdateContext()
|
| /external/tensorflow/tensorflow/core/common_runtime/eager/ |
| D | context_distributed_manager.cc | 760 auto session_name = strings::StrCat("eager_", context_id); in UpdateContextWithServerDef() local 767 session_name, server_def, base_request.cluster_device_attributes(), in UpdateContextWithServerDef() 771 session_name, &worker_session)); in UpdateContextWithServerDef() 792 session_name, server_def, base_request.cluster_device_attributes(), in UpdateContextWithServerDef() 887 auto session_name = strings::StrCat("eager_", context_->GetContextId()); in EnableCollectiveOps() local 890 session_name, server_def, true)); in EnableCollectiveOps() 893 session_name, &worker_session)); in EnableCollectiveOps()
|
| /external/perfetto/src/perfetto_cmd/ |
| D | perfetto_cmd_state.proto | 28 optional string session_name = 1; field
|
| D | rate_limiter.cc | 120 if (session_state.session_name() == args.unique_session_name) { in ShouldTrace() 162 if (session.session_name() == args.unique_session_name) { in OnTraceDone()
|
| /external/bc/tests/fuzzing/ |
| D | bc_afl_continue.yaml | 1 session_name: bc_afl_continue
|
| D | bc_afl.yaml | 1 session_name: bc_afl
|