utils.py 163 Bytes
Newer Older
hlu1's avatar
hlu1 committed
1
2
3
4
5
6
7
8
9
import torch


def is_sm10x():
    return torch.cuda.get_device_capability() >= (10, 0)


def is_hopper():
    return torch.cuda.get_device_capability() == (9, 0)