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