Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / actual_kernels / reorg_yolo / reorg_yolo_kernel_ref.h
1 /*
2 // Copyright (c) 2018 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 #pragma once
18
19 #include "common_kernel_base.h"
20 #include "kernel_selector_params.h"
21  
22 namespace kernel_selector 
23 {    
24     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
25     // reorg_yolo_params
26     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
27     struct reorg_yolo_params : public base_params
28     {
29         reorg_yolo_params() : base_params(KernelType::REORG_YOLO) {}
30
31         uint32_t stride;
32
33         virtual ParamsKey GetParamsKey() const
34         {
35             auto k = base_params::GetParamsKey();
36             return k;
37         }
38     };
39
40     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
41     // reorg_yolo_optional_params
42     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
43     struct reorg_yolo_optional_params : optional_params
44     {
45         reorg_yolo_optional_params() : optional_params(KernelType::REORG_YOLO) {}
46     };
47
48     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
49     // ReorgYoloKernelRef
50     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
51     class ReorgYoloKernelRef : public common_kernel_base
52     {
53     public:
54         ReorgYoloKernelRef() : common_kernel_base("reorg_yolo_gpu_ref") {}
55         virtual ~ReorgYoloKernelRef() {}
56
57         using DispatchData = CommonDispatchData;        
58         virtual KernelsData GetKernelsData(const Params& params, const optional_params& options) const override;
59
60     protected:
61         virtual ParamsKey GetSupportedKey() const override;
62         virtual JitConstants GetJitConstants(const reorg_yolo_params& params) const;
63     };
64 }