Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / include / broadcast_inst.h
1 // Copyright (c) 2018 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/CPP/broadcast.hpp>
19
20 #include "primitive_inst.h"
21
22
23 namespace cldnn
24 {
25 template <>
26 struct typed_program_node<broadcast> : typed_program_node_base<broadcast>
27 {
28 private:
29     using parent = typed_program_node_base<broadcast>;
30
31 public:
32     using parent::parent;
33
34     typed_program_node(const std::shared_ptr<broadcast> prim, program_impl& prog) : parent(prim, prog) { support_padding(true); }
35     program_node& input() const { return get_dependency(0); }
36 };
37
38 using broadcast_node = typed_program_node<broadcast>;
39
40
41 template <>
42 class typed_primitive_inst<broadcast> : public typed_primitive_inst_base<broadcast>
43 {
44     using parent = typed_primitive_inst_base<broadcast>;
45
46 public:
47     static layout calc_output_layout(broadcast_node const& node);
48     static std::string to_string(broadcast_node const& node);
49     typed_primitive_inst(network_impl& network, broadcast_node const& node);
50 };
51
52 using broadcast_inst = typed_primitive_inst<broadcast>;
53 }