1/*******************************************************************************
2* Copyright 2020-2022 Intel Corporation
3* Copyright 2022 FUJITSU LIMITED
4*
5* Licensed under the Apache License, Version 2.0 (the "License");
6* you may not use this file except in compliance with the License.
7* You may obtain a copy of the License at
8*
9* http://www.apache.org/licenses/LICENSE-2.0
10*
11* Unless required by applicable law or agreed to in writing, software
12* distributed under the License is distributed on an "AS IS" BASIS,
13* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14* See the License for the specific language governing permissions and
15* limitations under the License.
16*******************************************************************************/
17
18#include "cpu/reorder/cpu_reorder.hpp"
19
20namespace dnnl {
21namespace impl {
22namespace cpu {
23
24// clang-format off
25
26const impl_list_map_t &regular_f32_s8_impl_list_map() {
27 static const impl_list_map_t the_map = REG_REORDER_P({
28 // f32 -> s8
29 {{f32, s8, 0}, {
30 CPU_REORDER_INSTANCE(rnn_data_reorder_t<f32, s8>)
31 CPU_REORDER_INSTANCE(rnn_weights_reorder_s8_t<f32>)
32 CPU_REORDER_INSTANCE(rnn_brgemm_weights_reorder_s8_t<f32, s8>)
33
34 REG_FAST_DIRECT_COPY(f32, s8)
35
36 DNNL_X64_ONLY(CPU_REORDER_INSTANCE(x64::jit_blk_reorder_t))
37 DNNL_X64_ONLY(CPU_REORDER_INSTANCE(x64::jit_uni_reorder_t))
38
39 DNNL_AARCH64_ONLY(CPU_REORDER_INSTANCE(aarch64::jit_blk_reorder_t))
40 DNNL_AARCH64_ONLY(CPU_REORDER_INSTANCE(aarch64::jit_uni_reorder_t))
41
42 DNNL_NON_X64_ONLY(REG_SR_BIDIR(f32, any, s8, nChw16c))
43 DNNL_NON_X64_ONLY(REG_SR_BIDIR(f32, any, s8, OIhw4i16o4i))
44 DNNL_NON_X64_ONLY(REG_SR_BIDIR(f32, any, s8, gOIhw4i16o4i))
45
46 REG_SR(f32, any, s8, any, fmt_order::any, spec::reference)
47
48 nullptr,
49 }},
50 });
51 return the_map;
52}
53
54// clang-format on
55
56} // namespace cpu
57} // namespace impl
58} // namespace dnnl
59