Home
last modified time | relevance | path

Searched defs:xlogy (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/api/include/torch/
H A Dspecial.h339 inline Tensor xlogy(const Tensor& self, const Tensor& other) { in xlogy() function
343 inline Tensor xlogy(const Scalar& self, const Tensor& other) { in xlogy() function
347 inline Tensor xlogy(const Tensor& self, const Scalar& other) { in xlogy() function
/aosp_15_r20/external/pytorch/torch/special/
H A D__init__.py430 xlogy = _add_docstr(_special.special_xlogy, variable
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DBinaryOps.cpp302 TORCH_META_FUNC2(xlogy, Tensor) (const Tensor& self, const Tensor& other) { in TORCH_META_FUNC2() argument
1576 Tensor xlogy(const Scalar& x, const Tensor& y) { in xlogy() function
1580 Tensor xlogy(const Tensor& x, const Scalar& y) { in xlogy() function
/aosp_15_r20/external/pytorch/torch/_refs/
H A D__init__.py1762 def xlogy(a: Union[TensorLikeType, NumberType], b: Union[TensorLikeType, NumberType]): function