2020-01-10 08:33 PM
aiSystemPerformance.c :
line 937 and 940
for (int i = 0; i < net_exec_ctx[idx].report.n_inputs; i++) {
for (ai_size i = 0; i < AI_BUFFER_SIZE(&ai_input[i]); ++i) {
In my opinion, different running variable i should be used for the above for loops.
One loop is inside of the other loop, but they share the same running variable i.