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

Function Multi

tensorflow/core/graph/testlib.cc:242–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240}
241
242Node* Multi(Graph* g, const string& func, gtl::ArraySlice<Node*> ins) {
243 Node* ret;
244 auto b = NodeBuilder(g->NewName("n"), func, g->op_registry());
245 for (Node* n : ins) b = b.Input(n);
246 TF_CHECK_OK(b.Finalize(g, &ret));
247 return ret;
248}
249
250Node* Identity(Graph* g, Node* input, int index) {
251 Node* ret;

Callers 9

MulChainFunction · 0.85
SGDFunction · 0.85
AdagradFunction · 0.85
SparseAdagradFunction · 0.85
MomentumFunction · 0.85
AdamFunction · 0.85
RMSPropFunction · 0.85
AddSignFunction · 0.85
PowerSignFunction · 0.85

Calls 5

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

Tested by

no test coverage detected