Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / include / custom_gpu_primitive_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/custom_gpu_primitive.hpp"
20 #include "primitive_inst.h"
21
22 namespace cldnn
23 {
24
25 template <>
26 struct typed_program_node<custom_gpu_primitive> : public typed_program_node_base<custom_gpu_primitive>
27 {
28     using parent = typed_program_node_base<custom_gpu_primitive>;
29 public:
30     using parent::parent;
31
32     program_node& input(size_t idx = 0) const { return get_dependency(idx); }
33 };
34
35 using custom_gpu_primitive_node = typed_program_node<custom_gpu_primitive>;
36
37 template <>
38 class typed_primitive_inst<custom_gpu_primitive> : public typed_primitive_inst_base<custom_gpu_primitive>
39 {
40     using parent = typed_primitive_inst_base<custom_gpu_primitive>;
41
42 public:
43     static layout calc_output_layout(custom_gpu_primitive_node const& node)
44     {
45         assert((bool)node.get_primitive()->output_data_type == false
46                && "Output data type forcing is not supported for "
47                   "custom_gpu_primitive_node!");
48         layout output_layout = node.get_primitive()->output_layout;
49         
50         // if the output layout format was set to any, it means the layer output format will be the same as the first input
51         if (output_layout.format == format::any)
52         {
53             output_layout.format = node.get_dependency(0).get_output_layout().format;
54         }
55         return output_layout;
56     }
57
58     static std::string to_string(custom_gpu_primitive_node const& node);
59
60 public:
61     typed_primitive_inst(network_impl& network, custom_gpu_primitive_node const& node);
62 };
63
64 using custom_gpu_primitive_inst = typed_primitive_inst<custom_gpu_primitive>;
65
66 }