and `set_num_interop_threads`
Before that, call `torch.set_num_threads(2**65)` resulted in segmentation fault, afterwards it becomes a good old runtime error:
```
% python -c "import torch;torch.set_num_threads(2**65)"
Traceback (most recent call last):
File "<string>", line 1, in <module>
RuntimeError: Overflow when unpacking long
```
Similar to https://github.com/pytorch/pytorch/pull/60073
Cherry pick of https://github.com/pytorch/pytorch/pull/113684 into release/2.1
(cherry picked from commit 78f3937ee84e71475942598f4b51dce7c8a70783)