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

Function Conv2D

tensorflow/core/graph/testlib.cc:470–480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

468}
469
470Node* Conv2D(Graph* g, Node* in0, Node* in1) {
471 Node* ret;
472 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "Conv2D")
473 .Input(in0)
474 .Input(in1)
475 .Attr("T", DT_FLOAT)
476 .Attr("strides", {1, 1, 1, 1})
477 .Attr("padding", "SAME")
478 .Finalize(g, &ret));
479 return ret;
480}
481
482Node* Diag(Graph* g, Node* in, DataType type) {
483 Node* ret;

Callers 15

TEST_FFunction · 0.50
SimpleConv2DFunction · 0.50
CreateSimpleAddNFunction · 0.50
CreateSimpleIdentityNFunction · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
MulConvPushDownTestMethod · 0.50
TEST_FFunction · 0.50
SimpleConv2DFunction · 0.50
TEST_FFunction · 0.50
SimpleConv2DMethod · 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