Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / shape_infer / built-in / ie_ctc_greedy_decoder_shape_infer.hpp
index 29625ff..c18a597 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 Intel Corporation
+// Copyright (C) 2018-2019 Intel Corporation
 // SPDX-License-Identifier: Apache-2.0
 //
 
@@ -20,15 +20,16 @@ class CTCGreedyDecoderShapeProp : public BuiltInShapeInferImpl {
 public:
     explicit CTCGreedyDecoderShapeProp(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 {
         outShapes.clear();
         LayerParams lp{};
         CNNLayer cnnLayer(lp);
-        cnnLayer.params = params; cnnLayer.type = _type;
-        validate(&cnnLayer, inShapes, params, blobs);
+        cnnLayer.params = params;
+        cnnLayer.type = _type;
+        validate(&cnnLayer, inBlobs, params, blobs);
 
         outShapes.push_back({inShapes[0][1], inShapes[0][0], 1, 1});
     }