12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #pragma once
- #include <ATen/native/Pow.h>
- #include <c10/core/Scalar.h>
- namespace at { namespace native {
- namespace {
- // SFINAE doesn't work well with NVCC under Windows for math functions like pow and sqrt.
- // So we need to define the functions with the explicit function signatures.
- // As for pow, the following signatures are defined as the device function:
- // pow(float, int)
- // pow(double, int)
- // pow(float, float)
- // pow(double, double)
- #ifdef _MSC_VER
- // Functions for pow
- // pow for at::Half
- static inline __host__ __device__ at::Half pow_(at::Half base, at::Half exp) {
- return static_cast<at::Half>(std::pow(static_cast<float>(base), static_cast<float>(exp)));
- }
- // pow for at::BFloat16
- static inline __host__ __device__ at::BFloat16 pow_(at::BFloat16 base, at::BFloat16 exp) {
- return static_cast<at::BFloat16>(std::pow(static_cast<float>(base), static_cast<float>(exp)));
- }
- // pow (floating, floating/int)
- template <typename Base_type, typename Exp_type>
- static inline __host__ __device__ typename std::enable_if<std::is_floating_point<Base_type>::value && (std::is_same<Base_type, Exp_type>::value || std::is_same<Exp_type, int>::value), Base_type>::type
- pow_(Base_type base, Exp_type exp) {
- return std::pow(base, exp);
- }
- // pow (Otherwise)
- template <typename Base_type, typename Exp_type>
- static inline __host__ __device__ typename std::enable_if<!std::is_same<Base_type, Exp_type>::value && !std::is_same<Exp_type, int>::value, Base_type>::type
- pow_(Base_type base, Exp_type exp) {
- return static_cast<Base_type>(std::pow(static_cast<double>(base), static_cast<double>(exp)));
- }
- #else
- template <typename Base_type, typename Exp_type>
- static inline __host__ __device__ Base_type pow_(Base_type base, Exp_type exp) {
- return ::pow(base, exp);
- }
- #endif
- template <typename T>
- static inline __host__ __device__ std::enable_if_t<std::is_integral<T>::value, T> pow_(
- T base, T exp) {
- return at::native::powi(base, exp);
- }
- template <typename T>
- static inline __host__ __device__ c10::complex<T> pow_(c10::complex<T> base, c10::complex<T> exp) {
- return c10_complex_math::pow(base, exp);
- }
- } // namespace
- }} // namespace at::native
|