MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Send

Method Send

tensorflow/core/common_runtime/rendezvous_mgr.cc:39–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37IntraProcessRendezvous::~IntraProcessRendezvous() { local_->Unref(); }
38
39Status IntraProcessRendezvous::Send(const ParsedKey& parsed,
40 const Rendezvous::Args& args,
41 const Tensor& val, const bool is_dead) {
42 VLOG(1) << "IntraProcessRendezvous Send " << this << " " << parsed.FullKey();
43 {
44 mutex_lock l(mu_);
45 if (!status_.ok()) return status_;
46 }
47
48 // Buffers "val" and "device_context" in local_.
49 return local_->Send(parsed, args, val, is_dead);
50}
51
52Status IntraProcessRendezvous::ParseKey(const string& key, bool is_src,
53 Rendezvous::ParsedKey* parsed) {

Callers 4

SendTensorsToRendezvousFunction · 0.45
SendPRunInputsMethod · 0.45
RunWithArgsMethod · 0.45
TEST_FFunction · 0.45

Calls 2

FullKeyMethod · 0.80
okMethod · 0.45

Tested by 2

RunWithArgsMethod · 0.36
TEST_FFunction · 0.36