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