You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You'd see the same error. The fix, while being addressed, can be tested with the above single command itself and then later on be tested on the above 1-6 steps to confirm XCLBin's generation.
If you go ahead and simply change the content of /home/user/mlir-aie/reference_designs/ipu-xrt/matrix_multiplication/build/aie.mlir.prj/core_0_2.bcf by removing the absolute path of mm.o and just keeping "mm.o" - it'd run!
Summary with core*.bcf's content :-
WORKS -
_include _file mm.o
DOESN'T WORK -
_include _file /some/absolute/path/to/mm.o
The text was updated successfully, but these errors were encountered:
Error :-
Steps to reproduce (assuming you are inside mlir-aie's cloned repo) :-
@core(compute_tile2, "/home/user/mlir-aie/reference_designs/ipu-xrt/matrix_multiplication/build/mm.o")
cd reference_designs/ipu-xrt/matrix_multiplication/
mkdir -p build
python3 aie2.py > build/aie.mlir
cd build && xchesscc_wrapper aie2 -I /proj/xbuilds/SWIP/2023.2_1013_2256/installs/lin64/Vitis/2023.2/aietools/include -DBIT_WIDTH=8 -c ../mm.cc -o mm.o
aiecc.py -v --aie-generate-cdo --no-compile-host --xclbin-name=final.xclbin \ --aie-generate-ipu --ipu-insts-name=insts.txt aie.mlir
The above set of steps would give you the error being reported.
Now, to further narrow it down, run the following :-
You'd see the same error. The fix, while being addressed, can be tested with the above single command itself and then later on be tested on the above
1-6
steps to confirm XCLBin's generation.If you go ahead and simply change the content of
/home/user/mlir-aie/reference_designs/ipu-xrt/matrix_multiplication/build/aie.mlir.prj/core_0_2.bcf
by removing the absolute path ofmm.o
and just keeping"mm.o"
- it'd run!Summary with core*.bcf's content :-
The text was updated successfully, but these errors were encountered: