1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #23625 from zihaomu:improve_conv

DNN: Remove unnecessary flags for convolution
This commit is contained in:
Alexander Smorkalov
2023-05-26 12:59:36 +03:00
committed by GitHub
3 changed files with 2 additions and 6 deletions
@@ -258,7 +258,6 @@ CV__DNN_INLINE_NS_BEGIN
static Ptr<BaseConvolutionLayer> create(const LayerParams& params);
bool fusedActivation = false;
bool fusedAdd = false;
bool isConv2D = false; // Should be deleted after fastconv branch support Conv1D and Conv3D.
bool useWinograd = false; // Flag whether to use Winograd to speed up 3x3 convolution.
};