gomoku / DI-engine /ding /compatibility.py
zjowowen's picture
init space
079c32c
raw
history blame
211 Bytes
import torch
def torch_ge_131():
return int("".join(list(filter(str.isdigit, torch.__version__)))) >= 131
def torch_ge_180():
return int("".join(list(filter(str.isdigit, torch.__version__)))) >= 180