The Vitis AIE compiler (v++ -c –mode aie) is used to compile the AI Engine graph and kernel files. The compiler settings can be driven by using a configuration (<>.cfg) file. The AIE compiler generates AI Engine graph applications (libadf.a) and a Work directory as an output.
graph TD;
start2[Platform/part]--->A(v++ -c --mode aie);
start3[graph.cpp]--->A(v++ -c --mode aie);
start1[AIEconfig.cfg]--->A(v++ -c --mode aie);
A-->End[libadf.a & Work];