Publishing 2019 R1.1 content and Myriad plugin sources (#162)
[platform/upstream/dldt.git] / inference-engine / src / mkldnn_plugin / nodes / mkldnn_gemm_node.h
index 94c4e15..6168e3d 100644 (file)
@@ -25,15 +25,15 @@ public:
 
 private:
     static Register<MKLDNNGemmNode> reg;
-    float alpha;
-    float beta;
-    bool transposeA;
-    bool transposeB;
+    float alpha = 1.0f;
+    float beta = 1.0f;
+    bool transposeA = false;
+    bool transposeB = false;
 
-    int xAxis;
-    int yAxis;
+    int xAxis = 0;
+    int yAxis = 0;
 
-    bool isThreeInputs;
+    bool isThreeInputs = false;
 
     std::vector<int> aOffsets;
     std::vector<int> bOffsets;