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

Function Cumsum

tensorflow/core/graph/testlib.cc:126–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126Node* Cumsum(Graph* g, Node* data, Node* axes, bool exclusive, bool reverse) {
127 Node* ret;
128 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "Cumsum")
129 .Input(data)
130 .Input(axes)
131 .Attr("exclusive", exclusive)
132 .Attr("reverse", reverse)
133 .Finalize(g, &ret));
134 return ret;
135}
136
137Node* Reduce(Graph* g, const string& reduce, Node* data, Node* axes,
138 bool keep_dims) {

Callers 6

LargeOneDCumsumFunction · 0.50
ColCumsumFunction · 0.50
RowCumsumFunction · 0.50
ThreeDYCumsumFunction · 0.50
TEST_PFunction · 0.50
CumsumGradFunction · 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