Skip to content

Commit

Permalink
vision examples: small edits for consistency to readmes, makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
efurst committed Apr 24, 2024
1 parent ac905c3 commit b3b1ab2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit b3b1ab2

Please sign in to comment.