Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / shape_infer / built-in / ie_permute_shape_infer.hpp
index 46f1456..cdfa2d7 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 Intel Corporation
+// Copyright (C) 2018-2019 Intel Corporation
 // SPDX-License-Identifier: Apache-2.0
 //
 
@@ -22,7 +22,7 @@ class PermuteShapeProp : public BuiltInShapeInferImpl {
 public:
     explicit PermuteShapeProp(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 {
@@ -30,7 +30,7 @@ public:
         CNNLayer permuteLayer(lp);
         permuteLayer.params = params;
         permuteLayer.type = _type;
-        validate(&permuteLayer, inShapes, params, blobs);
+        validate(&permuteLayer, inBlobs, params, blobs);
 
         std::vector<size_t> order;
         std::vector<int> layerOrder = permuteLayer.GetParamAsInts("order");