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

Function Arg

tensorflow/core/graph/testlib.cc:509–516  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

507}
508
509Node* Arg(Graph* g, int64 index, DataType type) {
510 Node* ret;
511 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "_Arg")
512 .Attr("T", type)
513 .Attr("index", index)
514 .Finalize(g, &ret));
515 return ret;
516}
517
518Node* Retval(Graph* g, int64 index, Node* in) {
519 Node* ret;

Callers 3

TEST_FFunction · 0.50
BuildTreeFunction · 0.50
RangeMethod · 0.50

Calls 4

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

Tested by

no test coverage detected