Skip to content

Commit

Permalink
removed msvc setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Elias Joseph committed Oct 22, 2024
1 parent 732ba71 commit 06aaf4a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion third_party/llvm-project
Submodule llvm-project updated 11296 files
2 changes: 1 addition & 1 deletion third_party/pybind11
Submodule pybind11 updated 193 files
2 changes: 1 addition & 1 deletion third_party/stablehlo
Submodule stablehlo updated 6602 files
2 changes: 1 addition & 1 deletion third_party/torch-mlir
Submodule torch-mlir updated 63 files
+0 −3 CMakeLists.txt
+15 −17 build_tools/python_deploy/build_linux_packages.sh
+7 −7 build_tools/python_deploy/build_macos_packages.sh
+1 −12 docs/development.md
+1 −1 externals/llvm-project
+1 −1 externals/stablehlo
+0 −26 include/torch-mlir/Conversion/TorchOnnxToTorch/Patterns.h
+0 −4 include/torch-mlir/Conversion/TorchToLinalg/Utils.h
+1 −1 include/torch-mlir/Conversion/TorchToTosa/TosaLegalizeUtils.h
+0 −2 include/torch-mlir/Conversion/Utils/Utils.h
+0 −131 include/torch-mlir/Dialect/Torch/IR/GeneratedTorchOps.td
+15 −36 lib/Conversion/TorchOnnxToTorch/DefaultDomainAtoF.cpp
+34 −93 lib/Conversion/TorchOnnxToTorch/DefaultDomainQtoZ.cpp
+102 −303 lib/Conversion/TorchOnnxToTorch/OnnxRecurrentLayerOpExpanders.cpp
+14 −214 lib/Conversion/TorchToLinalg/DataMovement.cpp
+26 −0 lib/Conversion/TorchToLinalg/IndirectDataMovement.cpp
+51 −38 lib/Conversion/TorchToLinalg/Linear.cpp
+30 −17 lib/Conversion/TorchToLinalg/Uncategorized.cpp
+0 −41 lib/Conversion/TorchToLinalg/Utils.cpp
+7 −18 lib/Conversion/TorchToStablehlo/Basic.cpp
+2 −3 lib/Conversion/TorchToStablehlo/Linear.cpp
+1 −157 lib/Conversion/TorchToStablehlo/Pooling.cpp
+2 −3 lib/Conversion/TorchToStablehlo/Reduction.cpp
+2 −67 lib/Conversion/TorchToStablehlo/ViewLike.cpp
+26 −89 lib/Conversion/TorchToTMTensor/TorchToTMTensor.cpp
+268 −1,454 lib/Conversion/TorchToTosa/TorchToTosa.cpp
+33 −48 lib/Conversion/TorchToTosa/TosaLegalizeCommon.cpp
+3 −19 lib/Conversion/Utils/Utils.cpp
+5 −37 lib/Dialect/Torch/IR/TorchOps.cpp
+0 −131 lib/Dialect/Torch/Transforms/AbstractInterpLibrary.cpp
+0 −219 lib/Dialect/Torch/Transforms/DecomposeComplexOps.cpp
+7 −10 lib/Dialect/Torch/Transforms/InlineGlobalSlots.cpp
+0 −1 lib/Dialect/Torch/Transforms/LowerToBackendContract.cpp
+12 −357 lib/Dialect/Torch/Transforms/ScalarizeShapes.cpp
+0 −58 lib/Dialect/Torch/Transforms/SimplifyShapeCalculations.cpp
+2 −23 lib/Dialect/Torch/Utils/Utils.cpp
+295 −328 projects/pt1/e2e_testing/xfail_sets.py
+0 −74 projects/pt1/python/torch_mlir/jit_ir_importer/build_tools/abstract_interp_lib_gen.py
+1 −10 projects/pt1/python/torch_mlir/jit_ir_importer/build_tools/torch_ods_gen.py
+1 −1 projects/pt1/python/torch_mlir_e2e_test/configs/onnx_backend.py
+0 −183 projects/pt1/python/torch_mlir_e2e_test/test_suite/basic.py
+0 −27 projects/pt1/python/torch_mlir_e2e_test/test_suite/conv.py
+0 −27 projects/pt1/python/torch_mlir_e2e_test/test_suite/elementwise.py
+0 −16 projects/pt1/python/torch_mlir_e2e_test/test_suite/pooling.py
+0 −43 projects/pt1/python/torch_mlir_e2e_test/test_suite/reduction.py
+0 −124 projects/pt1/python/torch_mlir_e2e_test/test_suite/reshape_like.py
+0 −23 projects/pt1/python/torch_mlir_e2e_test/test_suite/slice_like.py
+4 −6 python/CMakeLists.txt
+1 −1 pytorch-hash.txt
+1 −1 pytorch-requirements.txt
+3 −3 setup.py
+6 −67 test/Conversion/TorchOnnxToTorch/ops/lstm.mlir
+12 −26 test/Conversion/TorchOnnxToTorch/simple_ops_a_to_f.mlir
+18 −76 test/Conversion/TorchOnnxToTorch/simple_ops_q_to_z.mlir
+0 −52 test/Conversion/TorchToLinalg/embeddingBag.mlir
+0 −17 test/Conversion/TorchToLinalg/squeeze.mlir
+15 −773 test/Conversion/TorchToTosa/basic.mlir
+13 −13 test/Dialect/TMTensor/bufferize.mlir
+1 −9 test/Dialect/Torch/invalid.mlir
+0 −164 test/Dialect/Torch/scalarize-shapes.mlir
+0 −39 test/Dialect/Torch/simplify-shape-calculations.mlir
+1 −1 test/python/compile.py
+1 −1 torchvision-requirements.txt

0 comments on commit 06aaf4a

Please sign in to comment.