Files
sglang/sgl-kernel/tests/utils.py
2025-08-28 20:00:32 -07:00

10 lines
163 B
Python

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