What is `atol` and `rtol` in `torch.isclose()`

any input would be helpful !

As stated in the documentation, they are parameters used for computing the following expression:

∣input−other∣≤atol+rtol×∣other∣

if the absolute difference is smaller than the right side of the inequality, then isclose would return true.