aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/python_api.h
diff options
context:
space:
mode:
authorGravatar Olivia Nordquist <nolivia@google.com>2017-09-26 19:56:26 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-09-26 20:13:58 -0700
commitc65b9f87d91f51a233cb649f4d1a5b5f63a4d5e1 (patch)
treec3c40e0fc0a11857151c1f00c1dd648684d28e50 /tensorflow/c/python_api.h
parent035a9be3cce366ceb57e3bb8d7a436135501061b (diff)
implementing _update_input for the C API
PiperOrigin-RevId: 170147211
Diffstat (limited to 'tensorflow/c/python_api.h')
-rw-r--r--tensorflow/c/python_api.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tensorflow/c/python_api.h b/tensorflow/c/python_api.h
index e1a55d7755..ab71a4170b 100644
--- a/tensorflow/c/python_api.h
+++ b/tensorflow/c/python_api.h
@@ -27,6 +27,9 @@ void AddControlInput(TF_Graph* graph, TF_Operation* op, TF_Operation* input);
void SetRequestedDevice(TF_Graph* graph, TF_Operation* op, const char* device);
+void UpdateEdge(TF_Graph* graph, TF_Output new_src, TF_Input dst,
+ TF_Status* status);
+
} // namespace tensorflow
#endif // THIRD_PARTY_TENSORFLOW_C_PYTHON_API_H_