torch-mlir/projects/pt1/e2e_testing
penguin_wwy 398aeeec87
[FxImporter] Fix kwarg operands in fx importer (#3166)
Remove the `kwarg_only` limitation, for example
```
torch.add(x, 3.0, alpha=2)
```
compiled to
```
%0 = torch.aten.add.Scalar %arg0, %float3.000000e00, %int1
```
fix to
```
%0 = torch.aten.add.Scalar %arg0, %float3.000000e00, %int2
```
2024-04-16 13:17:05 -07:00
..
main.py [CI] Enable the tests for fx_importer in the CI (#3168) 2024-04-15 21:20:23 -07:00
xfail_sets.py [FxImporter] Fix kwarg operands in fx importer (#3166) 2024-04-16 13:17:05 -07:00