aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc/ops
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/cc/ops
parentfdc6752cda33e8d5879e4db68093eca7d7395988 (diff)
Rollback of: "Merge changes from github."
Change: 117304114
Diffstat (limited to 'tensorflow/cc/ops')
-rw-r--r--tensorflow/cc/ops/const_op.cc3
-rw-r--r--tensorflow/cc/ops/const_op.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/tensorflow/cc/ops/const_op.cc b/tensorflow/cc/ops/const_op.cc
index ddfa2a5b0e..cdf653a880 100644
--- a/tensorflow/cc/ops/const_op.cc
+++ b/tensorflow/cc/ops/const_op.cc
@@ -87,9 +87,6 @@ DEFINE_CONST(bool, bool_val);
DEFINE_CONST_IMPL(complex64, proto.add_scomplex_val(t.begin()->real());
proto.add_scomplex_val(t.begin()->imag()););
-DEFINE_CONST_IMPL(complex128, proto.add_dcomplex_val(t.begin()->real());
- proto.add_dcomplex_val(t.begin()->imag()););
-
Node* Const(StringPiece s, const GraphDefBuilder::Options& options) {
if (options.HaveError()) return nullptr;
NodeBuilder node_builder(options.GetNameForOp(OpName()), OpName(),
diff --git a/tensorflow/cc/ops/const_op.h b/tensorflow/cc/ops/const_op.h
index 0a1ee3f1e0..36a97f8e4c 100644
--- a/tensorflow/cc/ops/const_op.h
+++ b/tensorflow/cc/ops/const_op.h
@@ -49,7 +49,6 @@ DECLARE_CONST(uint8);
DECLARE_CONST(int16);
DECLARE_CONST(int8);
DECLARE_CONST(complex64);
-DECLARE_CONST(complex128);
DECLARE_CONST(int64);
DECLARE_CONST(bool);