Skip to content

Commit

Permalink
bump torch-mlir to 1e468e8 (#68)
Browse files Browse the repository at this point in the history
Co-authored-by: Arham Khan <arhamkhan@Arhams-MacBook-Pro.local>
  • Loading branch information
123epsilon and Arham Khan authored Jul 21, 2023
1 parent 1acf83c commit fe85d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion externals/torch-mlir
Submodule torch-mlir updated 59 files
+10 −10 .github/workflows/bazelBuildAndTest.yml
+4 −1 build_tools/python_deploy/build_linux_packages.sh
+6 −1 e2e_testing/main.py
+73 −0 e2e_testing/xfail_sets.py
+1 −1 externals/llvm-project
+1 −1 externals/mlir-hlo
+2 −1 include/torch-mlir/Conversion/TorchToStablehlo/StablehloLegalizeUtils.h
+6 −0 include/torch-mlir/Conversion/TorchToTosa/TosaLegalizeCommon.h
+78 −1 include/torch-mlir/Dialect/Torch/IR/GeneratedTorchOps.td
+20 −3 lib/Conversion/TorchToLinalg/DataMovement.cpp
+2 −0 lib/Conversion/TorchToLinalg/Uncategorized.cpp
+49 −26 lib/Conversion/TorchToLinalg/Utils.cpp
+4 −4 lib/Conversion/TorchToLinalg/Utils.h
+37 −23 lib/Conversion/TorchToStablehlo/Basic.cpp
+1 −1 lib/Conversion/TorchToStablehlo/Linear.cpp
+3 −2 lib/Conversion/TorchToStablehlo/Pooling.cpp
+4 −5 lib/Conversion/TorchToStablehlo/StablehloLegalizeUtils.cpp
+196 −5 lib/Conversion/TorchToTosa/TorchToTosa.cpp
+271 −0 lib/Conversion/TorchToTosa/TosaLegalizeCommon.cpp
+11 −1 lib/Conversion/TorchToTosa/TosaLegalizeUtils.cpp
+131 −17 lib/Dialect/Torch/IR/TorchOps.cpp
+314 −165 lib/Dialect/Torch/Transforms/AbstractInterpLibrary.cpp
+0 −45 lib/Dialect/Torch/Transforms/AdjustCallingConventions.cpp
+113 −9 lib/Dialect/Torch/Transforms/DecomposeComplexOps.cpp
+4 −1 lib/Dialect/Torch/Transforms/LowerToBackendContract.cpp
+105 −28 lib/Dialect/Torch/Transforms/RecomposeComplexOps.cpp
+4 −1 lib/Dialect/Torch/Transforms/RefinePublicReturn.cpp
+11 −4 lib/Dialect/Torch/Transforms/ReifyAbstractInterpCalculationsUtils.cpp
+5 −0 lib/Dialect/Torch/Transforms/SimplifyDtypeCalculations.cpp
+3 −2 lib/Dialect/Torch/Utils/Utils.cpp
+2 −0 lib/InitAll.cpp
+16 −3 python/torch_mlir/__init__.py
+1 −7 python/torch_mlir/compiler_utils.py
+88 −62 python/torch_mlir/dialects/torch/importer/jit_ir/build_tools/abstract_interp_lib_gen.py
+1 −1 python/torch_mlir/dialects/torch/importer/jit_ir/build_tools/library_generator.py
+10 −3 python/torch_mlir/dialects/torch/importer/jit_ir/build_tools/registry.py
+9 −6 python/torch_mlir/dialects/torch/importer/jit_ir/build_tools/torch_ods_gen.py
+3 −2 python/torch_mlir_e2e_test/configs/tosa_backend.py
+2 −0 python/torch_mlir_e2e_test/linalg_on_tensors_backends/refbackend.py
+136 −0 python/torch_mlir_e2e_test/test_suite/basic.py
+29 −0 python/torch_mlir_e2e_test/test_suite/elementwise.py
+20 −0 python/torch_mlir_e2e_test/test_suite/elementwise_comparison.py
+38 −0 python/torch_mlir_e2e_test/test_suite/rng.py
+24 −0 python/torch_mlir_e2e_test/test_suite/scatter.py
+104 −0 python/torch_mlir_e2e_test/test_suite/slice_like.py
+21 −0 python/torch_mlir_e2e_test/test_suite/type_conversion.py
+1 −0 python/torch_mlir_e2e_test/tosa_backends/linalg_on_tensors.py
+1 −1 pytorch-hash.txt
+1 −1 pytorch-requirements.txt
+4 −4 test/Conversion/TorchToStablehlo/view_like.mlir
+0 −17 test/Dialect/Torch/adjust-calling-conventions.mlir
+94 −8 test/Dialect/Torch/canonicalize.mlir
+24 −0 test/Dialect/Torch/decompose-complex-ops.mlir
+19 −0 test/Dialect/Torch/refine-public-return.mlir
+15 −0 test/Dialect/Torch/reify-dtype-calculations.mlir
+29 −0 test/Dialect/Torch/verify-backend-contract-error.mlir
+1 −1 torchvision-requirements.txt
+12 −3 utils/bazel/WORKSPACE.bazel
+2 −0 utils/bazel/torch-mlir-overlay/BUILD.bazel

0 comments on commit fe85d13

Please sign in to comment.