Function torch::special::i1#
Defined in File special.h
Function Documentation#
-
inline Tensor torch::special::i1(const Tensor &self)#
Computes the first order modified Bessel function of the first kind See https://pytorch.org/docs/main/special.html#torch.special.i1.
Example:
auto t = torch::randn(128, dtype=kDouble); torch::special::i1(t);