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

Function Assign

tensorflow/core/graph/testlib.cc:116–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116Node* Assign(Graph* g, Node* var, Node* val) {
117 Node* ret;
118 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "Assign")
119 .Input(var)
120 .Input(val)
121 .Attr("use_locking", true)
122 .Finalize(g, &ret));
123 return ret;
124}
125
126Node* Cumsum(Graph* g, Node* data, Node* axes, bool exclusive, bool reverse) {
127 Node* ret;

Callers 15

StatusOrDataClass · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
TEST_FFunction · 0.50
BuildConcurrentAddAssignFunction · 0.50
TEST_FFunction · 0.50
TESTFunction · 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