updated readme file due to moving CMake scripts to the root folder
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / actual_kernels / convolution / convolution_kernel_bfyx_3x3_dw_opt.h
1 // Copyright (c) 2017 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 "convolution_kernel_base.h"
19 #include <string>
20 #include <vector>
21
22 namespace kernel_selector {
23 class ConvolutionKernel_bfyx_3x3_dw_opt : public ConvolutionKernelBase {
24 public:
25     using Parent = ConvolutionKernelBase;
26     ConvolutionKernel_bfyx_3x3_dw_opt();
27     virtual ~ConvolutionKernel_bfyx_3x3_dw_opt() {}
28
29     KernelsData GetKernelsData(const Params& params, const optional_params& options) const override;
30     KernelsData GetKernelsDataForAutoTune(const Params& params, const optional_params& options) const override;
31     KernelsData GetTunedKernelsDataByIndex(const Params& params,
32                                                    const optional_params& options,
33                                                    int autoTuneIndex) const override;
34     ParamsKey GetSupportedKey() const override;
35
36 protected:
37     bool Validate(const Params&, const optional_params&) const override;
38     std::vector<WeightsLayout> GetSupportedWeightLayouts(const convolution_params&) const override {
39         return {WeightsLayout::oiyx};
40     }
41     JitConstants GetJitConstants(const convolution_params& params, const DispatchData& kd) const override;
42     DispatchData SetDefault(const convolution_params& params, int autoTuneIndex = -1) const override;
43
44     struct AutoTuneOption {
45         stSize tileDims;
46         std::string exeMode;
47     };
48
49     AutoTuneOption GetAutoTuneOptions(const Params& arg, int autoTuneIndex) const;
50     std::vector<AutoTuneOption> autoTuneOptions = {};
51 };
52 }  // namespace kernel_selector