Skip to content

Commit 7c59ccf

Browse files
Merge pull request #103 from adhowe3/adhowe3-patch-1
Adhowe3 patch 1
2 parents 068f446 + 4277c6c commit 7c59ccf

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

example_new/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
1924
cd example_Versal/example_gemm
2025
python3 gemm.py

templates/Makefile_VCK190

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TARGET = hw
22
EN_PL = 1
3-
PLATFORM_REPO_PATHS = /tools/Xilinx/Vitis/2023.2/base_platforms/
3+
PLATFORM_REPO_PATHS = /tools/Xilinx/Vitis/2023.2/base_platforms
44
PLATFORM = ${PLATFORM_REPO_PATHS}/xilinx_vck190_base_202320_1/xilinx_vck190_base_202320_1.xpfm
55
XCLBIN = vck190_aie_base_graph_${TARGET}.xclbin
66
XSA = vck190_aie_base_graph_${TARGET}.xsa
@@ -190,7 +190,7 @@ run_emu:
190190
# If the target is for SW_EMU, launch the emulator
191191
ifeq (${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
194194
else
195195
# If the target is for HW_EMU, launch the emulator
196196
ifeq (${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

0 commit comments

Comments
 (0)