Exemplo n.º 1
0
 static bool AreLayersFusable(Layer l0, Layer l1)
 {
     // can't fuse if input has a fused activation or if fusing code not implemented
     return(!IsLayerFusedActivation(l0) && linearLayerFuser.AreLayersFusable(l0, l1));
 }