Skip to content

Commit e38fc46

Browse files
committed
install pkt2mlir
1 parent 0ebbaa6 commit e38fc46

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

python/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ declare_mlir_python_sources(AIEPythonSources.Compiler
110110
SOURCES_GLOB
111111
compiler/aiecc/*.py
112112
compiler/txn2mlir/*.py
113+
compiler/pkt2mlir/*.py
113114
)
114115

115116
if (AIE_ENABLE_XRT_PYTHON_BINDINGS)
@@ -424,8 +425,9 @@ add_custom_command(
424425
COMMAND ${CMAKE_COMMAND} -E copy
425426
${CMAKE_CURRENT_SOURCE_DIR}/compiler/aiecc.py
426427
${CMAKE_CURRENT_SOURCE_DIR}/compiler/txn2mlir.py
428+
${CMAKE_CURRENT_SOURCE_DIR}/compiler/pkt2mlir.py
427429
${CMAKE_BINARY_DIR}/bin
428430
)
429431
# during install
430-
install(PROGRAMS compiler/aiecc.py compiler/txn2mlir.py DESTINATION bin)
432+
install(PROGRAMS compiler/aiecc.py compiler/txn2mlir.py compiler/pkt2mlir.py DESTINATION bin)
431433

python/compiler/pkt2mlir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# See https://llvm.org/LICENSE.txt for license information.
55
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
#
7-
# Copyright (C) 2024-2025, Advanced Micro Devices, Inc. All rights reserved.
7+
# Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved.
88

99
from aie.compiler.pkt2mlir.main import main
1010

0 commit comments

Comments
 (0)