Merge pull request #14951 from alalek:issue_14937

pull/15330/head^2
Alexander Alekhin 5 years ago
commit bff90d4684
  1. 4
      modules/dnn/src/layers/convolution_layer.cpp

@ -460,11 +460,11 @@ public:
std::vector<Ptr<BackendWrapper> > blobsWrapper;
if (newWeightAndBias)
if (fusedWeights)
{
Mat wm;
weightsMat.copyTo(wm); // to handle the case of isContinuous() == false
wm.reshape(1, blobs[0].dims, blobs[0].size);
wm = wm.reshape(1, blobs[0].dims, blobs[0].size);
blobsWrapper.push_back(Ptr<BackendWrapper>(new VkComBackendWrapper(wm)));
}
else

Loading…
Cancel
Save