Home
last modified time | relevance | path

Searched refs:chebyshev_polynomial_u_forward (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/pytorch/aten/src/ATen/native/cuda/
H A Dchebyshev_polynomial_u.cu23 return chebyshev_polynomial_u_forward<scalar_t, true>(x, n); in chebyshev_polynomial_u_kernel_cuda()
H A DMath.cuh1968 T chebyshev_polynomial_u_forward(T x, int64_t n) {
2011 T chebyshev_polynomial_u_forward(T x, T n) {
2012 return chebyshev_polynomial_u_forward(x, static_cast<int64_t>(n));
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DMath.h2873 inline C10_HOST_DEVICE T chebyshev_polynomial_u_forward(T x, int64_t n) { in chebyshev_polynomial_u_forward() function
2916 inline C10_HOST_DEVICE T chebyshev_polynomial_u_forward(T x, T n) { in chebyshev_polynomial_u_forward() function
2917 return chebyshev_polynomial_u_forward(x, static_cast<int64_t>(n)); in chebyshev_polynomial_u_forward()
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cpu/
H A DBinaryOpsKernel.cpp1273 return chebyshev_polynomial_u_forward(x, n); in chebyshev_polynomial_u_kernel()