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

Function RandomGamma

tensorflow/core/graph/testlib.cc:205–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

203}
204
205Node* RandomGamma(Graph* g, Node* shape, Node* alpha) {
206 Node* ret;
207 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "RandomGamma")
208 .Input(shape)
209 .Input(alpha)
210 .Attr("seed", 0)
211 .Finalize(g, &ret));
212 return ret;
213}
214
215Node* RandomPoisson(Graph* g, Node* shape, Node* lam) {
216 Node* ret;

Callers 2

TEST_FFunction · 0.50
BM_cpu_RandomGammaFunction · 0.50

Calls 5

NodeBuilderClass · 0.70
FinalizeMethod · 0.45
AttrMethod · 0.45
InputMethod · 0.45
NewNameMethod · 0.45

Tested by

no test coverage detected