Commit 0ba36bf
authored
Updating torch-mlir to llvm/torch-mlir@596b58e (#20188)
Updating torch-mlir submodule to llvm/torch-mlir@596b58e
Signed-off-by: Vivek Agrawal <[email protected]>
---------
Signed-off-by: Vivek Agrawal <[email protected]>1 parent f9a6982 commit 0ba36bf
File tree
4 files changed
+4
-1
lines changed- tests/external/iree-test-suites/onnx_ops
- third_party
4 files changed
+4
-1
lines changedLines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
314 | 314 | | |
315 | 315 | | |
316 | 316 | | |
| 317 | + | |
317 | 318 | | |
318 | 319 | | |
319 | 320 | | |
| |||
Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
302 | 302 | | |
303 | 303 | | |
304 | 304 | | |
| 305 | + | |
305 | 306 | | |
306 | 307 | | |
307 | 308 | | |
| |||
Lines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
384 | 384 | | |
385 | 385 | | |
386 | 386 | | |
| 387 | + | |
387 | 388 | | |
388 | 389 | | |
389 | 390 | | |
| |||
Submodule torch-mlir updated 76 files
- .github/workflows/RollPyTorch.yml+2-2
- .github/workflows/bazelBuildAndTest.yml+1-1
- .github/workflows/buildRelease.yml+4-4
- .github/workflows/ci.yml+3-3
- .github/workflows/oneshotSnapshotPackage.yml+1-1
- .github/workflows/pre-commit-all.yml+1-1
- .github/workflows/pre-commit.yml+1-1
- .github/workflows/releaseSnapshotPackage.yml+1-1
- build_tools/autogen_ltc_backend.py+2-1
- docs/development.md+170-99
- externals/llvm-project+1-1
- include/torch-mlir-c/TorchTypes.h+6-6
- include/torch-mlir/Conversion/TorchOnnxToTorch/Patterns.h+1
- include/torch-mlir/Conversion/TorchToTosa/TosaLegalizeCommon.h+3-2
- include/torch-mlir/Conversion/TorchToTosa/TosaLegalizeUtils.h+24-50
- include/torch-mlir/Dialect/Torch/IR/GeneratedTorchOps.td+57-4
- include/torch-mlir/Dialect/Torch/IR/TorchOps.td+32
- lib/Conversion/TorchOnnxToTorch/CMakeLists.txt+1
- lib/Conversion/TorchOnnxToTorch/ComMicrosoftDomain.cpp+66
- lib/Conversion/TorchOnnxToTorch/DefaultDomainGtoP.cpp+2-2
- lib/Conversion/TorchOnnxToTorch/DefaultDomainQtoZ.cpp+12-9
- lib/Conversion/TorchOnnxToTorch/TorchOnnxToTorch.cpp+1
- lib/Conversion/TorchToLinalg/DataMovement.cpp+15-8
- lib/Conversion/TorchToLinalg/Linear.cpp+77-31
- lib/Conversion/TorchToLinalg/Pooling.cpp+313-205
- lib/Conversion/TorchToLinalg/Uncategorized.cpp+337
- lib/Conversion/TorchToLinalg/Utils.cpp+27-3
- lib/Conversion/TorchToStablehlo/Basic.cpp+1-19
- lib/Conversion/TorchToTMTensor/TorchToTMTensor.cpp+6-5
- lib/Conversion/TorchToTosa/TorchToTosa.cpp+594-458
- lib/Conversion/TorchToTosa/TosaLegalizeCommon.cpp+39-26
- lib/Conversion/TorchToTosa/TosaLegalizeUtils.cpp+55-78
- lib/Dialect/Torch/IR/TorchOps.cpp+91
- lib/Dialect/Torch/Transforms/AbstractInterpLibrary.cpp+35-2
- lib/Dialect/Torch/Transforms/AdjustCallingConventions.cpp+40-16
- lib/Dialect/Torch/Transforms/DecomposeComplexOps.cpp+111-63
- lib/Dialect/Torch/Transforms/LowerToBackendContract.cpp+1
- lib/Dialect/TorchConversion/Transforms/UnpackQuantTensor.cpp+1-1
- projects/jit_ir_common/csrc/jit_ir_importer/mlir_utils.h+4
- projects/ltc/csrc/base_lazy_backend/shape_inference.cpp+8
- projects/pt1/e2e_testing/xfail_sets.py+22-2
- projects/pt1/python/test/lit.cfg.py+14-1
- projects/pt1/python/test/lit.site.cfg.py.in+4
- projects/pt1/python/torch_mlir/jit_ir_importer/build_tools/abstract_interp_lib_gen.py+29-2
- projects/pt1/python/torch_mlir/jit_ir_importer/build_tools/torch_ods_gen.py+9-3
- projects/pt1/python/torch_mlir_e2e_test/linalg_on_tensors_backends/refbackend.py+1-1
- projects/pt1/python/torch_mlir_e2e_test/test_suite/basic.py+31-1
- projects/pt1/python/torch_mlir_e2e_test/test_suite/conv.py+32
- projects/pt1/python/torch_mlir_e2e_test/test_suite/pooling.py+186
- projects/pt1/python/torch_mlir_e2e_test/test_suite/reduction.py+23
- projects/pt1/python/torch_mlir_e2e_test/test_suite/rng.py+1-1
- projects/pt1/test/lit.cfg.py+14-1
- projects/pt1/test/lit.site.cfg.py.in+3
- projects/pt1/test/python/compile.py
- python/torch_mlir/extras/fx_importer.py+1-1
- python/torch_mlir/extras/onnx_importer.py+2-1
- pytorch-hash.txt+1-1
- pytorch-requirements.txt+1-1
- test/Conversion/TorchOnnxToTorch/simple_ops_q_to_z.mlir+42-4
- test/Conversion/TorchToLinalg/basic.mlir+71
- test/Conversion/TorchToLinalg/broadcast.mlir+3-2
- test/Conversion/TorchToLinalg/convolution.mlir+74
- test/Conversion/TorchToLinalg/pooling.mlir+130
- test/Conversion/TorchToTosa/basic.mlir+1.3k-850
- test/Conversion/TorchToTosa/torch-backend-to-tosa-backend-pipeline.mlir+9-7
- test/Dialect/Torch/adjust-calling-conventions.mlir+66-65
- test/Dialect/Torch/canonicalize.mlir+20
- test/Dialect/Torch/reify-dtype-calculations.mlir+13
- test/Dialect/Torch/reify-shape-calculations.mlir+25
- test/lit.cfg.py+14-1
- test/lit.site.cfg.py.in+3
- test/python/fx_importer/sparsity/sparse_test.py+43-43
- test/python/fx_importer/v2.3/mutation_import.py-23
- test/python/onnx_importer/constants.py+32
- torchvision-requirements.txt+1-1
- utils/bazel/torch-mlir-overlay/BUILD.bazel+8
0 commit comments