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