Define which loops are streamed in HDL coder
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Roland
el 18 de Ag. de 2016
Comentada: Roland
el 5 de Sept. de 2016
Hallo,
I am using the HDLcoder in Matlab2016a to implement a neural network on an FPGA. To control the resource consumption it would be perfect to individually control which loops are streamed and which ones are unrolled. Here is a short example:
function [ out ] = Layer( in, fak, neurons )
F = fimath('RoundingMethod','Floor','OverflowAction','Wrap','ProductMode','KeepMSB');
temp = fi(zeros(neurons,1),0,in.WordLength,in.WordLength/2,F);
for jj = 1:neurons
for ii = 1:length(in)
temp(jj) = fi(temp(jj)+in(ii)*fak(ii),0,in.WordLength,in.WordLength/2,F);
end
end
out = temp;
end
Is it possible to stream the inner loop(index ii) and unroll the outer loop(index jj) in order to end up with 3 DSPs working parallel generating the output? Or is it possible to influence the arrangement of the hardware implementation in any way?
Thanks Roland
0 comentarios
Respuesta aceptada
Chun-Yu
el 24 de Ag. de 2016
Hi Roland,
Yes, this is possible by using Coder pragmas. By using the coder.hdl.loopspec() pragma, you can control which loop(s) get streamed. You can combine it with the coder.unroll() pragma to get the desired results:
function [ out ] = Layer( in, fak, neurons )
F = fimath('RoundingMethod','Floor','OverflowAction','Wrap','ProductMode','KeepMSB');
temp = fi(zeros(neurons,1),0,in.WordLength,in.WordLength/2,F);
for jj = coder.unroll(1:neurons)
coder.hdl.loopspec('stream');
for ii = 1:length(in)
temp(jj) = fi(temp(jj)+in(ii)*fak(ii),0,in.WordLength,in.WordLength/2,F);
end
end
out = temp;
end
Hope that helps,
Chun-Yu
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!