Skip to content

Commit

Permalink
Uplift third_party/tt-mlir to origin/main 2025-02-01 (#1155)
Browse files Browse the repository at this point in the history
This PR uplifts the third_party/tt-mlir submodule to the origin/main
  • Loading branch information
vmilosevic authored Feb 1, 2025
1 parent a8ec611 commit c87ee27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/tt-mlir
Submodule tt-mlir updated 45 files
+4 −1 .github/actions/build-tt-mlir-action/action.yaml
+33 −0 .github/actions/collect-and-upload-perf-reports/action.yml
+39 −18 .github/workflows/build-and-test.yml
+19 −0 include/ttmlir/Dialect/TTIR/IR/TTIROps.td
+22 −0 include/ttmlir/Dialect/TTNN/IR/TTNNOps.td
+4 −0 include/ttmlir/Dialect/TTNN/IR/TTNNWorkarounds.h
+29 −0 include/ttmlir/Dialect/TTNN/Transforms/Workarounds/Decomposition/CumSumOpRewritePattern.h
+2 −1 include/ttmlir/Target/TTNN/program.fbs
+65 −0 lib/Conversion/StableHLOToTTIR/StableHLOToTTIRPatterns.cpp
+1 −0 lib/Conversion/TTIRToTTNN/TTIRToTTNN.cpp
+5 −4 lib/Conversion/TTNNToEmitC/TTNNToEmitC.cpp
+24 −0 lib/Dialect/TTNN/IR/TTNNWorkarounds.cpp
+1 −0 lib/Dialect/TTNN/Transforms/CMakeLists.txt
+88 −0 lib/Dialect/TTNN/Transforms/Workarounds/Decomposition/CumSumOpRewritePattern.cpp
+4 −1 lib/Dialect/TTNN/Transforms/Workarounds/TTNNWorkarounds.cpp
+15 −0 lib/SharedLib/CMakeLists.txt
+6 −0 lib/Target/TTNN/TTNNToFlatbuffer.cpp
+5 −8 runtime/include/tt/runtime/detail/debug.h
+4 −2 runtime/include/tt/runtime/detail/ttmetal.h
+4 −2 runtime/include/tt/runtime/detail/ttnn.h
+6 −3 runtime/include/tt/runtime/runtime.h
+2 −2 runtime/lib/common/debug.cpp
+5 −5 runtime/lib/common/system_desc.cpp
+8 −6 runtime/lib/runtime.cpp
+2 −1 runtime/lib/ttmetal/runtime.cpp
+1 −1 runtime/lib/ttnn/operations/data_movement/repeat.cpp
+4 −0 runtime/lib/ttnn/operations/eltwise/binary/binary_composite.cpp
+1 −0 runtime/lib/ttnn/operations/eltwise/binary/binary_composite.h
+4 −3 runtime/lib/ttnn/runtime.cpp
+13 −1 runtime/tools/python/ttrt/common/query.py
+18 −4 runtime/tools/python/ttrt/common/run.py
+1 −0 runtime/tools/python/ttrt/runtime/__init__.py
+1 −0 runtime/tools/python/ttrt/runtime/module.cpp
+11 −0 test/ttmlir/Conversion/StableHLOToTTIR/binary/power_op.mlir
+155 −6 test/ttmlir/Conversion/StableHLOToTTIR/ccl_ops.mlir
+126 −0 test/ttmlir/Dialect/TTNN/Transforms/Workarounds/cumsum_workaround.mlir
+11 −0 test/ttmlir/Dialect/TTNN/eltwise/binary/power/simple_power.mlir
+37 −9 test/ttmlir/Dialect/TTNN/optimizer/output_layout_override.mlir
+12 −0 test/ttmlir/EmitC/TTNN/eltwise_binary/power.mlir
+20 −0 test/ttmlir/Silicon/StableHLO/Binary/power_op.mlir
+39 −0 test/ttmlir/Silicon/StableHLO/moreh_cumsum_op.mlir
+11 −0 test/ttmlir/Silicon/TTNN/perf_unit/test_perf_power.mlir
+9 −0 test/ttmlir/Silicon/TTNN/simple_eltwise.mlir
+11 −0 test/ttmlir/Silicon/TTNN/simple_power.mlir
+43 −1 third_party/CMakeLists.txt

0 comments on commit c87ee27

Please sign in to comment.