aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/cwise_op_greater.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-04-19 14:02:36 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-04-19 15:12:21 -0700
commit97880edb4edc3196c37be0cefa2ba506d315b7ec (patch)
treedeb67ffaa8bb1b6a9d54c568e4720239d826b8b9 /tensorflow/core/kernels/cwise_op_greater.cc
parentb1d7f22fc6ab2bd3c1064b19621b9f889efb203f (diff)
For Android slim mode the first type of Register is used.
Eigen::half has been previously introduced and now occupies this position. Change the order so that the first type is float again. Change: 120274210
Diffstat (limited to 'tensorflow/core/kernels/cwise_op_greater.cc')
-rw-r--r--tensorflow/core/kernels/cwise_op_greater.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/core/kernels/cwise_op_greater.cc b/tensorflow/core/kernels/cwise_op_greater.cc
index 86e5e25da3..d50bfcf267 100644
--- a/tensorflow/core/kernels/cwise_op_greater.cc
+++ b/tensorflow/core/kernels/cwise_op_greater.cc
@@ -16,10 +16,10 @@ limitations under the License.
#include "tensorflow/core/kernels/cwise_ops_common.h"
namespace tensorflow {
-REGISTER8(BinaryOp, CPU, "Greater", functor::greater, Eigen::half, float,
+REGISTER8(BinaryOp, CPU, "Greater", functor::greater, float, Eigen::half,
double, int32, int64, uint8, int8, int16);
#if GOOGLE_CUDA
-REGISTER7(BinaryOp, GPU, "Greater", functor::greater, Eigen::half, float,
+REGISTER7(BinaryOp, GPU, "Greater", functor::greater, float, Eigen::half,
double, int64, uint8, int8, int16);
// A special GPU kernel for int32.