ie_mvn_layer.hpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 #pragma once
6 
7 #include <builders/ie_layer_decorator.hpp>
8 #include <ie_network.hpp>
9 #include <string>
10 
11 namespace InferenceEngine {
12 namespace Builder {
13 
14 /**
15  * @brief The class represents a builder for MVN layer
16  */
17 class INFERENCE_ENGINE_API_CLASS(MVNLayer): public LayerDecorator {
18 public:
19  /**
20  * @brief The constructor creates a builder with the name
21  * @param name Layer name
22  */
23  explicit MVNLayer(const std::string& name = "");
24  /**
25  * @brief The constructor creates a builder from generic builder
26  * @param layer pointer to generic builder
27  */
28  explicit MVNLayer(const Layer::Ptr& layer);
29  /**
30  * @brief The constructor creates a builder from generic builder
31  * @param layer constant pointer to generic builder
32  */
33  explicit MVNLayer(const Layer::CPtr& layer);
34  /**
35  * @brief Sets the name for the layer
36  * @param name Layer name
37  * @return reference to layer builder
38  */
39  MVNLayer& setName(const std::string& name);
40 
41  /**
42  * @brief Returns port with shapes for the layer
43  * @return Port with shapes
44  */
45  const Port& getPort() const;
46  /**
47  * @brief Sets port shapes for the layer
48  * @param port Port with shapes
49  * @return reference to layer builder
50  */
51  MVNLayer& setPort(const Port& port);
52  /**
53  * @brief Returns across channels value
54  * @return true if mean values are shared across channels
55  */
56  bool getAcrossChannels() const;
57  /**
58  * @brief Sets across channels
59  * @param flag true if mean values are shared across channels
60  * @return reference to layer builder
61  */
62  MVNLayer& setAcrossChannels(bool flag);
63  /**
64  * @brief Returns normalize variance
65  * @return true if variance normalization is performed
66  */
67  bool getNormalize() const;
68  /**
69  * @brief Sets normalize variance
70  * @param flag true if variance normalization is performed
71  * @return reference to layer builder
72  */
73  MVNLayer& setNormalize(bool flag);
74  /**
75  * @brief Return epsilon
76  * @return Epsilon
77  */
78  float getEpsilon() const;
79  /**
80  * @brief Sets epsilon
81  * @param eps Epsilon
82  * @return reference to layer builder
83  */
84  MVNLayer& setEpsilon(float eps);
85 };
86 
87 } // namespace Builder
88 } // namespace InferenceEngine
Definition: ie_argmax_layer.hpp:11