aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/split_op.h
blob: 2572c77285f4844f001166106ffffe0a09462fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef TENSORFLOW_KERNELS_SPLIT_OP_H_
#define TENSORFLOW_KERNELS_SPLIT_OP_H_
// Functor definition for SplitOp, must be compilable by nvcc.

#include "tensorflow/core/framework/tensor_types.h"
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"

namespace tensorflow {
namespace functor {

template <typename Device, typename T>
struct Split {
  void operator()(const Device& d, typename TTypes<T, 3>::Tensor output,
                  typename TTypes<T, 3>::ConstTensor input,
                  const Eigen::DSizes<ptrdiff_t, 3>& slice_indices,
                  const Eigen::DSizes<ptrdiff_t, 3>& slice_sizes);
};

template <typename T>
struct Split<Eigen::ThreadPoolDevice, T> {
  void operator()(const Eigen::ThreadPoolDevice& d,
                  typename TTypes<T, 3>::Tensor output,
                  typename TTypes<T, 3>::ConstTensor input,
                  const Eigen::DSizes<ptrdiff_t, 3>& slice_indices,
                  const Eigen::DSizes<ptrdiff_t, 3>& slice_sizes);
};

}  // namespace functor
}  // namespace tensorflow

#endif  // TENSORFLOW_KERNELS_SPLIT_OP_H_