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

Function Reduce

tensorflow/core/graph/testlib.cc:137–146  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135}
136
137Node* Reduce(Graph* g, const string& reduce, Node* data, Node* axes,
138 bool keep_dims) {
139 Node* ret;
140 TF_CHECK_OK(NodeBuilder(g->NewName("n"), reduce, g->op_registry())
141 .Input(data)
142 .Input(axes)
143 .Attr("keep_dims", keep_dims)
144 .Finalize(g, &ret));
145 return ret;
146}
147
148Node* QuantizeToUINT8(Graph* g, Node* data) {
149 Node* ret;

Callers 15

RunTestMethod · 0.50
GpuSegmentedReduceFunction · 0.50
LaunchScalarReductionFunction · 0.50
LaunchRowReductionFunction · 0.50
Launch3DXZReductionFunction · 0.50
ComputeMethod · 0.50
ReduceOperandFunction · 0.50
ToScalarFunction · 0.50
ColReduceFunction · 0.50
RowReduceFunction · 0.50
ThreeDYReduceFunction · 0.50
ThreeDXZReduceFunction · 0.50

Calls 6

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

Tested by

no test coverage detected