Publishing R3
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / actual_kernels / reorder / reorder_weights_kernel.cpp
1 /*
2 // Copyright (c) 2016 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 "kernel_selector_common.h"
18 #include "reorder_weights_kernel.h"
19 #include "kernel_selector_utils.h" 
20  
21 namespace kernel_selector 
22 {
23     ParamsKey ReorderWeightsKernel::GetSupportedKey() const
24     {
25         ParamsKey k;
26         k.EnableInputWeightsType(WeightsType::INT8);
27         k.EnableInputWeightsType(WeightsType::F16);
28         k.EnableInputWeightsType(WeightsType::F32);
29         k.EnableOutputWeightsType(WeightsType::INT8);
30         k.EnableOutputWeightsType(WeightsType::F16);
31         k.EnableOutputWeightsType(WeightsType::F32);
32         k.EnableAllInputWeightsLayout();
33         k.EnableAllOutputWeightsLayout();
34         k.EnableDifferentTypes();
35         k.EnableTensorOffset();
36         k.EnableTensorPitches();
37         return k;
38     }
39
40     KernelsData ReorderWeightsKernel::GetKernelsData(const Params& params, const optional_params& options) const
41     {
42         const reorder_weights_params& orgParams = static_cast<const reorder_weights_params&>(params);
43         return GetCommonKernelsData(orgParams, options, DONT_USE_IF_HAVE_SOMETHING_ELSE);
44     }
45 }