The grad in optimizer whether exec detach

I recently see optimizer code, I don’t understand whether exec p.grad.detach_()?

    def zero_grad(self):
        r"""Clears the gradients of all optimized :class:`torch.Tensor` s."""
        for group in self.param_groups:
            for p in group['params']:
                if p.grad is not None:
                    p.grad.detach_()
                    p.grad.zero_()