Skip to content

Commit

Permalink
bump umd
Browse files Browse the repository at this point in the history
  • Loading branch information
broskoTT committed Oct 22, 2024
1 parent b77b5d9 commit 8d93e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tt_metal/third_party/umd
Submodule umd updated 72 files
+27 −0 .github/docker_install_common.sh
+6 −0 .github/ubuntu-20.04.Dockerfile
+7 −0 .github/ubuntu-22.04.Dockerfile
+53 −0 .github/workflows/build-device.yml
+52 −0 .github/workflows/build-image.yml
+84 −0 .github/workflows/build-tests.yml
+23 −0 .github/workflows/lint-yaml.yml
+45 −0 .github/workflows/on-pr-opt.yml
+18 −0 .github/workflows/on-pr.yml
+54 −0 .github/workflows/on-push.yml
+103 −0 .github/workflows/run-tests.yml
+118 −0 .github/workflows/test-runner.yaml
+1 −1 .gitignore
+0 −100 .gitlab-ci.yml
+0 −3 .gitmodules
+11 −0 .yamllint
+26 −25 CMakeLists.txt
+2,781 −0 Doxyfile
+0 −93 Makefile
+20 −41 README.md
+46 −0 cmake/compilers.cmake
+10 −0 cmake/dependencies.cmake
+2 −1 device/CMakeLists.txt
+1 −0 device/architecture_implementation.h
+1 −0 device/blackhole/blackhole_implementation.h
+5 −6 device/cpuset_lib.cpp
+1 −0 device/grayskull/grayskull_implementation.h
+0 −32 device/kmdif.h
+107 −0 device/mockup/tt_mockup_device.hpp
+0 −178 device/module.mk
+586 −0 device/pcie/pci_device.cpp
+198 −0 device/pcie/pci_device.hpp
+3 −2 device/simulation/tt_simulation_device.cpp
+2 −1 device/simulation/tt_simulation_device.h
+3 −0 device/tt_arch_types.h
+23 −3 device/tt_cluster_descriptor.cpp
+7 −2 device/tt_cluster_descriptor.h
+3 −1 device/tt_device.cpp
+225 −233 device/tt_device.h
+337 −1,295 device/tt_silicon_driver.cpp
+5 −3 device/tt_soc_descriptor.cpp
+4 −1 device/tt_soc_descriptor.h
+1 −0 device/wormhole/wormhole_implementation.h
+4 −2 device/xy_pair.h
+17 −0 docs/README.md
+14 −0 docs/build_docs.sh
+2 −0 docs/install_docs_requirements.sh
+27 −2 tests/CMakeLists.txt
+11 −0 tests/api/CMakeLists.txt
+262 −0 tests/api/test_cluster.cpp
+164 −0 tests/api/test_cluster_descriptor.cpp
+1 −2 tests/blackhole/test_bh_common.h
+50 −65 tests/blackhole/test_silicon_driver_bh.cpp
+4 −4 tests/emulation/test_emulation_device.cpp
+10 −6 tests/galaxy/test_galaxy_common.cpp
+3 −4 tests/galaxy/test_galaxy_common.h
+22 −26 tests/galaxy/test_umd_concurrent_threads.cpp
+12 −15 tests/galaxy/test_umd_remote_api.cpp
+0 −1 tests/galaxy/test_umd_remote_api_stability.cpp
+38 −49 tests/grayskull/test_silicon_driver.cpp
+1 −2 tests/microbenchmark/device_fixture.hpp
+7 −6 tests/microbenchmark/test_rw_tensix.cpp
+0 −75 tests/module.mk
+6 −0 tests/pcie/CMakeLists.txt
+36 −0 tests/pcie/test_pcie_device.cpp
+5 −4 tests/simulation/test_simulation_device.cpp
+25 −0 tests/test_utils/device_test_utils.hpp
+1 −1 tests/test_utils/generate_cluster_desc.cpp
+12 −3 tests/test_utils/generate_cluster_desc.hpp
+141 −62 tests/wormhole/test_silicon_driver_wh.cpp
+1 −2 tests/wormhole/test_wh_common.h
+0 −1 third_party/fmt

0 comments on commit 8d93e0e

Please sign in to comment.