912fe7abc780f20eb3c1117d26d5b6c5508332d4
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / gpu / gather_gpu.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 "gather_inst.h"
18 #include "primitive_gpu_base.h"
19 #include "implementation_map.h"
20 #include "kernel_selector_helper.h"
21 #include "gather/gather_kernel_selector.h"
22 #include "gather/gather_kernel_ref.h"
23 #include "error_handler.h"
24
25 using namespace cldnn;
26
27 namespace cldnn {
28 namespace gpu {
29 kernel_selector::gather_axis convert_axis(gather::gather_axis axis) {
30     switch (axis) {
31         case gather::along_x:
32             return kernel_selector::gather_axis::X;
33         case gather::along_y:
34             return kernel_selector::gather_axis::Y;
35         case gather::along_f:
36             return kernel_selector::gather_axis::FEATURE;
37         case gather::along_b:
38             return kernel_selector::gather_axis::BATCH;
39         default:
40             return kernel_selector::gather_axis::X;
41     }
42 }
43
44 struct gather_gpu : typed_primitive_gpu_impl<gather> {
45     using parent = typed_primitive_gpu_impl<gather>;
46     using parent::parent;
47
48 public:
49     static primitive_impl* create(const gather_node& arg) {
50         auto gather_params = get_default_params<kernel_selector::gather_params>(arg);
51         auto gather_optional_params =
52             get_default_optional_params<kernel_selector::gather_optional_params>(arg.get_program());
53
54         gather_params.axis = convert_axis(arg.get_primitive()->axis);
55
56         gather_params.inputs.push_back(convert_data_tensor(arg.input(1).get_output_layout()));
57
58         auto& kernel_selector = kernel_selector::gather_kernel_selector::Instance();
59         auto best_kernels = kernel_selector.GetBestKernels(gather_params, gather_optional_params);
60
61         CLDNN_ERROR_BOOL(arg.id(),
62                          "Best_kernel.empty()",
63                          best_kernels.empty(),
64                          "Cannot find a proper kernel with this arguments");
65
66         auto gather = new gather_gpu(arg, best_kernels[0]);
67
68         return gather;
69     }
70 };
71
72 namespace {
73 struct attach {
74     attach() {
75         auto val_fw = gather_gpu::create;
76         implementation_map<gather>::add(std::make_tuple(engine_types::ocl, data_types::f32, format::bfyx), val_fw);
77         implementation_map<gather>::add(std::make_tuple(engine_types::ocl, data_types::f16, format::bfyx), val_fw);
78     }
79     ~attach() = default;
80 };
81 attach attach_impl;
82 }  // namespace
83 }  // namespace gpu
84 }  // namespace cldnn