Function torch::special::multigammaln¶
Defined in File special.h
Function Documentation¶
-
inline Tensor torch::special::multigammaln(const Tensor &self, int64_t p)¶
Computes the multivariate log-gamma function with dimension
p
, elementwise See https://pytorch.org/docs/main/special.html#torch.special.multigammaln.Example:
auto t = torch::randn(128, dtype=kDouble); torch::special::multigammaln(t, 1);