mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Compile error fix
This commit is contained in:
@ -775,7 +775,11 @@ void fuse_conv_batchnorm(network net)
|
|||||||
}
|
}
|
||||||
|
|
||||||
l->batch_normalize = 0;
|
l->batch_normalize = 0;
|
||||||
push_convolutional_layer(*l);
|
#ifdef GPU
|
||||||
|
if (gpu_index >= 0) {
|
||||||
|
push_convolutional_layer(*l);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Reference in New Issue
Block a user