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