Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / actual_kernels / eltwise / eltwise_kernel_ref.cpp
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 #include "eltwise_kernel_ref.h"
18 #include "kernel_selector_utils.h"
19
20 namespace kernel_selector {
21
22     ParamsKey EltwiseKernelRef::GetSupportedKey() const
23     {
24         ParamsKey k;
25         k.EnableInputDataType(Datatype::F16);
26         k.EnableInputDataType(Datatype::F32);
27         k.EnableInputDataType(Datatype::INT8);
28         k.EnableInputDataType(Datatype::INT32);
29         k.EnableInputDataType(Datatype::INT64);
30         k.EnableOutputDataType(Datatype::F16);
31         k.EnableOutputDataType(Datatype::F32);
32         k.EnableOutputDataType(Datatype::INT8);
33         k.EnableOutputDataType(Datatype::INT32);
34         k.EnableOutputDataType(Datatype::INT64);
35         k.EnableDifferentTypes();
36         k.EnableAllInputLayout();
37         k.EnableAllOutputLayout();
38         k.EnableTensorOffset();
39         k.EnableTensorPitches();
40         k.EnableBatching();
41         k.EnableInt8Quantization();
42         k.EnableOutputCalibration();
43         k.EnableEltwiseStride();
44         k.EnableEltwiseBroadcast();
45         return k;
46     }
47
48     bool EltwiseKernelRef::Validate(const Params& p, const optional_params& o) const
49     {
50         if (!EltwiseKernelBase::Validate(p, o))
51         {
52             return false;
53         }
54
55         const eltwise_params& params = static_cast<const eltwise_params&>(p);
56         for (size_t i = 0; i < params.inputs.size(); i++)
57         {
58             if (params.inputs[i].GetLayout() == DataLayout::fs_bs_yx_bsv4_fsv32)
59                 return false;
60         }
61         if (params.output.GetLayout() == DataLayout::fs_bs_yx_bsv4_fsv32 ||
62             params.output.GetLayout() == DataLayout::b_fs_yx_fsv4)
63             return false;
64
65         return true;
66     }
67
68     KernelsData EltwiseKernelRef::GetKernelsData(const Params& params, const optional_params& options) const
69     {
70         return GetCommonKernelsData(params, options);
71     }
72 }