• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2019 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 #ifndef TENSORFLOW_CORE_KERNELS_REDUCTION_OPS_COMMON_GPU_H_
16 #define TENSORFLOW_CORE_KERNELS_REDUCTION_OPS_COMMON_GPU_H_
17 
18 #if !GOOGLE_CUDA && !TENSORFLOW_USE_ROCM
19 #error This file must only be included when building with GPU support
20 #endif
21 
22 #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
23 #include "tensorflow/core/framework/op_kernel.h"
24 #include "tensorflow/core/framework/tensor_types.h"
25 
26 namespace tensorflow {
27 namespace functor {
28 
29 template <typename Reducer>
30 struct ReduceFunctor<Eigen::GpuDevice, Reducer> {
31   template <typename OUT_T, typename IN_T, typename ReductionAxes>
32   static void Reduce(OpKernelContext* ctx, OUT_T out, IN_T in,
33                      const ReductionAxes& reduction_axes,
34                      const Reducer& reducer);
35 
36   template <typename OUT_T>
37   static void FillIdentity(const Eigen::GpuDevice& d, OUT_T out,
38                            const Reducer& reducer);
39 };
40 
41 }  // namespace functor
42 }  // namespace tensorflow
43 
44 #endif  // TENSORFLOW_CORE_KERNELS_REDUCTION_OPS_COMMON_GPU_H_
45