Forum Discussion
Altera_Forum
Honored Contributor
8 years agoReduce logic utilization
Hi, I have this part in my kernel where it takes too much logic
if(relu == 1){
if(out < 0 )
conv_in = 0.1*out;
else
conv_in = out;
}
out is a float data. The report...
Altera_Forum
Honored Contributor
8 years agoThe kernel is mainly doing floating point convolutions repeatedly. Anyway, i will try to verify my result and compare my result with the compiler flags on. Thanks HRZ