aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/register_types.h
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-03-15 18:45:27 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-03-16 16:20:04 -0700
commit9a4878cc17d4039939e8df5a2a984cca8028baeb (patch)
treed58e341fe594a245a24539c8c37e61d67dcd93e2 /tensorflow/core/framework/register_types.h
parentfdc6752cda33e8d5879e4db68093eca7d7395988 (diff)
Rollback of: "Merge changes from github."
Change: 117304114
Diffstat (limited to 'tensorflow/core/framework/register_types.h')
-rw-r--r--tensorflow/core/framework/register_types.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/tensorflow/core/framework/register_types.h b/tensorflow/core/framework/register_types.h
index 1474dc6243..d08388a83b 100644
--- a/tensorflow/core/framework/register_types.h
+++ b/tensorflow/core/framework/register_types.h
@@ -63,16 +63,14 @@ limitations under the License.
m(int16); \
m(int8)
-// Call "m" for all number types, including complex64 and complex128.
+// Call "m" for all number types, including complex64.
#define TF_CALL_NUMBER_TYPES(m) \
TF_CALL_REAL_NUMBER_TYPES(m); \
- m(complex64); \
- m(complex128)
+ m(complex64)
#define TF_CALL_NUMBER_TYPES_NO_INT32(m) \
TF_CALL_REAL_NUMBER_TYPES_NO_INT32(m); \
- m(complex64); \
- m(complex128)
+ m(complex64)
#define TF_CALL_POD_TYPES(m) \
TF_CALL_NUMBER_TYPES(m); \