Altera_Forum
Honored Contributor
7 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...