Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consistency edits to vision examples #1389

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions programming_examples/vision/color_detect/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ build/final_${COLORDETECT_WIDTH}.xclbin: build/aie2_lineBased_8b_${COLORDETECT_W
cd ${@D} && aiecc.py --aie-generate-cdo --aie-generate-ipu --no-compile-host \
--xclbin-name=${@F} --ipu-insts-name=insts.txt $(<:%=../%)

build/${targetname}.exe: test.cpp
${targetname}.exe: test.cpp
mkdir -p ${@D}
rm -rf _build
mkdir -p _build
Expand All @@ -55,7 +55,7 @@ else
cp _build/${targetname} $@
endif

run: build/${targetname}.exe build/final_${COLORDETECT_WIDTH}.xclbin build/insts.txt
run: ${targetname}.exe build/final_${COLORDETECT_WIDTH}.xclbin build/insts.txt
${powershell} ./$< -x build/final_${COLORDETECT_WIDTH}.xclbin -i build/insts.txt -k MLIR_AIE

clean:
Expand Down
2 changes: 1 addition & 1 deletion programming_examples/vision/vision_passthrough/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Single tile applies a pass through kernel on data from local memory. There are t
To compile desing in Windows:
```
make
make build/passThrough.exe
make passThrough.exe
```

To run the design:
Expand Down
Loading