Publishing 2019 R3 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / actual_kernels / convolution / convolution_kernel_bfyx_f16_1x1.h
1 // Copyright (c) 2016-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
16 #pragma once
17
18 #include "convolution_kernel_base.h"
19 #include <vector>
20 #include <string>
21
22 namespace kernel_selector {
23
24 class ConvolutionKernel_bfyx_f16_1x1 : public ConvolutionKernelBase {
25 public:
26     using Parent = ConvolutionKernelBase;
27
28     ConvolutionKernel_bfyx_f16_1x1();
29     virtual ~ConvolutionKernel_bfyx_f16_1x1() {}
30
31     KernelsData GetKernelsData(const Params& params, const optional_params& options) const override;
32     ParamsKey GetSupportedKey() const override;
33
34 protected:
35     std::vector<WeightsLayout> GetSupportedWeightLayouts(const convolution_params&) const override {
36         return {WeightsLayout::o_i_yx_i16_o16};
37     }
38     bool Validate(const Params& p, const optional_params& o) const override;
39     DispatchData SetDefault(const convolution_params& arg, int autoTuneIndex = -1) const override;
40     JitConstants GetJitConstants(const convolution_params& params, const DispatchData& kd) const override;
41
42     struct AutoTuneOption {
43         size_t blockWidth;
44         std::string exeMode;
45     };
46
47     std::vector<AutoTuneOption> autoTuneOptions;
48     AutoTuneOption GetAutoTuneOptions(const Params& arg, int autoTuneIndex) const;
49 };
50 }  // namespace kernel_selector