aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/tf_status_helper.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-07-29 14:53:45 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-07-29 16:03:48 -0700
commit788f359b7218ad46696c15459c89688ffe70955e (patch)
treeb1d3becb5cccdd977e6438d6b2cfe079aaa4ad15 /tensorflow/c/tf_status_helper.h
parent76c39bc1e7b06bf427a478d5c453777cf7882389 (diff)
Move C API files (and related files used by SWIG wrappers)
to new tensorflow/c directory. Change: 128855990
Diffstat (limited to 'tensorflow/c/tf_status_helper.h')
-rw-r--r--tensorflow/c/tf_status_helper.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/tensorflow/c/tf_status_helper.h b/tensorflow/c/tf_status_helper.h
new file mode 100644
index 0000000000..4bc56f9cb4
--- /dev/null
+++ b/tensorflow/c/tf_status_helper.h
@@ -0,0 +1,29 @@
+/* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+==============================================================================*/
+
+#ifndef TENSORFLOW_C_TF_STATUS_HELPER_H
+#define TENSORFLOW_C_TF_STATUS_HELPER_H
+
+#include "tensorflow/c/c_api.h"
+#include "tensorflow/core/lib/core/status.h"
+
+namespace tensorflow {
+
+// Set the attribute of "tf_status" from the attributes of "status".
+void Set_TF_Status_from_Status(TF_Status* tf_status, const Status& status);
+
+} // namespace tensorflow
+
+#endif // TENSORFLOW_C_TF_STATUS_HELPER_H