Skip to content

Commit

Permalink
[mpact][torch-mlir] bump torch-mlir version (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
Peiming Liu authored Jun 20, 2024
1 parent 6c2234a commit 317b649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion externals/torch-mlir
Submodule torch-mlir updated 51 files
+1 −1 externals/llvm-project
+1 −1 externals/stablehlo
+76 −0 include/torch-mlir-dialects/Dialect/TMTensor/IR/TMTensorOps.td
+65 −0 include/torch-mlir/Conversion/TorchOnnxToTorch/Patterns.h
+1 −1 include/torch-mlir/Conversion/TorchOnnxToTorch/Utils.h
+127 −0 include/torch-mlir/Dialect/Torch/IR/GeneratedTorchOps.td
+2 −0 include/torch-mlir/Dialect/Torch/Utils/TorchUpstream.h
+408 −5 lib/Conversion/TorchOnnxToTorch/DefaultDomainGtoP.cpp
+1 −1 lib/Conversion/TorchOnnxToTorch/Utils.cpp
+1 −0 lib/Conversion/TorchToStablehlo/Linear.cpp
+538 −22 lib/Conversion/TorchToTMTensor/TorchToTMTensor.cpp
+208 −0 lib/Dialect/TMTensor/IR/TMTensorOps.cpp
+124 −0 lib/Dialect/Torch/IR/TorchOps.cpp
+56 −0 lib/Dialect/Torch/Transforms/AbstractInterpLibrary.cpp
+141 −0 lib/Dialect/Torch/Transforms/DecomposeComplexOps.cpp
+1 −0 lib/Dialect/Torch/Transforms/LowerToBackendContract.cpp
+76 −0 lib/Dialect/Torch/Transforms/RecomposeComplexOps.cpp
+15 −0 lib/Dialect/Torch/Utils/TorchUpstream.cpp
+36 −4 projects/pt1/e2e_testing/xfail_sets.py
+1 −0 projects/pt1/python/torch_mlir/dynamo.py
+42 −0 projects/pt1/python/torch_mlir/jit_ir_importer/build_tools/abstract_interp_lib_gen.py
+8 −0 projects/pt1/python/torch_mlir/jit_ir_importer/build_tools/torch_ods_gen.py
+4 −1 projects/pt1/python/torch_mlir_e2e_test/configs/onnx_backend.py
+1 −0 projects/pt1/python/torch_mlir_e2e_test/test_suite/__init__.py
+99 −0 projects/pt1/python/torch_mlir_e2e_test/test_suite/basic.py
+27 −0 projects/pt1/python/torch_mlir_e2e_test/test_suite/matmul.py
+88 −0 projects/pt1/python/torch_mlir_e2e_test/test_suite/meshgrid.py
+93 −0 projects/pt1/python/torch_mlir_e2e_test/test_suite/norm_like.py
+1 −0 python/torch_mlir/extras/fx_decomp_util.py
+468 −27 python/torch_mlir/extras/onnx_importer.py
+11 −1 python/torch_mlir/tools/import_onnx/__main__.py
+311 −4 test/Conversion/TorchOnnxToTorch/simple_ops_g_to_p.mlir
+32 −32 test/Conversion/TorchToArith/basic.mlir
+2 −2 test/Conversion/TorchToLinalg/basic.mlir
+3 −3 test/Conversion/TorchToLinalg/elementwise.mlir
+2 −2 test/Conversion/TorchToLinalg/sparse.mlir
+2 −2 test/Conversion/TorchToSCF/basic.mlir
+16 −16 test/Conversion/TorchToStablehlo/basic.mlir
+39 −39 test/Conversion/TorchToStablehlo/elementwise.mlir
+6 −6 test/Conversion/TorchToStablehlo/gather.mlir
+37 −37 test/Conversion/TorchToStablehlo/linear.mlir
+3 −3 test/Conversion/TorchToStablehlo/scatter.mlir
+41 −41 test/Conversion/TorchToTosa/basic.mlir
+8 −8 test/Dialect/TMTensor/bufferize.mlir
+8 −8 test/Dialect/Torch/adjust-calling-conventions.mlir
+18 −0 test/python/onnx_importer/function_expansion/GreaterOrEqual.runlit
+ test/python/onnx_importer/function_expansion/GreaterOrEqual.runlit.onnx
+22 −0 test/python/onnx_importer/function_expansion/ReduceSumSquare_keepdims=0.runlit
+ test/python/onnx_importer/function_expansion/ReduceSumSquare_keepdims=0.runlit.onnx
+23 −0 test/python/onnx_importer/function_expansion/ReduceSumSquare_no_attrs.runlit
+ test/python/onnx_importer/function_expansion/ReduceSumSquare_no_attrs.runlit.onnx

0 comments on commit 317b649

Please sign in to comment.