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