tbartsch-semron
Results
1
issues of
tbartsch-semron
The following python script fails: ```python import torch import torch_mlir class Model(torch.nn.Module): def forward(self, x): return x / 2.0 model = Model() model.eval() test_input = torch.rand((1,)) module = torch_mlir.compile( model,...