- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_SetRequireShapeInferenceFns (0.39 sec)
-
tensorflow/c/c_api.h
TF_CAPI_EXPORT extern void TF_RemoveAllControlInputs(TF_Graph* graph, TF_Operation* op); // Set if `graph` requires shape inference functions. TF_CAPI_EXPORT extern void TF_SetRequireShapeInferenceFns(TF_Graph* graph, bool require); // Extends `session` with any new operations added to its associated graph.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/c_api.cc
control_edges.push_back(edge); } for (const tensorflow::Edge* edge : control_edges) { graph->graph.RemoveControlEdge(edge); } } void TF_SetRequireShapeInferenceFns(TF_Graph* graph, bool require) { mutex_lock l(graph->mu); graph->refiner.set_require_shape_inference_fns(require); } void TF_ExtendSession(TF_Session* session, TF_Status* status) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0)