• 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 
20 REGISTER6(BinaryOp, CPU, "Mul", functor::mul, float, Eigen::half, double, uint8,
21           int32, bfloat16);
22 REGISTER5(BinaryOp, CPU, "MulNoNan", functor::mul_no_nan, Eigen::half, float,
23           double, complex64, complex128);
24 
25 #if defined(__ANDROID_TYPES_SLIM__)
26 // We only register the first type when we have multi-argument calls in the
27 // case where we're trying to reduce executable size, but it turns out that the
28 // int32 version of this op is needed, so explicitly include it.
29 REGISTER(BinaryOp, CPU, "Mul", functor::mul, int32);
30 #endif  // __ANDROID_TYPES_SLIM__
31 
32 #if GOOGLE_CUDA
33 REGISTER4(BinaryOp, GPU, "Mul", functor::mul, float, Eigen::half, double,
34           uint8);
35 // A special GPU kernel for int32.
36 // TODO(b/25387198): Also enable int32 in device memory. This kernel
37 // registration requires all int32 inputs and outputs to be in host memory.
38 REGISTER_KERNEL_BUILDER(Name("Mul")
39                             .Device(DEVICE_GPU)
40                             .HostMemory("x")
41                             .HostMemory("y")
42                             .HostMemory("z")
43                             .TypeConstraint<int32>("T"),
44                         BinaryOp<CPUDevice, functor::mul<int32>>);
45 REGISTER2(BinaryOp, GPU, "MulNoNan", functor::mul_no_nan, float, double);
46 #endif
47 
48 #ifdef TENSORFLOW_USE_SYCL
49 REGISTER3(BinaryOp, SYCL, "Mul", functor::mul, float, double, uint8);
50 REGISTER_KERNEL_BUILDER(Name("Mul")
51                             .Device(DEVICE_SYCL)
52                             .HostMemory("x")
53                             .HostMemory("y")
54                             .HostMemory("z")
55                             .TypeConstraint<int32>("T"),
56                         BinaryOp<CPUDevice, functor::mul<int32>>);
57 #endif  // TENSORFLOW_USE_SYCL
58 }  // namespace tensorflow
59