73 lines
2.7 KiB
C++
73 lines
2.7 KiB
C++
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License. */
|
|
#include "paddle/phi/kernels/funcs/eigen/eigen_function.h"
|
|
|
|
namespace phi::funcs {
|
|
|
|
template <typename T, int Rank>
|
|
struct EigenPad<Eigen::DefaultDevice, T, Rank> {
|
|
using Array = std::array<std::pair<int64_t, int64_t>, Rank>;
|
|
using Array32Bit = std::array<std::pair<int, int>, Rank>;
|
|
using InType =
|
|
Eigen::TensorMap<Eigen::Tensor<const T, Rank, Eigen::RowMajor, int64_t>>;
|
|
using InType32BitIndex =
|
|
Eigen::TensorMap<Eigen::Tensor<const T, Rank, Eigen::RowMajor, int64_t>,
|
|
Eigen::Aligned>;
|
|
using OutType =
|
|
Eigen::TensorMap<Eigen::Tensor<T, Rank, Eigen::RowMajor, int64_t>>;
|
|
using OutType32BitIndex =
|
|
Eigen::TensorMap<Eigen::Tensor<T, Rank, Eigen::RowMajor, int64_t>,
|
|
Eigen::Aligned>;
|
|
|
|
static void Eval(const Eigen::DefaultDevice& dev,
|
|
OutType out,
|
|
const InType& in,
|
|
const Array& padding,
|
|
const T value) {
|
|
out.device(dev) = in.pad(padding, value);
|
|
}
|
|
|
|
static void Eval32(const Eigen::DefaultDevice& dev,
|
|
OutType32BitIndex out,
|
|
const InType32BitIndex& in,
|
|
const Array32Bit& padding,
|
|
const T value) {
|
|
out.device(dev) = in.pad(padding, value);
|
|
}
|
|
};
|
|
|
|
#define INSTANTIATION(FUNCTOR, TYPE) \
|
|
template struct FUNCTOR<Eigen::DefaultDevice, TYPE, 1>; \
|
|
template struct FUNCTOR<Eigen::DefaultDevice, TYPE, 2>; \
|
|
template struct FUNCTOR<Eigen::DefaultDevice, TYPE, 3>; \
|
|
template struct FUNCTOR<Eigen::DefaultDevice, TYPE, 4>; \
|
|
template struct FUNCTOR<Eigen::DefaultDevice, TYPE, 5>; \
|
|
template struct FUNCTOR<Eigen::DefaultDevice, TYPE, 6>;
|
|
|
|
INSTANTIATION(EigenPad, bool);
|
|
INSTANTIATION(EigenPad, uint8_t);
|
|
INSTANTIATION(EigenPad, int);
|
|
INSTANTIATION(EigenPad, int8_t);
|
|
INSTANTIATION(EigenPad, int16_t);
|
|
INSTANTIATION(EigenPad, int64_t);
|
|
INSTANTIATION(EigenPad, float);
|
|
INSTANTIATION(EigenPad, double);
|
|
INSTANTIATION(EigenPad, dtype::float16);
|
|
INSTANTIATION(EigenPad, dtype::bfloat16);
|
|
INSTANTIATION(EigenPad, dtype::complex<float>);
|
|
INSTANTIATION(EigenPad, dtype::complex<double>);
|
|
#undef INSTANTIATION
|
|
|
|
} // namespace phi::funcs
|