説明
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')