Home | History | Annotate | Download | only in kernels
      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/reduction_ops_common.h"
     17 
     18 namespace tensorflow {
     19 
     20 #define REGISTER_CPU_KERNELS(type)                                          \
     21   REGISTER_KERNEL_BUILDER(Name("Prod")                                      \
     22                               .Device(DEVICE_CPU)                           \
     23                               .TypeConstraint<type>("T")                    \
     24                               .TypeConstraint<int32>("Tidx"),               \
     25                           ReductionOp<CPUDevice, type, int32,               \
     26                                       Eigen::internal::ProdReducer<type>>); \
     27   REGISTER_KERNEL_BUILDER(Name("Prod")                                      \
     28                               .Device(DEVICE_CPU)                           \
     29                               .TypeConstraint<type>("T")                    \
     30                               .TypeConstraint<int64>("Tidx"),               \
     31                           ReductionOp<CPUDevice, type, int64,               \
     32                                       Eigen::internal::ProdReducer<type>>);
     33 TF_CALL_NUMBER_TYPES(REGISTER_CPU_KERNELS);
     34 #undef REGISTER_CPU_KERNELS
     35 
     36 #if GOOGLE_CUDA
     37 
     38 #define REGISTER_GPU_KERNELS(type)                                          \
     39   REGISTER_KERNEL_BUILDER(Name("Prod")                                      \
     40                               .Device(DEVICE_GPU)                           \
     41                               .TypeConstraint<type>("T")                    \
     42                               .TypeConstraint<int32>("Tidx")                \
     43                               .HostMemory("reduction_indices"),             \
     44                           ReductionOp<GPUDevice, type, int32,               \
     45                                       Eigen::internal::ProdReducer<type>>); \
     46   REGISTER_KERNEL_BUILDER(Name("Prod")                                      \
     47                               .Device(DEVICE_GPU)                           \
     48                               .TypeConstraint<type>("T")                    \
     49                               .TypeConstraint<int64>("Tidx")                \
     50                               .HostMemory("reduction_indices"),             \
     51                           ReductionOp<GPUDevice, type, int64,               \
     52                                       Eigen::internal::ProdReducer<type>>);
     53 TF_CALL_GPU_NUMBER_TYPES(REGISTER_GPU_KERNELS);
     54 TF_CALL_int32(REGISTER_GPU_KERNELS);
     55 TF_CALL_complex64(REGISTER_GPU_KERNELS);
     56 TF_CALL_complex128(REGISTER_GPU_KERNELS);
     57 #undef REGISTER_GPU_KERNELS
     58 
     59 #endif
     60 
     61 #ifdef TENSORFLOW_USE_SYCL
     62 #define REGISTER_SYCL_KERNELS(type)                                         \
     63   REGISTER_KERNEL_BUILDER(Name("Prod")                                      \
     64                               .Device(DEVICE_SYCL)                          \
     65                               .TypeConstraint<type>("T")                    \
     66                               .TypeConstraint<int32>("Tidx")                \
     67                               .HostMemory("reduction_indices"),             \
     68                           ReductionOp<SYCLDevice, type, int32,              \
     69                                       Eigen::internal::ProdReducer<type>>); \
     70   REGISTER_KERNEL_BUILDER(Name("Prod")                                      \
     71                               .Device(DEVICE_SYCL)                          \
     72                               .TypeConstraint<type>("T")                    \
     73                               .TypeConstraint<int64>("Tidx")                \
     74                               .HostMemory("reduction_indices"),             \
     75                           ReductionOp<SYCLDevice, type, int64,              \
     76                                       Eigen::internal::ProdReducer<type>>);
     77 REGISTER_SYCL_KERNELS(int32);
     78 REGISTER_SYCL_KERNELS(float);
     79 REGISTER_SYCL_KERNELS(double);
     80 #undef REGISTER_SYCL_KERNELS
     81 #endif  // TENSORFLOW_USE_SYCL
     82 
     83 }  // namespace tensorflow
     84