From 697f774e08b9550e23610c2b6ab20f6954292ea1 Mon Sep 17 00:00:00 2001 From: Bryan Wilder Field Lozano Date: Wed, 23 Oct 2024 19:45:03 -0700 Subject: [PATCH] #11830: Remove unnecessary includes (#14131) --- .../tt_metal/perf_microbenchmark/dispatch/test_dispatcher.cpp | 1 - .../tt_metal/perf_microbenchmark/dispatch/test_prefetcher.cpp | 1 - .../tt_metal/perf_microbenchmark/routing/test_bi_tunnel.cpp | 1 - .../tt_metal/perf_microbenchmark/routing/test_mux_demux.cpp | 1 - .../perf_microbenchmark/routing/test_mux_demux_2level.cpp | 1 - .../tt_metal/perf_microbenchmark/routing/test_tunnel_1cq.cpp | 1 - .../tt_metal/perf_microbenchmark/routing/test_tunnel_2cq.cpp | 1 - .../tt_metal/perf_microbenchmark/routing/test_tx_rx.cpp | 1 - .../tt_metal/perf_microbenchmark/routing/test_uni_tunnel.cpp | 1 - .../routing/test_uni_tunnel_single_chip.cpp | 1 - .../tt_metal/perf_microbenchmark/routing/test_vc_bi_tunnel.cpp | 1 - .../tt_metal/perf_microbenchmark/routing/test_vc_mux_demux.cpp | 1 - .../perf_microbenchmark/routing/test_vc_uni_tunnel.cpp | 1 - tests/tt_metal/tt_metal/test_core_range_set.cpp | 1 - tests/tt_metal/tt_metal/test_interleaved_l1_buffer.cpp | 3 --- tests/tt_metal/tt_metal/unit_tests/basic/device.cpp | 1 - .../tt_metal/unit_tests/basic/initialize_semaphores.cpp | 1 - tests/tt_metal/tt_metal/unit_tests/basic/test_noc.cpp | 1 - .../tt_metal/tt_metal/unit_tests/basic/test_soc_descriptor.cpp | 1 - .../tt_metal/unit_tests/common/n300_device_fixture.hpp | 1 - .../tt_metal/tt_metal/unit_tests/compute/test_sfpu_compute.cpp | 1 - .../unit_tests/compute/test_single_core_binary_compute.cpp | 1 - .../unit_tests/compute/test_single_core_matmul_compute.cpp | 1 - tests/tt_metal/tt_metal/unit_tests/dram/direct.cpp | 1 - .../tt_metal/unit_tests_common/basic/test_device_init.cpp | 1 - .../unit_tests_common/watcher/test_noc_sanitize_delays.cpp | 1 - .../unit_tests_fast_dispatch/compute/sfpu/sfpu_compute.cpp | 1 - .../unit_tests_fast_dispatch/pipelining/basic_pipeline.cpp | 1 - tt_metal/impl/allocator/allocator.cpp | 1 - tt_metal/impl/allocator/allocator_types.hpp | 1 - tt_metal/impl/allocator/l1_banking_allocator.cpp | 1 - tt_metal/impl/buffers/circular_buffer_types.hpp | 2 +- tt_metal/impl/buffers/semaphore.hpp | 1 - tt_metal/impl/dispatch/device_command.hpp | 1 - tt_metal/llrt/llrt.cpp | 1 - tt_metal/llrt/llrt.hpp | 1 - tt_metal/llrt/tt_cluster.hpp | 1 - tt_metal/llrt/tt_memory.cpp | 1 - tt_metal/tools/tt_gdb/tt_gdb.cpp | 1 - 39 files changed, 1 insertion(+), 41 deletions(-) diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/test_dispatcher.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/test_dispatcher.cpp index 62a4bc93132..6f25b8c6c04 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/test_dispatcher.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/test_dispatcher.cpp @@ -11,7 +11,6 @@ #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "common.h" constexpr uint32_t DEFAULT_ITERATIONS = 10000; diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/test_prefetcher.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/test_prefetcher.cpp index 72b8095caf1..866f5193212 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/test_prefetcher.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/dispatch/test_prefetcher.cpp @@ -12,7 +12,6 @@ #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" #include "tt_metal/impl/dispatch/command_queue_interface.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "common.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "tests/tt_metal/tt_metal/perf_microbenchmark/routing/kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_bi_tunnel.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_bi_tunnel.cpp index a40b5c78fbe..81b30d3b56f 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_bi_tunnel.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_bi_tunnel.cpp @@ -6,7 +6,6 @@ #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" #include "tt_metal/impl/device/device.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_mux_demux.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_mux_demux.cpp index 0502937e23e..431fe73700f 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_mux_demux.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_mux_demux.cpp @@ -7,7 +7,6 @@ #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" #include "tt_metal/impl/device/device.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_mux_demux_2level.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_mux_demux_2level.cpp index 9470e1bd68b..c251a567871 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_mux_demux_2level.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_mux_demux_2level.cpp @@ -6,7 +6,6 @@ #include "tt_metal/impl/device/device.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/llrt/rtoptions.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tunnel_1cq.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tunnel_1cq.cpp index 1ff074424a5..7b9b45ba68c 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tunnel_1cq.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tunnel_1cq.cpp @@ -7,7 +7,6 @@ #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/device/device.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tunnel_2cq.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tunnel_2cq.cpp index f144f2c4566..3c501badf88 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tunnel_2cq.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tunnel_2cq.cpp @@ -7,7 +7,6 @@ #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" #include "tt_metal/impl/device/device.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tx_rx.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tx_rx.cpp index 4f6ac1af829..1babd91d899 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tx_rx.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_tx_rx.cpp @@ -7,7 +7,6 @@ #include "tt_metal/impl/device/device.hpp" #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_uni_tunnel.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_uni_tunnel.cpp index 5f705a8e930..ee9b74ea473 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_uni_tunnel.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_uni_tunnel.cpp @@ -7,7 +7,6 @@ #include "tt_metal/impl/device/device.hpp" #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_uni_tunnel_single_chip.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_uni_tunnel_single_chip.cpp index 7d2b6096776..dec4e9ab3ca 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_uni_tunnel_single_chip.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_uni_tunnel_single_chip.cpp @@ -7,7 +7,6 @@ #include "tt_metal/impl/device/device.hpp" #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_bi_tunnel.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_bi_tunnel.cpp index 97eab0d8580..b0b8930326c 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_bi_tunnel.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_bi_tunnel.cpp @@ -6,7 +6,6 @@ #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" #include "tt_metal/impl/device/device.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_mux_demux.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_mux_demux.cpp index 3f0961200a7..ed64139831d 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_mux_demux.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_mux_demux.cpp @@ -7,7 +7,6 @@ #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" #include "tt_metal/impl/device/device.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_uni_tunnel.cpp b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_uni_tunnel.cpp index 0319b6af5f1..bd6708dca7d 100644 --- a/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_uni_tunnel.cpp +++ b/tests/tt_metal/tt_metal/perf_microbenchmark/routing/test_vc_uni_tunnel.cpp @@ -7,7 +7,6 @@ #include "tt_metal/impl/device/device.hpp" #include "tt_metal/llrt/rtoptions.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/kernels/packet_queue_ctrl.hpp" #include "kernels/traffic_gen_test.hpp" diff --git a/tests/tt_metal/tt_metal/test_core_range_set.cpp b/tests/tt_metal/tt_metal/test_core_range_set.cpp index d40d2516128..6140121289d 100644 --- a/tests/tt_metal/tt_metal/test_core_range_set.cpp +++ b/tests/tt_metal/tt_metal/test_core_range_set.cpp @@ -10,7 +10,6 @@ #include "tt_metal/host_api.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "common/bfloat16.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/buffers/semaphore.hpp" #include "tt_metal/impl/kernels/kernel.hpp" #include "tt_metal/impl/buffers/circular_buffer.hpp" diff --git a/tests/tt_metal/tt_metal/test_interleaved_l1_buffer.cpp b/tests/tt_metal/tt_metal/test_interleaved_l1_buffer.cpp index 733983e2056..8eccea0b040 100644 --- a/tests/tt_metal/tt_metal/test_interleaved_l1_buffer.cpp +++ b/tests/tt_metal/tt_metal/test_interleaved_l1_buffer.cpp @@ -10,9 +10,6 @@ #include "tt_metal/host_api.hpp" #include "tt_metal/detail/tt_metal.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" - - ////////////////////////////////////////////////////////////////////////////////////////// // TODO: explain what test does ////////////////////////////////////////////////////////////////////////////////////////// diff --git a/tests/tt_metal/tt_metal/unit_tests/basic/device.cpp b/tests/tt_metal/tt_metal/unit_tests/basic/device.cpp index c6afb6288ba..4dc272cfb24 100644 --- a/tests/tt_metal/tt_metal/unit_tests/basic/device.cpp +++ b/tests/tt_metal/tt_metal/unit_tests/basic/device.cpp @@ -12,7 +12,6 @@ #include "tests/tt_metal/tt_metal/unit_tests/common/device_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/test_utils/env_vars.hpp" #include "tt_metal/test_utils/print_helpers.hpp" #include "tt_metal/test_utils/stimulus.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests/basic/initialize_semaphores.cpp b/tests/tt_metal/tt_metal/unit_tests/basic/initialize_semaphores.cpp index d43254f7c37..58689b51aa9 100644 --- a/tests/tt_metal/tt_metal/unit_tests/basic/initialize_semaphores.cpp +++ b/tests/tt_metal/tt_metal/unit_tests/basic/initialize_semaphores.cpp @@ -12,7 +12,6 @@ #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/detail/util.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this using namespace tt; diff --git a/tests/tt_metal/tt_metal/unit_tests/basic/test_noc.cpp b/tests/tt_metal/tt_metal/unit_tests/basic/test_noc.cpp index abc0263d554..278e5289e28 100644 --- a/tests/tt_metal/tt_metal/unit_tests/basic/test_noc.cpp +++ b/tests/tt_metal/tt_metal/unit_tests/basic/test_noc.cpp @@ -12,7 +12,6 @@ #include "device_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/test_utils/env_vars.hpp" #include "tt_metal/test_utils/print_helpers.hpp" #include "tt_metal/test_utils/stimulus.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests/basic/test_soc_descriptor.cpp b/tests/tt_metal/tt_metal/unit_tests/basic/test_soc_descriptor.cpp index c38ee4e5b75..1fb0e630fd9 100644 --- a/tests/tt_metal/tt_metal/unit_tests/basic/test_soc_descriptor.cpp +++ b/tests/tt_metal/tt_metal/unit_tests/basic/test_soc_descriptor.cpp @@ -12,7 +12,6 @@ #include "device_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/test_utils/env_vars.hpp" #include "tt_metal/test_utils/print_helpers.hpp" #include "tt_metal/test_utils/stimulus.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests/common/n300_device_fixture.hpp b/tests/tt_metal/tt_metal/unit_tests/common/n300_device_fixture.hpp index 72ae9730bb2..355c0b03ab3 100644 --- a/tests/tt_metal/tt_metal/unit_tests/common/n300_device_fixture.hpp +++ b/tests/tt_metal/tt_metal/unit_tests/common/n300_device_fixture.hpp @@ -7,7 +7,6 @@ #include #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/test_utils/env_vars.hpp" #include "tt_metal/impl/device/device_pool.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests/compute/test_sfpu_compute.cpp b/tests/tt_metal/tt_metal/unit_tests/compute/test_sfpu_compute.cpp index 56a9dbc37e0..9a80a7d8819 100644 --- a/tests/tt_metal/tt_metal/unit_tests/compute/test_sfpu_compute.cpp +++ b/tests/tt_metal/tt_metal/unit_tests/compute/test_sfpu_compute.cpp @@ -12,7 +12,6 @@ #include "device_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/test_utils/comparison.hpp" #include "tt_metal/test_utils/df/df.hpp" #include "tt_metal/test_utils/print_helpers.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests/compute/test_single_core_binary_compute.cpp b/tests/tt_metal/tt_metal/unit_tests/compute/test_single_core_binary_compute.cpp index 52fee8e6066..3cfd8a8e7cc 100644 --- a/tests/tt_metal/tt_metal/unit_tests/compute/test_single_core_binary_compute.cpp +++ b/tests/tt_metal/tt_metal/unit_tests/compute/test_single_core_binary_compute.cpp @@ -12,7 +12,6 @@ #include "device_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/test_utils/comparison.hpp" #include "tt_metal/test_utils/df/df.hpp" #include "tt_metal/test_utils/print_helpers.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests/compute/test_single_core_matmul_compute.cpp b/tests/tt_metal/tt_metal/unit_tests/compute/test_single_core_matmul_compute.cpp index 6c03f17a4bc..f26e3c55812 100644 --- a/tests/tt_metal/tt_metal/unit_tests/compute/test_single_core_matmul_compute.cpp +++ b/tests/tt_metal/tt_metal/unit_tests/compute/test_single_core_matmul_compute.cpp @@ -12,7 +12,6 @@ #include "device_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/test_utils/comparison.hpp" #include "tt_metal/test_utils/df/df.hpp" #include "tt_metal/test_utils/print_helpers.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests/dram/direct.cpp b/tests/tt_metal/tt_metal/unit_tests/dram/direct.cpp index f0825f01593..081d72fb3a1 100644 --- a/tests/tt_metal/tt_metal/unit_tests/dram/direct.cpp +++ b/tests/tt_metal/tt_metal/unit_tests/dram/direct.cpp @@ -11,7 +11,6 @@ #include "device_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/test_utils/comparison.hpp" #include "tt_metal/test_utils/df/df.hpp" #include "tt_metal/test_utils/print_helpers.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests_common/basic/test_device_init.cpp b/tests/tt_metal/tt_metal/unit_tests_common/basic/test_device_init.cpp index cb29420071b..6e82d8b87b4 100644 --- a/tests/tt_metal/tt_metal/unit_tests_common/basic/test_device_init.cpp +++ b/tests/tt_metal/tt_metal/unit_tests_common/basic/test_device_init.cpp @@ -10,7 +10,6 @@ #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/impl/dispatch/command_queue.hpp" #include "tt_metal/test_utils/env_vars.hpp" #include "tt_metal/test_utils/print_helpers.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests_common/watcher/test_noc_sanitize_delays.cpp b/tests/tt_metal/tt_metal/unit_tests_common/watcher/test_noc_sanitize_delays.cpp index 2734b791417..ef31e02d8a3 100644 --- a/tests/tt_metal/tt_metal/unit_tests_common/watcher/test_noc_sanitize_delays.cpp +++ b/tests/tt_metal/tt_metal/unit_tests_common/watcher/test_noc_sanitize_delays.cpp @@ -9,7 +9,6 @@ #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" #include "common/bfloat16.hpp" -#include "hostdevcommon/common_runtime_address_map.h" ////////////////////////////////////////////////////////////////////////////////////////// // A test for checking watcher NOC sanitization. diff --git a/tests/tt_metal/tt_metal/unit_tests_fast_dispatch/compute/sfpu/sfpu_compute.cpp b/tests/tt_metal/tt_metal/unit_tests_fast_dispatch/compute/sfpu/sfpu_compute.cpp index 8cb072266de..28e0089323f 100644 --- a/tests/tt_metal/tt_metal/unit_tests_fast_dispatch/compute/sfpu/sfpu_compute.cpp +++ b/tests/tt_metal/tt_metal/unit_tests_fast_dispatch/compute/sfpu/sfpu_compute.cpp @@ -12,7 +12,6 @@ #include "command_queue_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/impl/dispatch/command_queue.hpp" #include "tt_metal/test_utils/comparison.hpp" #include "tt_metal/test_utils/df/df.hpp" diff --git a/tests/tt_metal/tt_metal/unit_tests_fast_dispatch/pipelining/basic_pipeline.cpp b/tests/tt_metal/tt_metal/unit_tests_fast_dispatch/pipelining/basic_pipeline.cpp index ccb689a268c..d339c115865 100644 --- a/tests/tt_metal/tt_metal/unit_tests_fast_dispatch/pipelining/basic_pipeline.cpp +++ b/tests/tt_metal/tt_metal/unit_tests_fast_dispatch/pipelining/basic_pipeline.cpp @@ -16,7 +16,6 @@ #include "tests/tt_metal/tt_metal/unit_tests_fast_dispatch/common/command_queue_fixture.hpp" #include "tt_metal/detail/tt_metal.hpp" #include "tt_metal/host_api.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // FIXME: Should remove dependency on this #include "tt_metal/impl/dispatch/command_queue.hpp" #include "tt_metal/test_utils/env_vars.hpp" #include "tt_metal/test_utils/print_helpers.hpp" diff --git a/tt_metal/impl/allocator/allocator.cpp b/tt_metal/impl/allocator/allocator.cpp index 44ddcac0678..023826e5cd9 100644 --- a/tt_metal/impl/allocator/allocator.cpp +++ b/tt_metal/impl/allocator/allocator.cpp @@ -7,7 +7,6 @@ #include #include "tt_metal/common/math.hpp" #include "tt_metal/detail/util.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/allocator/algorithms/free_list.hpp" #include "tt_metal/impl/buffers/buffer.hpp" diff --git a/tt_metal/impl/allocator/allocator_types.hpp b/tt_metal/impl/allocator/allocator_types.hpp index 572ab2974e5..524ea97bca4 100644 --- a/tt_metal/impl/allocator/allocator_types.hpp +++ b/tt_metal/impl/allocator/allocator_types.hpp @@ -9,7 +9,6 @@ #include #include "common/core_coord.hpp" #include "hostdevcommon/common_values.hpp" -#include "hostdevcommon/common_runtime_address_map.h" #include "dev_mem_map.h" namespace tt::tt_metal { diff --git a/tt_metal/impl/allocator/l1_banking_allocator.cpp b/tt_metal/impl/allocator/l1_banking_allocator.cpp index 82b38efca8d..bbf146bdbe2 100644 --- a/tt_metal/impl/allocator/l1_banking_allocator.cpp +++ b/tt_metal/impl/allocator/l1_banking_allocator.cpp @@ -10,7 +10,6 @@ #include #include -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/buffers/buffer.hpp" namespace tt { diff --git a/tt_metal/impl/buffers/circular_buffer_types.hpp b/tt_metal/impl/buffers/circular_buffer_types.hpp index a70d633b4b9..a0349316c05 100644 --- a/tt_metal/impl/buffers/circular_buffer_types.hpp +++ b/tt_metal/impl/buffers/circular_buffer_types.hpp @@ -12,7 +12,7 @@ #include "tt_metal/common/logger.hpp" #include "tt_metal/common/tt_backend_api_types.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" +#include "tt_metal/hostdevcommon/common_runtime_address_map.h" // NUM_CIRCULAR_BUFFERS #include "tt_metal/impl/buffers/buffer.hpp" #include "tt_metal/impl/tile/tile.hpp" diff --git a/tt_metal/impl/buffers/semaphore.hpp b/tt_metal/impl/buffers/semaphore.hpp index d4bdf24a75f..d9d9ea126e8 100644 --- a/tt_metal/impl/buffers/semaphore.hpp +++ b/tt_metal/impl/buffers/semaphore.hpp @@ -6,7 +6,6 @@ #include "llrt/hal.hpp" #include "common/core_coord.hpp" -#include "hostdevcommon/common_runtime_address_map.h" #include "tt_metal/third_party/umd/device/tt_soc_descriptor.h" namespace tt { diff --git a/tt_metal/impl/dispatch/device_command.hpp b/tt_metal/impl/dispatch/device_command.hpp index 34123abb1c3..c665b63f99c 100644 --- a/tt_metal/impl/dispatch/device_command.hpp +++ b/tt_metal/impl/dispatch/device_command.hpp @@ -9,7 +9,6 @@ #include #include "common/env_lib.hpp" -#include "tt_metal/hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/dispatch/command_queue_interface.hpp" #include "tt_metal/impl/dispatch/cq_commands.hpp" #include "tt_metal/tt_stl/aligned_allocator.hpp" diff --git a/tt_metal/llrt/llrt.cpp b/tt_metal/llrt/llrt.cpp index 6edf9d38853..183df6abb24 100644 --- a/tt_metal/llrt/llrt.cpp +++ b/tt_metal/llrt/llrt.cpp @@ -6,7 +6,6 @@ #include "llrt.hpp" #include "hal.hpp" -#include "hostdevcommon/common_runtime_address_map.h" #include "hostdevcommon/common_values.hpp" #include "jit_build/settings.hpp" diff --git a/tt_metal/llrt/llrt.hpp b/tt_metal/llrt/llrt.hpp index 0fc3004f551..d690aebc144 100644 --- a/tt_metal/llrt/llrt.hpp +++ b/tt_metal/llrt/llrt.hpp @@ -17,7 +17,6 @@ #include "tt_metal/third_party/umd/device/tt_xy_pair.h" #include "llrt_common/tiles.hpp" #include "llrt/tt_memory.h" -#include "hostdevcommon/common_runtime_address_map.h" #include "jit_build/build.hpp" #include "dev_msgs.h" // clang-format on diff --git a/tt_metal/llrt/tt_cluster.hpp b/tt_metal/llrt/tt_cluster.hpp index 0b53d5c6cb2..2bf49c81e8d 100644 --- a/tt_metal/llrt/tt_cluster.hpp +++ b/tt_metal/llrt/tt_cluster.hpp @@ -12,7 +12,6 @@ #include "common/test_common.hpp" #include "common/tt_backend_api_types.hpp" #include "host_mem_address_map.h" -#include "hostdevcommon/common_runtime_address_map.h" #include "third_party/umd/device/device_api_metal.h" #include "tt_metal/third_party/umd/device/tt_cluster_descriptor.h" #include "tt_metal/third_party/umd/device/tt_xy_pair.h" diff --git a/tt_metal/llrt/tt_memory.cpp b/tt_metal/llrt/tt_memory.cpp index 0c8a30549e0..376b2213038 100644 --- a/tt_metal/llrt/tt_memory.cpp +++ b/tt_metal/llrt/tt_memory.cpp @@ -10,7 +10,6 @@ #include #include -#include "hostdevcommon/common_runtime_address_map.h" #include "tensix.h" #include "tt_elffile.hpp" #include "tt_metal/common/assert.hpp" diff --git a/tt_metal/tools/tt_gdb/tt_gdb.cpp b/tt_metal/tools/tt_gdb/tt_gdb.cpp index 40c7f822f3c..cde0d68348c 100644 --- a/tt_metal/tools/tt_gdb/tt_gdb.cpp +++ b/tt_metal/tools/tt_gdb/tt_gdb.cpp @@ -10,7 +10,6 @@ #include #include -#include "hostdevcommon/common_runtime_address_map.h" #include "tt_metal/impl/device/device.hpp" #include "build_kernels_for_riscv/build_kernel_options.hpp"