From 0c2feb6a04de5af5b66fe38bedcd1c98f083f3a8 Mon Sep 17 00:00:00 2001 From: snigupta Date: Tue, 9 Jun 2026 16:59:29 -0600 Subject: [PATCH] Rename AIERT_DIR to AIE_CODEGEN_DIR for aie-codegen submodule path Signed-off-by: snigupta --- profile/device/common/transactions/op_types.h | 4 ++-- profile/plugin/aie_debug/CMakeLists.txt | 2 +- profile/plugin/aie_dtrace/CMakeLists.txt | 2 +- profile/plugin/aie_halt/CMakeLists.txt | 4 ++-- profile/plugin/aie_profile/CMakeLists.txt | 4 ++-- profile/plugin/aie_trace/CMakeLists.txt | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/profile/device/common/transactions/op_types.h b/profile/device/common/transactions/op_types.h index 5ef48dfd..106e68d5 100644 --- a/profile/device/common/transactions/op_types.h +++ b/profile/device/common/transactions/op_types.h @@ -4,7 +4,7 @@ #define __OP_TYPES_H__ /* Following headers are not needed anymore. - * Updated aie-rt submodule provides required declarations. + * Updated aie-codegen submodule provides required declarations. */ /* #include "op_defs.h" @@ -38,7 +38,7 @@ typedef struct { } print_op_t; /* Following typedef declarations are now available - * in updated aie-rt submodule + * in updated aie-codegen submodule */ /* typedef struct { diff --git a/profile/plugin/aie_debug/CMakeLists.txt b/profile/plugin/aie_debug/CMakeLists.txt index 9b87a6fc..c7b3fa5d 100644 --- a/profile/plugin/aie_debug/CMakeLists.txt +++ b/profile/plugin/aie_debug/CMakeLists.txt @@ -48,7 +48,7 @@ elseif (XDP_CLIENT_BUILD_CMAKE STREQUAL "yes") add_dependencies(xdp_aie_debug_plugin xdp_core xrt_coreutil) target_link_libraries(xdp_aie_debug_plugin PRIVATE xdp_core xrt_coreutil aie_codegen) target_compile_definitions(xdp_aie_debug_plugin PRIVATE XDP_CLIENT_BUILD=1 XDP_USE_AIE_CODEGEN=1 -DXAIE_FEATURE_MSVC) - target_include_directories(xdp_aie_debug_plugin PRIVATE ${AIERT_DIR}/include) + target_include_directories(xdp_aie_debug_plugin PRIVATE ${AIE_CODEGEN_DIR}/include) set_target_properties(xdp_aie_debug_plugin PROPERTIES VERSION ${XRT_VERSION_STRING} SOVERSION ${XRT_SOVERSION}) install (TARGETS xdp_aie_debug_plugin diff --git a/profile/plugin/aie_dtrace/CMakeLists.txt b/profile/plugin/aie_dtrace/CMakeLists.txt index 37eced33..8d150fd2 100644 --- a/profile/plugin/aie_dtrace/CMakeLists.txt +++ b/profile/plugin/aie_dtrace/CMakeLists.txt @@ -70,7 +70,7 @@ if (XDP_VE2_BUILD_CMAKE STREQUAL "yes") ${CMAKE_SOURCE_DIR}/src ${AIEFAL_DIR} ${AIEBU_SOURCE_DIR}/src/cpp/include - ${AIERT_DIR}/include + ${AIE_CODEGEN_DIR}/include ${XRT_SOURCE_DIR}/runtime_src/core/common/elf ) set_target_properties(xdp_aie_dtrace_plugin_xdna PROPERTIES VERSION ${XRT_VERSION_STRING} diff --git a/profile/plugin/aie_halt/CMakeLists.txt b/profile/plugin/aie_halt/CMakeLists.txt index 8ffefdd7..d4392771 100644 --- a/profile/plugin/aie_halt/CMakeLists.txt +++ b/profile/plugin/aie_halt/CMakeLists.txt @@ -33,7 +33,7 @@ if (XDP_CLIENT_BUILD_CMAKE STREQUAL "yes") add_dependencies(xdp_aie_halt_plugin xdp_core xrt_coreutil) target_link_libraries(xdp_aie_halt_plugin PRIVATE xdp_core xrt_coreutil aie_codegen) target_compile_definitions(xdp_aie_halt_plugin PRIVATE XDP_CLIENT_BUILD=1 XDP_USE_AIE_CODEGEN=1 -DXAIE_FEATURE_MSVC) - target_include_directories(xdp_aie_halt_plugin PRIVATE ${AIERT_DIR}/include) + target_include_directories(xdp_aie_halt_plugin PRIVATE ${AIE_CODEGEN_DIR}/include) set_target_properties(xdp_aie_halt_plugin PROPERTIES VERSION ${XRT_VERSION_STRING} SOVERSION ${XRT_SOVERSION}) install (TARGETS xdp_aie_halt_plugin @@ -46,7 +46,7 @@ elseif (XDP_VE2_BUILD_CMAKE STREQUAL "yes") add_dependencies(xdp_aie_halt_plugin xdp_core xrt_coreutil) # Note: For ve2, a prebuilt elf is loaded so aie-codegen library is not needed - #target_include_directories(xdp_aie_halt_plugin PRIVATE ${AIERT_DIR}/include) + #target_include_directories(xdp_aie_halt_plugin PRIVATE ${AIE_CODEGEN_DIR}/include) #target_link_libraries(xdp_aie_halt_plugin PRIVATE xdp_core xrt_coreutil aie_codegen) target_link_libraries(xdp_aie_halt_plugin PRIVATE xdp_core xrt_coreutil) target_compile_definitions(xdp_aie_halt_plugin PRIVATE XDP_VE2_BUILD=1 XDP_USE_AIE_CODEGEN=1) diff --git a/profile/plugin/aie_profile/CMakeLists.txt b/profile/plugin/aie_profile/CMakeLists.txt index 3d7f78ab..ef4c0f66 100644 --- a/profile/plugin/aie_profile/CMakeLists.txt +++ b/profile/plugin/aie_profile/CMakeLists.txt @@ -45,7 +45,7 @@ if (XDP_CLIENT_BUILD_CMAKE STREQUAL "yes") add_dependencies(xdp_aie_profile_plugin xdp_core xrt_coreutil) target_link_libraries(xdp_aie_profile_plugin PRIVATE xdp_core xrt_coreutil aie_codegen) target_compile_definitions(xdp_aie_profile_plugin PRIVATE XDP_CLIENT_BUILD=1 XDP_USE_AIE_CODEGEN=1 -DXAIE_FEATURE_MSVC) - target_include_directories(xdp_aie_profile_plugin PRIVATE ${AIERT_DIR}/include) + target_include_directories(xdp_aie_profile_plugin PRIVATE ${AIE_CODEGEN_DIR}/include) set_target_properties(xdp_aie_profile_plugin PROPERTIES VERSION ${XRT_VERSION_STRING} SOVERSION ${XRT_SOVERSION}) install (TARGETS xdp_aie_profile_plugin @@ -95,7 +95,7 @@ else() ${CMAKE_SOURCE_DIR}/src ${AIEFAL_DIR} ${AIEBU_SOURCE_DIR}/src/cpp/include - ${AIERT_DIR}/include + ${AIE_CODEGEN_DIR}/include ${XRT_SOURCE_DIR}/runtime_src/core/common/elf ) set_target_properties(xdp_aie_profile_plugin_xdna PROPERTIES VERSION ${XRT_VERSION_STRING} SOVERSION ${XRT_SOVERSION}) diff --git a/profile/plugin/aie_trace/CMakeLists.txt b/profile/plugin/aie_trace/CMakeLists.txt index 9b9689e4..df9cd032 100644 --- a/profile/plugin/aie_trace/CMakeLists.txt +++ b/profile/plugin/aie_trace/CMakeLists.txt @@ -54,7 +54,7 @@ if (XDP_CLIENT_BUILD_CMAKE STREQUAL "yes") add_dependencies(xdp_aie_trace_plugin xdp_core xrt_coreutil) target_link_libraries(xdp_aie_trace_plugin PRIVATE xdp_core xrt_coreutil aie_codegen) target_compile_definitions(xdp_aie_trace_plugin PRIVATE XDP_CLIENT_BUILD=1 XDP_USE_AIE_CODEGEN=1 -DXAIE_FEATURE_MSVC) - target_include_directories(xdp_aie_trace_plugin PRIVATE ${AIERT_DIR}/include) + target_include_directories(xdp_aie_trace_plugin PRIVATE ${AIE_CODEGEN_DIR}/include) set_target_properties(xdp_aie_trace_plugin PROPERTIES VERSION ${XRT_VERSION_STRING} SOVERSION ${XRT_SOVERSION}) install (TARGETS xdp_aie_trace_plugin @@ -113,7 +113,7 @@ else() ${CMAKE_SOURCE_DIR}/src ${AIEFAL_DIR} ${AIEBU_SOURCE_DIR}/src/cpp/include - ${AIERT_DIR}/include + ${AIE_CODEGEN_DIR}/include ${XRT_SOURCE_DIR}/runtime_src/core/common/elf ) set_target_properties(xdp_aie_trace_plugin_xdna PROPERTIES VERSION ${XRT_VERSION_STRING} SOVERSION ${XRT_SOVERSION})