aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/numeric_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/framework/numeric_types.h')
-rw-r--r--tensorflow/core/framework/numeric_types.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tensorflow/core/framework/numeric_types.h b/tensorflow/core/framework/numeric_types.h
new file mode 100644
index 0000000000..366f00ae03
--- /dev/null
+++ b/tensorflow/core/framework/numeric_types.h
@@ -0,0 +1,15 @@
+#ifndef TENSORFLOW_FRAMEWORK_NUMERIC_TYPES_H_
+#define TENSORFLOW_FRAMEWORK_NUMERIC_TYPES_H_
+
+#include <complex>
+
+#include "tensorflow/core/platform/port.h"
+
+namespace tensorflow {
+
+// Single precision complex.
+typedef std::complex<float> complex64;
+
+} // end namespace tensorflow
+
+#endif // TENSORFLOW_FRAMEWORK_NUMERIC_TYPES_H_