import_xpe(...) - import_xpe(...) - 2026.1 日本語 - UG1781

Power Design Manager Python スクリプト ガイド (UG1781)

Document_ID
UG1781
Release_Date
2026-06-23
Version
2026.1 日本語

説明

Report Power、XPE、NoC compiler、または AIE compiler から .xpe ファイルをプロジェクトにインポートします。

構文

import_xpe(<xpe_file>, append=False)

パラメーター

名前 説明
<xpe_file> インポートする .xpe ファイルへのパスです。
[append] True の場合はインポートで追加モードを有効にし、それ以外の場合は既存データを上書きします。

デフォルト: False

# Import an .xpe file into the current project (overwrite mode)
proj = new_project('my_design.pdm')
proj.import_xpe('baseline.xpe')
# Import an .xpe file in append mode (merge with existing data)
proj.import_xpe('additional.xpe', append=True)
# Import NoC or AIE XML formats
proj.import_xpe('noc_data.xpe')