Function torch::special::gammaincc¶
Defined in File special.h
Function Documentation¶
-
inline Tensor torch::special::gammaincc(const Tensor &self, const Tensor &other)¶
Computes the regularized upper incomplete gamma function See https://pytorch.org/docs/main/special.html#torch.special.gammainc.
Example:
auto t = torch::randn(128, dtype=kDouble); auto s = torch::randn(128, dtype=kDouble); torch::special::gammaincc(s, t);