Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / actual_kernels / convolution / convolution_params.cpp
index 9b76961..16bbaf2 100644 (file)
@@ -56,7 +56,7 @@ namespace kernel_selector
             k.EnableDilation();
         }
 
-        if (depthwiseSeparableOpt)
+        if (depthwise_separable_opt)
         {
             k.EnableDepthwiseSeparableOpt();
         }
@@ -76,6 +76,16 @@ namespace kernel_selector
             k.EnableOutputCalibration();
         }
 
+        if (local_convolution)
+        {
+            k.EnableLocalConvolution();
+        }
+
+        if (groups > 1 && !depthwise_separable_opt)
+        {
+            k.EnableGroupedConvolution();
+        }
+
         return k;
     }
 }
\ No newline at end of file