Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / include / lstm_elt_inst.h
1 /*
2 // Copyright (c) 2016 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/lstm.hpp"
20 #include "primitive_inst.h"
21
22 namespace cldnn
23 {
24 template <>
25 struct typed_program_node<lstm_elt> : public typed_program_node_base<lstm_elt>
26 {
27     using parent = typed_program_node_base<lstm_elt>;
28
29 public:
30     using parent::parent;
31
32     program_node& input() const { return get_dependency(0); }
33     program_node& cell() const { return get_dependency(1); }
34     bool cell_term() const { return !get_primitive()->cell.empty(); }
35     int32_t offset_order() const { return get_primitive()->offset_order; }
36     float clip() const {
37         float clip_val = get_primitive()->clip;
38         if (clip_val < 0)
39             throw std::range_error("Clip value < 0");
40         return clip_val; 
41     }
42     bool input_forget() const { return get_primitive()->input_forget; }
43     int32_t direction() const { return get_primitive()->direction; }
44 };
45
46 using lstm_elt_node = typed_program_node<lstm_elt>;
47
48 template <>
49 class typed_primitive_inst<lstm_elt> : public typed_primitive_inst_base<lstm_elt>
50 {
51     using parent = typed_primitive_inst_base<lstm_elt>;
52
53 public:
54     static layout calc_output_layout(lstm_elt_node const& node);
55     static std::string to_string(lstm_elt_node const& node);
56
57 public:
58     typed_primitive_inst(network_impl& network, lstm_elt_node const& node);
59
60     memory_impl& cell_memory() const { return dep_memory(1); }
61     bool cell_term() const { return !argument.cell.empty(); }
62     int32_t offset_order() const { return argument.offset_order; }
63     float clip() const {
64         float clip_val = argument.clip;
65         if (clip_val < 0)
66             throw std::range_error("Clip value < 0");
67         return clip_val;
68     }
69     bool input_forget() const { return argument.input_forget; }
70     uint32_t direction() const { return argument.direction; }
71 };
72
73 using lstm_elt_inst = typed_primitive_inst<lstm_elt>;
74
75 }