torch-mlir/test/python/fx_importer/sparsity/lit.local.cfg

11 lines
202 B
INI

config.unsupported = True
try:
import torch
if "2.5.0" <= str(torch.__version__):
print("Enabling sparsity propagation tests")
config.unsupported = False
except ModuleNotFoundError:
...