Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / gpu / permute_gpu.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 "permute_inst.h"
18 #include "primitive_gpu_base.h"
19 #include "implementation_map.h"
20 #include "error_handler.h"
21 #include "kernel_selector_helper.h"
22 #include "permute/permute_kernel_selector.h"
23 #include "permute/permute_kernel_ref.h"
24
25 using namespace cldnn;
26
27 namespace cldnn { namespace gpu {
28
29 struct permute_gpu : typed_primitive_gpu_impl<permute>
30 {
31     using parent = typed_primitive_gpu_impl<permute>;
32     using parent::parent;
33
34     static primitive_impl* create(const permute_node& arg)
35     {
36         auto permute_params = get_default_params<kernel_selector::permute_params>(arg);
37         auto permute_optional_params = get_default_optional_params<kernel_selector::permute_optional_params>(arg.get_program());
38
39         const auto& permute_order = arg.get_primitive()->permute_order;
40         permute_params.order = permute_order;
41         auto& kernel_selector = kernel_selector::permute_kernel_selector::Instance();
42         auto best_kernels = kernel_selector.GetBestKernels(permute_params, permute_optional_params);
43
44         CLDNN_ERROR_BOOL(arg.id(), "Best_kernel.empty()", best_kernels.empty(), "Cannot find a proper kernel with this arguments");
45
46         auto permute = new permute_gpu(arg, best_kernels[0]);
47
48         return permute;
49     }
50 };
51
52 namespace {
53     struct attach {
54         attach() {
55             implementation_map<permute>::add({
56                 { engine_types::ocl, permute_gpu::create },
57             });
58         }
59         ~attach() {}
60     };
61     attach attach_impl;
62 }
63 } }