Compile error fix

pull/604/merge
AlexeyAB 7 years ago
parent 1b2c70f82a
commit be9d971ddb
  1. 6
      src/network.c

@ -775,7 +775,11 @@ void fuse_conv_batchnorm(network net)
}
l->batch_normalize = 0;
push_convolutional_layer(*l);
#ifdef GPU
if (gpu_index >= 0) {
push_convolutional_layer(*l);
}
#endif
}
}
else {

Loading…
Cancel
Save