Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / shape_infer / built-in / ie_inner_product_shape_infer.hpp
index d65a0d3..63160d0 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 Intel Corporation
+// Copyright (C) 2018-2019 Intel Corporation
 // SPDX-License-Identifier: Apache-2.0
 //
 
@@ -19,7 +19,7 @@ class InnerProductShapeProp : public BuiltInShapeInferImpl {
 public:
     explicit InnerProductShapeProp(const std::string& type) : BuiltInShapeInferImpl(type) {}
 
-    void inferShapesImpl(const std::vector<SizeVector>& inShapes,
+    void inferShapesImpl(const std::vector<Blob::CPtr>& inBlobs,
                          const std::map<std::string, std::string>& params,
                          const std::map<std::string, Blob::Ptr>& blobs,
                          std::vector<SizeVector>& outShapes) override {
@@ -27,7 +27,7 @@ public:
         FullyConnectedLayer fcLayer(lp);
         fcLayer.params = params;
         fcLayer.type = _type;
-        validate(&fcLayer, inShapes, params, blobs);
+        validate(&fcLayer, inBlobs, params, blobs);
         size_t OC, ON;
         ON = inShapes[0][0];
         OC = fcLayer._out_num;