File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ sudo apt install python3.12-venv
3434
3535### 1. Download Aries & Submodules
3636``` sh
37- $ git clone --recursive https://github.com/arc-research-lab/Aries.git
38- $ cd Aries
37+ git clone --recursive https://github.com/arc-research-lab/Aries.git
38+ cd Aries
3939```
4040
4141### 2. Setup Python Virtual Environment
Original file line number Diff line number Diff line change @@ -14,7 +14,12 @@ source /opt/petalinux/2023.2/environment-setup-cortexa72-cortexa53-xilinx-linux
1414
1515## ** * Step 2: Setup and compile project
1616
17+ you may need to source the Aries python environment again:
18+ ``` sh
19+ source < PATH_TO_ARIES> /aries/bin/activate
20+ ```
1721### Create ARIES Initial IR and ARIES Makefile from user defined ARIES Python-based frontend.(Within 10 seconds)
22+
1823``` sh
1924cd example_Versal/example_gemm
2025python3 gemm.py
Original file line number Diff line number Diff line change 11TARGET = hw
22EN_PL = 1
3- PLATFORM_REPO_PATHS = /tools/Xilinx/Vitis/2023.2/base_platforms/
3+ PLATFORM_REPO_PATHS = /tools/Xilinx/Vitis/2023.2/base_platforms
44PLATFORM = ${PLATFORM_REPO_PATHS}/xilinx_vck190_base_202320_1/xilinx_vck190_base_202320_1.xpfm
55XCLBIN = vck190_aie_base_graph_${TARGET}.xclbin
66XSA = vck190_aie_base_graph_${TARGET}.xsa
@@ -190,7 +190,7 @@ run_emu:
190190# If the target is for SW_EMU, launch the emulator
191191ifeq (${TARGET},sw_emu)
192192 export XCL_EMULATION_MODE=$(TARGET)
193- ./host_ps_on_x86 ../ ${XCLBIN} 0 1
193+ ./host_ps_on_x86 ${XCLBIN} 0 1
194194else
195195# If the target is for HW_EMU, launch the emulator
196196ifeq (${TARGET},hw_emu)
@@ -219,4 +219,4 @@ cleanall: clean cleantemp cleansim cleanaie cleanhost cleanpac
219219 -$(RMDIR) build_dir* sd_card*
220220 -$(RMDIR) package.hw run_app.sh
221221 -$(RMDIR) *xclbin.run_summary qemu-memory-_* emulation _vimage pl* start_simulation.sh *.xclbin
222- $(MAKE) -C sw clean
222+ $(MAKE) -C sw clean
You can’t perform that action at this time.
0 commit comments