e5d7e01115ab96f46e921710e2797823ca27e1bc
[platform/upstream/dldt.git] / ngraph / core / src / op / mish.cpp
1 //*****************************************************************************
2 // Copyright 2017-2020 Intel Corporation
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //*****************************************************************************
16
17 #include "itt.hpp"
18
19 #include "ngraph/attribute_visitor.hpp"
20 #include "ngraph/op/mish.hpp"
21
22 #include "ngraph/runtime/host_tensor.hpp"
23 #include "ngraph/runtime/reference/mish.hpp"
24
25 using namespace std;
26 using namespace ngraph;
27
28 constexpr NodeTypeInfo op::v4::Mish::type_info;
29
30 op::v4::Mish::Mish(const Output<Node>& arg)
31     : Op({arg})
32 {
33     constructor_validate_and_infer_types();
34 }
35
36 bool op::v4::Mish::visit_attributes(AttributeVisitor& visitor)
37 {
38     return true;
39 }
40
41 void op::v4::Mish::validate_and_infer_types()
42 {
43     set_output_size(1);
44     set_output_type(0, get_input_element_type(0), get_input_partial_shape(0));
45 }
46
47 shared_ptr<Node> op::v4::Mish::clone_with_new_inputs(const OutputVector& new_args) const
48 {
49     check_new_args_count(this, new_args);
50     return make_shared<Mish>(new_args.at(0));
51 }
52
53 namespace
54 {
55     template <element::Type_t ET>
56     inline bool evaluate(const HostTensorPtr& arg0, const HostTensorPtr& out, const size_t count)
57     {
58         using T = typename element_type_traits<ET>::value_type;
59         runtime::reference::mish<T>(arg0->get_data_ptr<ET>(), out->get_data_ptr<ET>(), count);
60         return true;
61     }
62
63     bool evaluate_mish(const HostTensorPtr& arg0, const HostTensorPtr& out, const size_t count)
64     {
65         bool rc = true;
66         out->set_unary(arg0);
67
68         switch (arg0->get_element_type())
69         {
70             TYPE_CASE(f16)(arg0, out, count);
71             break;
72             TYPE_CASE(f32)(arg0, out, count);
73             break;
74         default: rc = false; break;
75         }
76         return rc;
77     }
78 }
79
80 bool op::v4::Mish::evaluate(const HostTensorVector& outputs, const HostTensorVector& inputs) const
81 {
82     OV_ITT_SCOPED_TASK(itt::domains::nGraphOp, "op::v4::Mish::evaluate");
83     return evaluate_mish(inputs[0], outputs[0], shape_size(get_output_shape(0)));
84 }