Skip to content

Commit

Permalink
Bump UMD to fix TTDevice mutex issue (#17887)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanevskiTT authored Feb 15, 2025
1 parent 703a7a0 commit fefe478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tt_metal/third_party/umd
Submodule umd updated 47 files
+3 −3 .github/workflows/build-tests.yml
+6 −9 cmake/CPM.cmake
+13 −16 cmake/dependencies.cmake
+1 −0 device/CMakeLists.txt
+56 −0 device/api/umd/device/blackhole_arc_telemetry_reader.h
+3 −0 device/api/umd/device/blackhole_implementation.h
+12 −13 device/api/umd/device/cluster.h
+4 −0 device/api/umd/device/tt_device/blackhole_tt_device.h
+2 −0 device/api/umd/device/tt_device/grayskull_tt_device.h
+4 −7 device/api/umd/device/tt_device/tt_device.h
+2 −0 device/api/umd/device/tt_device/wormhole_tt_device.h
+2 −0 device/api/umd/device/tt_simulation_device.h
+4 −3 device/api/umd/device/tt_soc_descriptor.h
+56 −0 device/api/umd/device/types/blackhole_telemetry.h
+31 −0 device/api/umd/device/types/cluster_descriptor_types.h
+93 −0 device/blackhole/blackhole_arc_telemetry_reader.cpp
+3 −3 device/blackhole/blackhole_coordinate_manager.cpp
+3 −1 device/blackhole/blackhole_implementation.cpp
+13 −12 device/cluster.cpp
+35 −25 device/coordinate_manager.cpp
+5 −5 device/grayskull/grayskull_coordinate_manager.cpp
+5 −1 device/mockup/tt_mockup_device.hpp
+5 −1 device/simulation/tt_simulation_device.cpp
+32 −1 device/tt_device/blackhole_tt_device.cpp
+5 −0 device/tt_device/grayskull_tt_device.cpp
+1 −18 device/tt_device/tt_device.cpp
+5 −0 device/tt_device/wormhole_tt_device.cpp
+3 −1 device/tt_soc_descriptor.cpp
+249 −0 docs/coordinate_systems.md
+ docs/images/tensix_grid.png
+ docs/images/tensix_harvested_rows.png
+ docs/images/tensix_logical_coordinates.png
+ docs/images/tensix_logical_coordinates_harvested.png
+ docs/images/tensix_phyiscal_coordinates_harvested.png
+ docs/images/tensix_physical_coordinates.png
+ docs/images/tensix_translated_coordinates.png
+ docs/images/tensix_translated_coordinates_harvested.png
+ docs/images/tensix_virtual_coordinates_harvested.png
+0 −1 tests/api/test_cluster.cpp
+2 −0 tests/blackhole/CMakeLists.txt
+23 −0 tests/blackhole/test_arc_telemetry_bh.cpp
+0 −82 tests/blackhole/test_bh_common.h
+21 −0 tests/blackhole/test_chip_info_bh.cpp
+5 −3 tests/blackhole/test_cluster_bh.cpp
+1 −15 tests/microbenchmark/device_fixture.hpp
+25 −46 tests/microbenchmark/test_rw_tensix.cpp
+5 −3 tests/wormhole/test_cluster_wh.cpp

0 comments on commit fefe478

Please sign in to comment.