Add a section of how to link IE with CMake project (#99)
[platform/upstream/dldt.git] / inference-engine / src / inference_engine / shape_infer / built-in / ie_spatial_transformer_shape_infer.hpp
1 // Copyright (C) 2018 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #pragma once
6
7 #include <description_buffer.hpp>
8 #include "ie_built_in_impl.hpp"
9 #include <ie_layers.h>
10 #include <map>
11 #include <memory>
12 #include <string>
13 #include <vector>
14
15 namespace InferenceEngine {
16 namespace ShapeInfer {
17
18 /**
19  *@brief Implementation of Shape inference for SpatialTransformer layer
20  */
21 class SpatialTransformerShapeProp : public BuiltInShapeInferImpl {
22 public:
23     explicit SpatialTransformerShapeProp(const std::string& type) : BuiltInShapeInferImpl(type) {}
24
25     void inferShapesImpl(const std::vector<SizeVector>& inShapes,
26                          const std::map<std::string, std::string>& params,
27                          const std::map<std::string, Blob::Ptr>& blobs,
28                          std::vector<SizeVector>& outShapes) override {
29         LayerParams lp{};
30         CNNLayer cnnLayer(lp);
31         cnnLayer.params = params;
32         cnnLayer.type = _type;
33         validate(&cnnLayer, inShapes, params, blobs);
34         outShapes.push_back(inShapes[0]);
35     }
36 };
37
38 }  // namespace ShapeInfer
39 }  // namespace InferenceEngine