Publishing 2019 R3 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / include / contract_inst.h
1 // Copyright (c) 2019 Intel Corporation
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 ///////////////////////////////////////////////////////////////////////////////////////////////////
16 #pragma once
17
18 #include <api/contract.hpp>
19
20 #include "primitive_inst.h"
21 #include <string>
22 #include <memory>
23
24 namespace cldnn {
25 template <>
26 struct typed_program_node<contract> : typed_program_node_base<contract> {
27 private:
28     using parent = typed_program_node_base<contract>;
29
30 public:
31     using parent::parent;
32
33     typed_program_node(const std::shared_ptr<contract> prim, program_impl& prog) : parent(prim, prog) {
34         support_padding_all(true);
35     }
36     program_node& input() const { return get_dependency(0); }
37 };
38
39 using contract_node = typed_program_node<contract>;
40
41 template <>
42 class typed_primitive_inst<contract> : public typed_primitive_inst_base<contract> {
43     using parent = typed_primitive_inst_base<contract>;
44
45 public:
46     static layout calc_output_layout(contract_node const& node);
47     static std::string to_string(contract_node const& node);
48     typed_primitive_inst(network_impl& network, contract_node const& node);
49 };
50
51 using contract_inst = typed_primitive_inst<contract>;
52 }  // namespace cldnn