Publishing 2019 R3 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / actual_kernels / one_hot / one_hot_kernel_base.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 #pragma once
16
17 #include "common_kernel_base.h"
18 #include "kernel_selector_params.h"
19
20 namespace kernel_selector {
21 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
22 // one_hot_params
23 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
24 struct one_hot_params : public base_params {
25     one_hot_params() : base_params(KernelType::ONE_HOT),
26     one_hot_axis(0), one_hot_limit(0), on_value(1.0), off_value(1.0) {}
27     uint16_t one_hot_axis;
28     int32_t one_hot_limit;
29     float on_value;
30     float off_value;
31 };
32
33 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
34 // one_hot_optional_params
35 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
36 struct one_hot_optional_params : optional_params {
37     one_hot_optional_params() : optional_params(KernelType::ONE_HOT) {}
38 };
39
40 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
41 // OneHotKernelBase
42 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
43 class OneHotKernelBase : public common_kernel_base {
44 public:
45     using common_kernel_base::common_kernel_base;
46
47     using DispatchData = CommonDispatchData;
48
49 protected:
50     JitConstants GetJitConstants(const one_hot_params& params) const;
51     static DispatchData SetDefault(const one_hot_params& params);
52     KernelsData GetCommonKernelsData(const Params& params, const optional_params&, float estimated_time) const;
53 };
54 }  // namespace kernel_selector