• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 
16 #include "tensorflow/core/kernels/cwise_ops_common.h"
17 
18 namespace tensorflow {
19 REGISTER7(BinaryOp, CPU, "Equal", functor::equal_to, float, Eigen::half, double,
20           uint8, int8, int16, bfloat16);
21 REGISTER_KERNEL_BUILDER(
22     Name("ApproximateEqual").Device(DEVICE_CPU).TypeConstraint<float>("T"),
23     ApproximateEqualOp<CPUDevice, float>);
24 REGISTER_KERNEL_BUILDER(
25     Name("ApproximateEqual").Device(DEVICE_CPU).TypeConstraint<double>("T"),
26     ApproximateEqualOp<CPUDevice, double>);
27 #if GOOGLE_CUDA
28 REGISTER4(BinaryOp, GPU, "Equal", functor::equal_to, float, Eigen::half, double,
29           uint8);
30 REGISTER_KERNEL_BUILDER(
31     Name("ApproximateEqual").Device(DEVICE_GPU).TypeConstraint<float>("T"),
32     ApproximateEqualOp<GPUDevice, float>);
33 REGISTER_KERNEL_BUILDER(
34     Name("ApproximateEqual").Device(DEVICE_GPU).TypeConstraint<double>("T"),
35     ApproximateEqualOp<GPUDevice, double>);
36 
37 // A special GPU kernel for int32.
38 // TODO(b/25387198): Also enable int32 in device memory. This kernel
39 // registration requires all int32 inputs and outputs to be in host memory.
40 REGISTER_KERNEL_BUILDER(Name("Equal")
41                             .Device(DEVICE_GPU)
42                             .HostMemory("x")
43                             .HostMemory("y")
44                             .HostMemory("z")
45                             .TypeConstraint<int32>("T"),
46                         BinaryOp<CPUDevice, functor::equal_to<int32>>);
47 #endif
48 
49 #ifdef TENSORFLOW_USE_SYCL
50 REGISTER5(BinaryOp, SYCL, "Equal", functor::equal_to, float, double, uint8,
51           int8, int16);
52 REGISTER_KERNEL_BUILDER(Name("Equal")
53                             .Device(DEVICE_SYCL)
54                             .HostMemory("x")
55                             .HostMemory("y")
56                             .HostMemory("z")
57                             .TypeConstraint<int32>("T"),
58                         BinaryOp<CPUDevice, functor::equal_to<int32>>);
59 #endif  // TENSORFLOW_USE_SYCL
60 
61 }  // namespace tensorflow
62