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

Function BiasAdd

tensorflow/core/graph/testlib.cc:460–468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

458}
459
460Node* BiasAdd(Graph* g, Node* value, Node* bias) {
461 Node* ret;
462 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "BiasAdd")
463 .Input(value)
464 .Input(bias)
465 .Attr("T", DT_FLOAT)
466 .Finalize(g, &ret));
467 return ret;
468}
469
470Node* Conv2D(Graph* g, Node* in0, Node* in1) {
471 Node* ret;

Callers 11

TestConvertBiasAddFunction · 0.50
TEST_FFunction · 0.50
RunTestMethod · 0.50
RunTestMethod · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
LinearFunction · 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