typing.py 132 Bytes
Newer Older
1
2
import torch

3
4
5
6
try:
    WITH_PTR_LIST = hasattr(torch.ops.torch_cluster, 'fps_ptr_list')
except Exception:
    WITH_PTR_LIST = False