- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for UpdateEdge (0.35 seconds)
-
tensorflow/c/c_api_test.cc
EXPECT_TRUE(found_scalar_const); EXPECT_TRUE(found_add); EXPECT_TRUE(found_neg); // Clean up TF_DeleteGraph(graph); TF_DeleteStatus(s); } TEST(CAPI, UpdateEdge) { TF_Status* s = TF_NewStatus(); TF_Graph* graph = TF_NewGraph(); // Make two scalar constants. TF_Operation* one = ScalarConst(1, graph, s, "one"); ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jan 07 04:56:09 GMT 2026 - 97.3K bytes - Click Count (0) -
tensorflow/c/c_api.cc
"Cannot update edge, incompatible shapes: ", ic_dst->DebugString(shape), " and ", ic_dst->DebugString(ic_dst->input(dst.index)), "."); return; } status->status = graph->graph.UpdateEdge(&new_src.oper->node, new_src.index, &dst.oper->node, dst.index); if (TF_GetCode(status) == TF_OK) { // This modification only updates the destination node for
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 04 05:55:32 GMT 2025 - 102.4K bytes - Click Count (0)