1/*******************************************************************************
2* Copyright 2021-2022 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 "gpu/gpu_impl_list.hpp"
18
19#include "gpu/ocl/gen9_global_pooling.hpp"
20#include "gpu/ocl/gen9_pooling.hpp"
21#include "gpu/ocl/ref_pooling.hpp"
22
23namespace dnnl {
24namespace impl {
25namespace gpu {
26
27namespace {
28using namespace dnnl::impl::prop_kind;
29
30// clang-format off
31const std::map<pk_impl_key_t, std::vector<impl_list_item_t>>
32 impl_list_map REG_POOLING_P({
33 {{forward}, {
34 INSTANCE(ocl::gen9_global_pooling_fwd_t)
35 INSTANCE(ocl::gen9_pooling_fwd_t)
36 INSTANCE(ocl::ref_pooling_fwd_t)
37 nullptr,
38 }},
39 {{backward}, REG_BWD_PK({
40 INSTANCE(ocl::gen9_global_pooling_bwd_t)
41 INSTANCE(ocl::gen9_pooling_bwd_t)
42 INSTANCE(ocl::ref_pooling_bwd_t)
43 nullptr,
44 })},
45});
46// clang-format on
47} // namespace
48
49const impl_list_item_t *get_pooling_impl_list(const pooling_desc_t *desc) {
50 static const impl_list_item_t empty_list[] = {nullptr};
51
52 const bool is_fwd = utils::one_of(
53 desc->prop_kind, forward_training, forward_inference);
54 prop_kind_t prop_kind = is_fwd ? forward : backward;
55
56 const auto impl_list_it = impl_list_map.find({prop_kind});
57 return impl_list_it != impl_list_map.cend() ? impl_list_it->second.data()
58 : empty_list;
59}
60
61} // namespace gpu
62} // namespace impl
63} // namespace dnnl
64