#include "cpu/reorder/cpu_reorder.hpp"
namespace dnnl {
namespace impl {
namespace cpu {
const impl_list_map_t ®ular_fp4_impl_list_map() {
static const impl_list_map_t the_map = REG_REORDER_P({
{{f32, f4_e2m1, 0}, {
REG_SR(f32, any, f4_e2m1, any, fmt_order::any, spec::reference)
nullptr,
}},
{{f4_e2m1, data_type::undef, 0}, {
REG_SR(f4_e2m1, any, f32, any, fmt_order::any, spec::reference)
nullptr,
}},
{{f32, f4_e3m0, 0}, {
REG_SR(f32, any, f4_e3m0, any, fmt_order::any, spec::reference)
nullptr,
}},
{{f4_e3m0, data_type::undef, 0}, {
REG_SR(f4_e3m0, any, f32, any, fmt_order::any, spec::reference)
nullptr,
}},
});
return the_map;
}
} } }