309e7b249eb46d73d989da3117a8966efeb384c9
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / include / fully_connected_grad_input_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/fully_connected_grad_input.hpp"
20 #include "primitive_inst.h"
21 #include <string>
22
23 namespace cldnn {
24 template <>
25 struct typed_program_node<fully_connected_grad_input> : public typed_program_node_base<fully_connected_grad_input> {
26     using parent = typed_program_node_base<fully_connected_grad_input>;
27
28 public:
29     using parent::parent;
30
31     program_node& input() const { return get_dependency(0); }
32     program_node& weights() const { return get_dependency(2); }
33 };
34
35 using fully_connected_grad_input_node = typed_program_node<fully_connected_grad_input>;
36
37 template <>
38 class typed_primitive_inst<fully_connected_grad_input> : public typed_primitive_inst_base<fully_connected_grad_input> {
39     using parent = typed_primitive_inst_base<fully_connected_grad_input>;
40
41 public:
42     static layout calc_output_layout(fully_connected_grad_input_node const& node);
43     static std::string to_string(fully_connected_grad_input_node const& node);
44
45 public:
46     typed_primitive_inst(network_impl& network, fully_connected_grad_input_node const& node);
47
48     memory_impl& weights_memory() const { return dep_memory(2); }
49     bool bias_term() const { return false; }
50 };
51
52 using fully_connected_grad_input_inst = typed_primitive_inst<fully_connected_grad_input>;
53
54 }  // namespace cldnn