onednn-src 0.1.13

Source of oneAPI Deep Neural Network Library (oneDNN)
Documentation
/*******************************************************************************
* Copyright 2023 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/

#include "cpu/reorder/cpu_reorder.hpp"

namespace dnnl {
namespace impl {
namespace cpu {

// clang-format off

const impl_list_map_t &regular_fp8_impl_list_map() {
    static const impl_list_map_t the_map = REG_REORDER_P({
        // f8_e5m2 ->
        {{f8_e5m2, data_type::undef, 0}, {
            DNNL_X64_ONLY(CPU_REORDER_INSTANCE(x64::jit_uni_reorder_direct_copy_t))
            DNNL_X64_ONLY(CPU_REORDER_INSTANCE(x64::jit_blk_reorder_t))
            DNNL_X64_ONLY(CPU_REORDER_INSTANCE(x64::jit_uni_reorder_t))

            REG_SR(f8_e5m2, any, f8_e5m2, any, fmt_order::any, spec::reference)
            REG_SR(f8_e5m2, any, f16, any, fmt_order::any, spec::reference)
            REG_SR(f8_e5m2, any, bf16, any, fmt_order::any, spec::reference)
            REG_SR(f8_e5m2, any, f32, any, fmt_order::any, spec::reference)

            nullptr,
        }},
        // f8_e4m3 ->
        {{f8_e4m3, data_type::undef, 0}, {
            DNNL_X64_ONLY(CPU_REORDER_INSTANCE(x64::jit_uni_reorder_direct_copy_t))
            DNNL_X64_ONLY(CPU_REORDER_INSTANCE(x64::jit_blk_reorder_t))
            DNNL_X64_ONLY(CPU_REORDER_INSTANCE(x64::jit_uni_reorder_t))

            REG_SR(f8_e4m3, any, f8_e4m3, any, fmt_order::any, spec::reference)
            REG_SR(f8_e4m3, any, f16, any, fmt_order::any, spec::reference)
            REG_SR(f8_e4m3, any, bf16, any, fmt_order::any, spec::reference)
            REG_SR(f8_e4m3, any, f32, any, fmt_order::any, spec::reference)

            nullptr,
        }},
        // e8m0 -> f32
        {{e8m0, f32, 0}, {
            REG_SR(e8m0, any, f32, any, fmt_order::any, spec::reference)
            nullptr,
        }},

    });
    return the_map;
}

// clang-format on

} // namespace cpu
} // namespace impl
} // namespace dnnl