Home
last modified time | relevance | path

Searched defs:chebyshev_polynomial_t (Results 1 – 3 of 3) sorted by relevance

/external/pytorch/torch/special/
D__init__.py948 chebyshev_polynomial_t = _add_docstr(_special.special_chebyshev_polynomial_t, variable
/external/pytorch/torch/csrc/api/include/torch/
Dspecial.h726 inline Tensor chebyshev_polynomial_t(const Tensor& x, const Tensor& n) { in chebyshev_polynomial_t() function
730 inline Tensor chebyshev_polynomial_t(const Scalar& x, const Tensor& n) { in chebyshev_polynomial_t() function
734 inline Tensor chebyshev_polynomial_t(const Tensor& x, const Scalar& n) { in chebyshev_polynomial_t() function
/external/pytorch/torch/_inductor/
Dops_handler.py629 def chebyshev_polynomial_t(self, x: T, y: T) -> T: member in OpsHandler