Publishing 2019 R3 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / include / quantize_inst.h
1 /*
2 // Copyright (c) 2019 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/quantize.hpp"
20 #include "primitive_inst.h"
21 #include <string>
22
23 namespace cldnn {
24
25 template <>
26 struct typed_program_node<quantize> : public typed_program_node_base<quantize> {
27     using parent = typed_program_node_base<quantize>;
28
29 public:
30     using parent::parent;
31
32     program_node& input(size_t index = 0) const { return get_dependency(index); }
33     size_t inputs_count() const { return get_dependencies().size(); }
34     void set_output_data_type(data_types dt) { out_dt = dt; dt_changed = true; }
35     data_types get_output_data_type() const { return out_dt; }
36     bool has_custom_out_dt() const { return dt_changed; }
37
38 private:
39     data_types out_dt;
40     bool dt_changed = false;
41 };
42
43 using quantize_node = typed_program_node<quantize>;
44
45 template <>
46 class typed_primitive_inst<quantize> : public typed_primitive_inst_base<quantize> {
47     using parent = typed_primitive_inst_base<quantize>;
48
49 public:
50     static layout calc_output_layout(quantize_node const& node);
51     static std::string to_string(quantize_node const& node);
52
53 public:
54     typed_primitive_inst(network_impl& network, quantize_node const& desc);
55 };
56
57 using quantize_inst = typed_primitive_inst<quantize>;
58
59 }  // namespace cldnn