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

Function Gather

tensorflow/core/graph/testlib.cc:423–431  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

421}
422
423Node* Gather(Graph* g, Node* in0, Node* in1, Node* axis) {
424 Node* ret;
425 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "GatherV2")
426 .Input(in0)
427 .Input(in1)
428 .Input(axis)
429 .Finalize(g, &ret));
430 return ret;
431}
432
433Node* GetSessionTensor(Graph* g, Node* in) {
434 Node* ret;

Callers 7

TEST_FFunction · 0.50
RunTestMethod · 0.50
DynamicStitchGradFunction · 0.50
GatherV2GradFunction · 0.50
ProdGradFunction · 0.50
SegmentSumGradFunction · 0.50
GatherDropNegativesFunction · 0.50

Calls 4

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

Tested by

no test coverage detected