mirror of https://github.com/llvm/torch-mlir
11 lines
202 B
INI
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:
|
||
|
...
|