Free Running AI Engine Kernel
The AI Engine kernel can always be
running using graph::run(-1)
. This way the kernel will restart
automatically after the last iteration is complete.
graph::run()
without an argument runs the AI Engine kernels for a previously specified number of iterations (which
is infinity by default if the graph is run without any arguments). If the graph is run
with a finite number of iterations, for example, mygraph.run(3);
mygraph.run();
the second run call will also run for three
iterations.However, it requires input buffers and output buffers to be ready before it can start. Thus, it has a small overhead between kernel execution iterations. This section describes a method to construct a type of kernel that has zero overhead and runs forever. It is called the free running AI Engine kernel.
The free running kernels can only have streaming interfaces. Loops with infinite iterations can be inside the kernel. For example:
void free_running_aie(input_stream_cint16 * in,
output_stream_cint16 * out) {
while(true){ //This can be syntax supported by C++, for example: for(;;)
writeincr(out, readincr(in));
}
}
The free running kernel must have its own graph defined. This graph must not have any other non-free running kernels, because the graph never stops and non-free running kernels will lose control after being started. The graph containing the free running kernel must be a top-level graph that can be connected to other graphs, or it can be connected to PLIO or GMIO. A sample connection between the free running graph and other graphs is shown as follows.
simpleGraph mygraph; //normal graph
freeGraph mygraph_free; //graph with free running kernel
simulation::platform<1,1> platform("data/input.txt", "data/output.txt");
connect<> net0(platform.src[0], mygraph.in);
connect<> net1(mygraph.sout,mygraph_free.in);
connect<> net2(mygraph_free.out,mygraph.sin);
connect<> net3(mygraph.out, platform.sink[0]);
The free running graph can be started using
mygraph_free.run(-1)
or automatically started after loading.