Skip to content

Commit

Permalink
Uplift third_party/tt-mlir to origin/main 2025-02-20
Browse files Browse the repository at this point in the history
  • Loading branch information
vmilosevic authored and github-actions[bot] committed Feb 20, 2025
1 parent 5b2d47f commit d72b448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/tt-mlir
Submodule tt-mlir updated 72 files
+1 −0 docs/src/build.md
+20 −0 include/ttmlir/Conversion/StableHLOToTTIR/EmptyOpTypeConversion.h
+36 −1 include/ttmlir/Dialect/TTIR/IR/TTIROps.td
+47 −2 include/ttmlir/Dialect/TTNN/IR/TTNNOps.td
+5 −0 include/ttmlir/Target/Common/types.fbs
+20 −1 include/ttmlir/Target/TTNN/program.fbs
+4 −14 include/ttmlir/Target/Utils/MLIRToFlatbuffer.h
+3 −2 lib/Conversion/StableHLOToTTIR/CMakeLists.txt
+40 −0 lib/Conversion/StableHLOToTTIR/EmptyOpTypeConversion.cpp
+5 −0 lib/Conversion/StableHLOToTTIR/StableHLOToTTIRPass.cpp
+388 −18 lib/Conversion/StableHLOToTTIR/StableHLOToTTIRPatterns.cpp
+50 −0 lib/Conversion/TTIRToTTIRDecomposition/TTIRToTTIRDecomposition.cpp
+3 −0 lib/Conversion/TTIRToTTIRDecomposition/TTIRToTTIRDecompositionPass.cpp
+5 −3 lib/Conversion/TTIRToTTMetal/AttachMetalLayout.cpp
+29 −1 lib/Conversion/TTIRToTTNN/TTIRToTTNN.cpp
+39 −4 lib/Conversion/TTNNToEmitC/TTNNToEmitC.cpp
+30 −3 lib/Dialect/TTIR/IR/TTIROps.cpp
+4 −0 lib/Dialect/TTIR/Transforms/Layout.cpp
+13 −9 lib/Dialect/TTMetal/Pipelines/TTMetalPipelines.cpp
+2 −2 lib/Dialect/TTNN/IR/TTNNOps.cpp
+5 −2 lib/Dialect/TTNN/Transforms/Workarounds/TTNNWorkarounds.cpp
+100 −11 lib/Target/TTNN/TTNNToFlatbuffer.cpp
+7 −2 lib/Target/TTNN/TTNNToFlatbufferRegistration.cpp
+34 −11 python/Passes.cpp
+34 −13 python/pykernel/pykernel_ast.py
+15 −0 python/pykernel/types.py
+14 −2 python/test_infra/ttir_builder.py
+7 −0 runtime/include/tt/runtime/detail/ttnn.h
+6 −0 runtime/include/tt/runtime/runtime.h
+23 −0 runtime/lib/runtime.cpp
+2 −1 runtime/lib/ttnn/include/tt/runtime/ttnn/types.h
+1 −0 runtime/lib/ttnn/operations/CMakeLists.txt
+7 −5 runtime/lib/ttnn/operations/ccl/all_gather.cpp
+2 −1 runtime/lib/ttnn/operations/creation/empty.cpp
+2 −1 runtime/lib/ttnn/operations/creation/full.cpp
+38 −0 runtime/lib/ttnn/operations/reduction/argmax.cpp
+16 −0 runtime/lib/ttnn/operations/reduction/argmax.h
+4 −0 runtime/lib/ttnn/program.cpp
+22 −10 runtime/lib/ttnn/runtime.cpp
+5 −4 runtime/lib/ttnn/types/types.cpp
+4 −2 test/pykernel/add_2_integers_in_compute/add_2_tiles.py
+4 −2 test/pykernel/add_2_integers_in_compute/reader_binary_1_tile.py
+4 −2 test/pykernel/add_2_integers_in_compute/writer_1_tile.py
+5 −3 test/pykernel/eltwise_sfpu/eltwise_sfpu.py
+4 −2 test/pykernel/eltwise_sfpu/reader_unary.py
+4 −2 test/pykernel/eltwise_sfpu/writer_unary.py
+5 −5 test/pykernel/unit_tests.py
+10 −0 test/python/golden/test_ttir_ops.py
+310 −20 test/ttmlir/Conversion/StableHLOToTTIR/ccl_ops.mlir
+10 −0 test/ttmlir/Conversion/StableHLOToTTIR/empty_op.mlir
+106 −0 test/ttmlir/Conversion/StableHLOToTTIR/reduction/argmax_op.mlir
+9 −0 test/ttmlir/Dialect/TTIR/reduction/negative_argmax_dims.mlir
+2 −2 test/ttmlir/Dialect/TTNN/ccl/all_gather.mlir
+1 −1 test/ttmlir/Dialect/TTNN/ccl/all_gather_negative.mlir
+4 −4 test/ttmlir/Dialect/TTNN/ccl/all_reduce.mlir
+47 −0 test/ttmlir/Dialect/TTNN/reduction/simple_argmax.mlir
+25 −0 test/ttmlir/EmitC/TTNN/reduction/argmax.mlir
+5 −6 test/ttmlir/Silicon/TTNN/llmbox/ccl/ccl_1x8.mlir
+22 −9 test/ttmlir/Silicon/TTNN/llmbox/ccl/ccl_2x4.mlir
+4 −4 test/ttmlir/Silicon/TTNN/llmbox/perf/all_gather.mlir
+4 −4 test/ttmlir/Silicon/TTNN/llmbox/perf/all_reduce.mlir
+28 −0 test/ttmlir/Silicon/TTNN/n150/perf/test_perf_argmax.mlir
+52 −0 test/ttmlir/Silicon/TTNN/n150/simple_argmax.mlir
+12 −12 test/ttmlir/Silicon/TTNN/n300/ccl/ccl_1x2.mlir
+4 −4 test/ttmlir/Silicon/TTNN/n300/perf/all_gather.mlir
+4 −4 test/ttmlir/Silicon/TTNN/n300/perf/all_reduce.mlir
+12 −16 test/ttmlir/Silicon/TTNN/tg/ccl/ccl_1x32.mlir
+18 −5 test/ttmlir/Silicon/TTNN/tg/ccl/ccl_8x4.mlir
+4 −4 test/ttmlir/Silicon/TTNN/tg/perf/all_gather.mlir
+1 −1 third_party/CMakeLists.txt
+11 −7 tools/explorer/tt_adapter/src/tt_adapter/mlir.py
+4 −5 tools/explorer/tt_adapter/src/tt_adapter/runner.py

0 comments on commit d72b448

Please sign in to comment.