Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / include / apply_adam_inst.h
1 /*
2 // Copyright (c) 2018 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 ///////////////////////////////////////////////////////////////////////////////////////////////////
18 #pragma once
19 #include "api/CPP/apply_adam.hpp"
20 #include "primitive_inst.h"
21
22 namespace cldnn
23 {
24
25 template <>
26 struct typed_program_node<apply_adam> : public typed_program_node_base<apply_adam>
27 {
28     typed_program_node(const std::shared_ptr<apply_adam> prim, program_impl& prog);
29     using parent = typed_program_node_base<apply_adam>;
30
31 public:
32     using parent::parent;
33
34     program_node& input() const { return get_dependency(0); }
35     program_node& m() const { return get_dependency(1); }
36     program_node& v() const { return get_dependency(2); }
37     program_node& beta1_power() const { return get_dependency(3); }
38     program_node& beta2_power() const { return get_dependency(4); }
39     program_node& additional_dep() const { return get_dependency(5); }
40
41     bool has_additional_dep() const { return get_dependencies().size() > 5; }
42 };
43
44 using apply_adam_node = typed_program_node<apply_adam>;
45
46 template <>
47 class typed_primitive_inst<apply_adam> : public typed_primitive_inst_base<apply_adam>
48 {
49     using parent = typed_primitive_inst_base<apply_adam>;
50
51 public:
52     static layout calc_output_layout(apply_adam_node const& node);
53     static std::string to_string(apply_adam_node const& node);
54
55 public:
56     typed_primitive_inst(network_impl& network, apply_adam_node const& node);
57
58     memory_impl& m_memory() const { return dep_memory(1); }
59     memory_impl& v_memory() const { return dep_memory(2); }
60     memory_impl& beta1_power_memory() const { return dep_memory(3); }
61     memory_impl& beta2_power_memory() const { return dep_memory(4); }
62     memory_impl& additional_dep() const { return dep_memory(5); }
63
64     bool has_additional_dep() const { return _deps.size() > 5; }
65 };
66
67 using apply_adam_inst = typed_primitive_inst<apply_adam>;
68
69 }