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

Method GetCallSite

tensorflow/compiler/xla/service/call_graph.cc:89–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87 : computation_(computation) {}
88
89const CallSite* CallGraphNode::GetCallSite(
90 const HloInstruction* instruction) const {
91 auto it = callsite_instructions_.find(instruction);
92 if (it == callsite_instructions_.end()) {
93 return nullptr;
94 }
95 return &callsites_[it->second];
96}
97
98std::string CallGraphNode::ToString() const { return computation_->name(); }
99

Callers 3

TEST_FFunction · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by 1

TEST_FFunction · 0.64