Shortcuts

Function torch::special::gammainc

Function Documentation

inline Tensor torch::special::gammainc(const Tensor &self, const Tensor &other)

Computes the regularized lower 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::gammainc(s, t);

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources