Skip to content

Commit

Permalink
Uplift third_party/tt-mlir to origin/main 2024-11-11 (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmilosevic authored Nov 11, 2024
1 parent 652174e commit 43533af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/tt-mlir
Submodule tt-mlir updated 60 files
+2 −224 .clang-format
+12 −3 .github/workflows/issue-last-updated.yml
+3 −3 include/ttmlir/Dialect/TT/Utils/MemoryLayoutAnalysisParams.h
+2 −1 include/ttmlir/Dialect/TT/Utils/PhysicalCoreCoord.h
+19 −0 include/ttmlir/Dialect/TTIR/IR/TTIROps.td
+2 −1 include/ttmlir/Dialect/TTNN/Analysis/Edge.h
+0 −1 include/ttmlir/Dialect/TTNN/Analysis/ShardSolver.h
+2 −1 include/ttmlir/Dialect/TTNN/Analysis/TTNNAnalysis.h
+2 −3 include/ttmlir/Dialect/TTNN/Utils/OptimizerOverrides.h
+18 −0 include/ttmlir/Target/Common/Target.h
+28 −0 include/ttmlir/Target/Common/types.fbs
+4 −0 include/ttmlir/Target/TTNN/program.fbs
+4 −2 include/ttmlir/Target/Utils/FlatbufferObjectCache.h
+2 −1 include/ttmlir/Target/Utils/FuncOpToProgram.h
+9 −3 include/ttmlir/Target/Utils/MLIRToFlatbuffer.h
+6 −3 include/ttmlir/Utils.h
+32 −0 lib/Conversion/StableHLOToTTIR/StableHLOToTTIRPatterns.cpp
+29 −0 lib/Conversion/TTIRToTTIRDecomposition/TTIRToTTIRDecomposition.cpp
+1 −0 lib/Conversion/TTIRToTTIRDecomposition/TTIRToTTIRDecompositionPass.cpp
+21 −3 lib/Conversion/TTIRToTTNN/TTIRToTTNN.cpp
+1 −0 lib/Conversion/TTIRToTTNN/TTIRToTTNNPass.cpp
+1 −1 lib/Dialect/TT/IR/TTOpsTypes.cpp
+40 −0 lib/Dialect/TTIR/IR/TTIROps.cpp
+19 −3 lib/Target/TTNN/TTNNToFlatbuffer.cpp
+1 −1 python/TTModule.cpp
+4 −16 python/test_infra/test_ttir_ops_ttmetal.py
+23 −49 python/test_infra/test_ttir_ops_ttnn.py
+11 −3 python/test_infra/test_utils.py
+10 −5 runtime/include/tt/runtime/detail/logger.h
+1 −0 runtime/include/tt/runtime/detail/ttmetal.h
+15 −0 runtime/include/tt/runtime/detail/ttnn.h
+14 −0 runtime/include/tt/runtime/runtime.h
+13 −5 runtime/include/tt/runtime/types.h
+3 −0 runtime/include/tt/runtime/utils.h
+1 −1 runtime/lib/binary.cpp
+1 −1 runtime/lib/common/system_desc.cpp
+24 −0 runtime/lib/runtime.cpp
+68 −29 runtime/lib/ttnn/include/tt/runtime/ttnn/types.h
+1 −1 runtime/lib/ttnn/include/tt/runtime/ttnn/utils.h
+30 −34 runtime/lib/ttnn/operations/context/get_device.cpp
+15 −13 runtime/lib/ttnn/operations/conv/conv2d.cpp
+88 −26 runtime/lib/ttnn/operations/creation/empty.cpp
+101 −37 runtime/lib/ttnn/operations/creation/full.cpp
+39 −2 runtime/lib/ttnn/operations/include/tt/runtime/ttnn/operations/utils.cpp
+6 −0 runtime/lib/ttnn/operations/include/tt/runtime/ttnn/operations/utils.h
+1 −7 runtime/lib/ttnn/operations/layout/from_device.cpp
+11 −9 runtime/lib/ttnn/operations/layout/to_device.cpp
+12 −10 runtime/lib/ttnn/operations/layout/to_layout.cpp
+1 −6 runtime/lib/ttnn/operations/layout/typecast.cpp
+9 −7 runtime/lib/ttnn/operations/pool/maxpool2d.cpp
+2 −1 runtime/lib/ttnn/program.cpp
+71 −18 runtime/lib/ttnn/runtime.cpp
+0 −39 runtime/tools/python/test/test_perf.py
+11 −25 runtime/tools/python/ttrt/common/perf.py
+1 −0 runtime/tools/python/ttrt/runtime/__init__.py
+19 −0 runtime/tools/python/ttrt/runtime/module.cpp
+11 −0 test/ttmlir/Conversion/StableHLOToTTIR/get_dimension_size_op.mlir
+50 −4 test/ttmlir/Dialect/TTNN/simple_constant.mlir
+10 −0 test/ttmlir/Dialect/TTNN/simple_get_dimension_size.mlir
+7 −0 test/ttmlir/Silicon/TTNN/simple_eltwise.mlir

0 comments on commit 43533af

Please sign in to comment.