#ifndef CPU_X64_JIT_AVX512_COMMON_1X1_CONVOLUTION_HPP
#define CPU_X64_JIT_AVX512_COMMON_1X1_CONVOLUTION_HPP
#include "common/c_types_map.hpp"
#include "common/dnnl_thread.hpp"
#include "common/memory_tracking.hpp"
#include "common/primitive.hpp"
#include "common/primitive_hashing.hpp"
#include "common/utils.hpp"
#include "cpu/cpu_convolution_pd.hpp"
#include "cpu/dw_convolution_utils.hpp"
#include "cpu/platform.hpp"
#include "cpu/x64/cpu_reducer.hpp"
#include "cpu/x64/jit_avx512_common_1x1_conv_kernel.hpp"
#include "cpu/x64/jit_transpose_utils.hpp"
#include "cpu/x64/jit_uni_1x1_conv_utils.hpp"
#include "cpu/x64/jit_uni_dw_convolution.hpp"
namespace dnnl {
namespace impl {
namespace cpu {
namespace x64 {
template <impl::data_type_t src_type, impl::data_type_t wei_type = src_type,
impl::data_type_t dst_type = src_type>
struct jit_avx512_common_1x1_convolution_fwd_t : public primitive_t {
struct pd_t : public cpu_convolution_fwd_pd_t {
using cpu_convolution_fwd_pd_t::cpu_convolution_fwd_pd_t;
pd_t(const pd_t &other) : cpu_convolution_fwd_pd_t(other) {
if (copy(other) != status::success) is_initialized_ = false;
}
DECLARE_COMMON_PD_T(JIT_IMPL_NAME_HELPER("jit_1x1:", avx512_core, ""),
jit_avx512_common_1x1_convolution_fwd_t);
status_t init(engine_t *engine) {
using namespace utils;
VDISPATCH_CONV(is_fwd(), VERBOSE_BAD_PROPKIND);
VDISPATCH_CONV(expect_data_types(src_type, wei_type, dst_type,
dst_type, data_type::undef),
VERBOSE_UNSUPPORTED_DT);
VDISPATCH_CONV(set_default_alg_kind(alg_kind::convolution_direct),
VERBOSE_BAD_ALGORITHM);
VDISPATCH_CONV(!has_zero_dim_memory(), VERBOSE_EMPTY_TENSOR, "");
VDISPATCH_CONV(
attr()->has_default_values(
primitive_attr_t::skip_mask_t::post_ops, dst_type),
VERBOSE_UNSUPPORTED_ATTR);
VDISPATCH_CONV(set_default_formats(), VERBOSE_UNSUPPORTED_TAG);
VDISPATCH_CONV(
attr_.set_default_formats(dst_md(0)) == status::success,
VERBOSE_UNSUPPORTED_POSTOP);
const convolution_desc_t *conv_d = desc();
const memory_desc_t *src_d = src_md();
rtus_prepare(this, conv_d, src_d, dst_md(), weights_md());
CHECK(jit_avx512_common_1x1_conv_kernel_t::init_conf(jcp_, *conv_d,
*src_d, *weights_md(), *dst_md(), *attr(),
dnnl_get_max_threads(), rtus_.reduce_src_));
if (jcp_.with_dw_conv) CHECK(depthwise_po_init(engine));
auto scratchpad = scratchpad_registry().registrar();
jit_avx512_common_1x1_conv_kernel_t::init_scratchpad(
scratchpad, jcp_);
rtus_prepare_space_info(this, scratchpad, jcp_.nthr);
return status::success;
}
const memory_desc_t *dst_1x1_md(int index = 0) const {
return cpu_convolution_fwd_pd_t::dst_md(index);
}
const memory_desc_t *dst_md(
int index = 0, bool user_input = false) const override {
return dw_conv_pd_ && jcp_.with_dw_conv
? dw_conv_pd_->dst_md(index, user_input)
: cpu_convolution_fwd_pd_t::dst_md(index, user_input);
}
const memory_desc_t *arg_md(
int arg, bool user_input = false) const override {
if (dw_conv_pd_ && jcp_.with_dw_conv) {
switch (arg) {
case DNNL_ARG_ATTR_POST_OP_DW | DNNL_ARG_SRC:
return cpu_convolution_fwd_pd_t::dst_md(0, user_input);
case DNNL_ARG_ATTR_POST_OP_DW | DNNL_ARG_WEIGHTS:
return dw_conv_pd_->weights_md(0);
case DNNL_ARG_ATTR_POST_OP_DW | DNNL_ARG_BIAS:
return dw_conv_pd_->weights_md(1);
default: break;
}
}
return convolution_fwd_pd_t::arg_md(arg, user_input);
}
arg_usage_t arg_usage(int arg) const override {
if (arg == (DNNL_ARG_ATTR_POST_OP_DW | DNNL_ARG_WEIGHTS))
return arg_usage_t::input;
if (arg == (DNNL_ARG_ATTR_POST_OP_DW | DNNL_ARG_BIAS))
return attr_post_op_dw_inputs() > 1 ? arg_usage_t::input
: arg_usage_t::unused;
return convolution_fwd_pd_t::arg_usage(arg);
}
jit_1x1_conv_conf_t jcp_ = utils::zero<decltype(jcp_)>();
reduce_to_unit_stride_t rtus_ = utils::zero<decltype(rtus_)>();
using dw_pd_t = jit_avx512_common_dw_convolution_fwd_t::pd_t;
std::unique_ptr<dw_pd_t> dw_conv_pd_;
protected:
bool set_default_formats() {
using namespace format_tag;
const memory_desc_wrapper src_d(&src_md_);
const memory_desc_wrapper dst_d(&dst_md_);
const auto dat_tag_nxc = utils::pick(ndims() - 3, nwc, nhwc, ndhwc);
const auto dat_tag_nCx16c
= utils::pick(ndims() - 3, nCw16c, nChw16c, nCdhw16c);
const auto curr_src_tag
= src_d.matches_one_of_tag(dat_tag_nxc, dat_tag_nCx16c);
const auto curr_dst_tag
= dst_d.matches_one_of_tag(dat_tag_nxc, dat_tag_nCx16c);
const auto is_data_layout_nxc
= IMPLICATION(curr_src_tag != dat_tag_nxc,
src_d.format_kind() == format_kind::any)
&& IMPLICATION(curr_dst_tag != dat_tag_nxc,
dst_d.format_kind() == format_kind::any)
&& utils::one_of(dat_tag_nxc, curr_src_tag, curr_dst_tag);
auto dat_tag = is_data_layout_nxc ? dat_tag_nxc : dat_tag_nCx16c;
auto wei_tag = utils::pick(2 * ndims() - 6 + with_groups(),
OIw16i16o, gOIw16i16o, OIhw16i16o, gOIhw16i16o, OIdhw16i16o,
gOIdhw16i16o);
return set_default_formats_common(dat_tag, wei_tag, dat_tag);
}
status_t copy(const pd_t &other) {
jcp_ = other.jcp_;
rtus_ = other.rtus_;
if (other.dw_conv_pd_) {
dw_conv_pd_.reset(other.dw_conv_pd_->clone());
if (!dw_conv_pd_) return status::out_of_memory;
}
return status::success;
}
status_t depthwise_po_init(engine_t *engine) {
using namespace memory_tracking;
auto &jcp_1x1 = jcp_;
primitive_attr_t attr_1x1(*attr());
if (!attr_1x1.is_initialized()) return status::out_of_memory;
const auto &src_md = dst_md_;
const memory_desc_wrapper src_d(src_md);
const auto nthr = dnnl_get_max_threads();
auto l2_cache = platform::get_per_core_cache_size(2) * nthr;
VDISPATCH_CONV_IC(
attr_1x1.post_ops_.find(primitive_kind::sum) == -1,
VERBOSE_UNSUPPORTED_POSTOP);
VDISPATCH_CONV_IC(l2_cache * 2 < src_d.size(),
VERBOSE_1x1CONV_HEURISTIC_FAIL, "cache size check failed");
VDISPATCH_CONV_IC(jcp_1x1.load_grp_count < 2,
VERBOSE_1x1CONV_HEURISTIC_FAIL, "load group count > 1");
int dw_po_index
= attr_1x1.post_ops_.find(primitive_kind::convolution);
convolution_desc_t cd_dw;
primitive_attr_t attr_dw;
CHECK(get_depthwise_conv_desc(
cd_dw, src_md, attr_1x1, attr_dw, dw_po_index));
CHECK(safe_ptr_assign(
dw_conv_pd_, new dw_pd_t(&cd_dw, &attr_dw, nullptr)));
CHECK(dw_conv_pd_->init(engine));
auto &jcp_dw = dw_conv_pd_->jcp_;
VDISPATCH_CONV_IC(
dnnl_memory_desc_equal(&src_md, dw_conv_pd_->src_md(0)),
VERBOSE_INCONSISTENT_MDS, "src_md", "dw_conv_pd_->src_md");
VDISPATCH_CONV_IC(
jcp_1x1.oc_without_padding % jcp_1x1.oc_block == 0,
VERBOSE_1x1CONV_HEURISTIC_FAIL,
"output-channel is not an exact multiple of oc_block");
VDISPATCH_CONV_IC(
IMPLICATION(jcp_dw.ow_block, jcp_dw.ow_block == jcp_dw.ow),
VERBOSE_1x1CONV_HEURISTIC_FAIL,
"ow_block does not equal output-width");
assert(dw_conv_pd_->dst_md(0)->format_kind != format_kind::any);
assert(dw_conv_pd_->weights_md(0)->format_kind != format_kind::any);
assert(IMPLICATION(
dw_conv_pd_->weights_md(1)->data_type != data_type::undef,
dw_conv_pd_->weights_md(1)->format_kind
!= format_kind::any));
jcp_dw.is_fused_conv = true;
while (jcp_1x1.nb_load % jcp_1x1.nb_load_blocking != 0)
--jcp_1x1.nb_load_blocking;
jcp_1x1.nb_load_blocking_max = jcp_1x1.nb_load_blocking;
while (jcp_1x1.nb_load_blocking % jcp_dw.nb_ch_blocking != 0)
--jcp_dw.nb_ch_blocking;
jcp_dw.dw_conv_buffer_oc
= jcp_1x1.nb_load_blocking * jcp_1x1.oc_block;
const auto dat_tag_nxc = utils::pick(ndims() - 3, format_tag::nwc,
format_tag::nhwc, format_tag::ndhwc);
const bool is_data_nxc = utils::everyone_is(
dat_tag_nxc, jcp_1x1.src_tag, jcp_1x1.dst_tag);
if (!is_data_nxc)
jcp_1x1.bcast_loop_output_step = jcp_1x1.ur * jcp_1x1.load_block
* jcp_1x1.typesize_out;
registrar_t scratchpad(scratchpad_registry_);
registrar_t dw_scratchpad(scratchpad, names::prefix_fusion);
size_t dw_conv_buffer_size_ = (size_t)nthr * jcp_dw.kh * jcp_dw.iw
* jcp_dw.dw_conv_buffer_oc;
assert(dw_conv_buffer_size_);
dw_scratchpad.book(memory_tracking::names::key_fusion_inout_buffer,
dw_conv_buffer_size_,
types::data_type_size(dw_conv_pd_->src_md()->data_type));
jit_uni_dw_conv_fwd_kernel_t<avx512_core,
data_type::f32>::init_scratchpad(dw_scratchpad, jcp_dw);
return status::success;
}
};
template <cpu_isa_t isa, typename conv_t>
friend status_t init_rtus_driver(conv_t *self);
jit_avx512_common_1x1_convolution_fwd_t(const pd_t *apd)
: primitive_t(apd) {}
using src_data_t = typename prec_traits_t<src_type>::type;
using wei_data_t = typename prec_traits_t<wei_type>::type;
using dst_data_t = typename prec_traits_t<dst_type>::type;
status_t init(engine_t *engine) override {
CHECK(safe_ptr_assign(kernel_,
new jit_avx512_common_1x1_conv_kernel_t(
pd()->jcp_, *pd()->attr(), *pd()->dst_1x1_md(0))));
CHECK(kernel_->create_kernel());
if (pd()->jcp_.with_dw_conv) {
CHECK(safe_ptr_assign(kernel_dw_,
new dw_conv_kernel_t(
pd()->dw_conv_pd_->jcp_, *pd()->dst_md(0))));
CHECK(kernel_dw_->create_kernel());
}
CHECK(init_rtus_driver<avx512_core>(this));
return status::success;
}
status_t execute(const exec_ctx_t &ctx) const override {
execute_forward(ctx);
return status::success;
}
private:
void execute_forward(const exec_ctx_t &ctx) const;
void execute_forward_thr(const int ithr, const int nthr,
const src_data_t *src, const wei_data_t *weights,
const dst_data_t *bias, const wei_data_t *weights_dw,
const dst_data_t *bias_dw, dst_data_t *dst,
const memory_tracking::grantor_t &scratchpad,
const void *post_ops_binary_rhs_arg_vec,
const void *post_ops_binary_rhs_arg_vec_dw) const;
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
std::unique_ptr<jit_avx512_common_1x1_conv_kernel_t> kernel_;
std::unique_ptr<rtus_driver_t<avx512_core>> rtus_driver_;
using dw_conv_kernel_t = jit_uni_dw_conv_fwd_kernel_f32_t<avx512_core>;
std::unique_ptr<dw_conv_kernel_t> kernel_dw_;
};
using jit_avx512_common_1x1_convolution_fwd_f32_t
= jit_avx512_common_1x1_convolution_fwd_t<data_type::f32>;
template <impl::data_type_t diff_dst_type,
impl::data_type_t wei_type = diff_dst_type,
impl::data_type_t diff_src_type = diff_dst_type>
struct jit_avx512_common_1x1_convolution_bwd_data_t : public primitive_t {
struct pd_t : public cpu_convolution_bwd_data_pd_t {
using cpu_convolution_bwd_data_pd_t::cpu_convolution_bwd_data_pd_t;
DECLARE_COMMON_PD_T(JIT_IMPL_NAME_HELPER("jit_1x1:", avx512_core, ""),
jit_avx512_common_1x1_convolution_bwd_data_t);
status_t init(engine_t *engine) {
VDISPATCH_CONV(desc()->prop_kind == prop_kind::backward_data,
VERBOSE_BAD_PROPKIND);
VDISPATCH_CONV(
expect_data_types(diff_src_type, wei_type, data_type::undef,
diff_dst_type, data_type::undef),
VERBOSE_UNSUPPORTED_DT);
VDISPATCH_CONV(set_default_alg_kind(alg_kind::convolution_direct),
VERBOSE_BAD_ALGORITHM);
VDISPATCH_CONV(!has_zero_dim_memory(), VERBOSE_EMPTY_TENSOR, "");
VDISPATCH_CONV(
attr()->has_default_values(), VERBOSE_UNSUPPORTED_ATTR);
VDISPATCH_CONV(set_default_formats(), VERBOSE_UNSUPPORTED_TAG);
const convolution_desc_t *conv_d = desc();
const memory_desc_t *diff_src_d = diff_src_md();
rtus_prepare(this, conv_d, diff_src_d, diff_dst_md(), weights_md());
CHECK(jit_avx512_common_1x1_conv_kernel_t::init_conf(jcp_, *conv_d,
*diff_src_d, *weights_md(), *diff_dst_md(), *attr(),
dnnl_get_max_threads(), rtus_.reduce_src_));
auto scratchpad = scratchpad_registry().registrar();
jit_avx512_common_1x1_conv_kernel_t::init_scratchpad(
scratchpad, jcp_);
rtus_prepare_space_info(this, scratchpad, jcp_.nthr);
return status::success;
}
jit_1x1_conv_conf_t jcp_ = utils::zero<decltype(jcp_)>();
reduce_to_unit_stride_t rtus_ = utils::zero<decltype(rtus_)>();
protected:
bool set_default_formats() {
using namespace format_tag;
const memory_desc_wrapper diff_src_d(&diff_src_md_);
const memory_desc_wrapper diff_dst_d(&diff_dst_md_);
const auto dat_tag_nxc = utils::pick(ndims() - 3, nwc, nhwc, ndhwc);
const auto dat_tag_nCx16c
= utils::pick(ndims() - 3, nCw16c, nChw16c, nCdhw16c);
const auto curr_src_tag = diff_src_d.matches_one_of_tag(
dat_tag_nxc, dat_tag_nCx16c);
const auto curr_dst_tag = diff_dst_d.matches_one_of_tag(
dat_tag_nxc, dat_tag_nCx16c);
const auto is_data_layout_nxc
= IMPLICATION(curr_src_tag != dat_tag_nxc,
diff_src_d.format_kind() == format_kind::any)
&& IMPLICATION(curr_dst_tag != dat_tag_nxc,
diff_dst_d.format_kind() == format_kind::any)
&& utils::one_of(dat_tag_nxc, curr_src_tag, curr_dst_tag);
auto dat_tag = is_data_layout_nxc ? dat_tag_nxc : dat_tag_nCx16c;
auto wei_tag = utils::pick(2 * ndims() - 6 + with_groups(),
IOw16o16i, gIOw16o16i, IOhw16o16i, gIOhw16o16i, IOdhw16o16i,
gIOdhw16o16i);
return set_default_formats_common(dat_tag, wei_tag, dat_tag);
}
};
template <cpu_isa_t isa, typename conv_t>
friend status_t init_rtus_driver(conv_t *self);
jit_avx512_common_1x1_convolution_bwd_data_t(const pd_t *apd)
: primitive_t(apd) {}
using diff_dst_data_t = typename prec_traits_t<diff_dst_type>::type;
using wei_data_t = typename prec_traits_t<wei_type>::type;
using diff_src_data_t = typename prec_traits_t<diff_src_type>::type;
status_t init(engine_t *engine) override {
CHECK(safe_ptr_assign(kernel_,
new jit_avx512_common_1x1_conv_kernel_t(
pd()->jcp_, *pd()->attr(), *pd()->dst_md(0))));
CHECK(kernel_->create_kernel());
CHECK(init_rtus_driver<avx512_core>(this));
return status::success;
}
status_t execute(const exec_ctx_t &ctx) const override {
execute_backward_data(ctx);
return status::success;
}
private:
void execute_backward_data(const exec_ctx_t &ctx) const;
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
std::unique_ptr<jit_avx512_common_1x1_conv_kernel_t> kernel_;
std::unique_ptr<rtus_driver_t<avx512_core>> rtus_driver_;
};
using jit_avx512_common_1x1_convolution_bwd_data_f32_t
= jit_avx512_common_1x1_convolution_bwd_data_t<data_type::f32>;
struct jit_avx512_common_1x1_convolution_bwd_weights_t : public primitive_t {
struct pd_t : public cpu_convolution_bwd_weights_pd_t {
using cpu_convolution_bwd_weights_pd_t::
cpu_convolution_bwd_weights_pd_t;
DECLARE_COMMON_PD_T(JIT_IMPL_NAME_HELPER("jit_1x1:", avx512_core, ""),
jit_avx512_common_1x1_convolution_bwd_weights_t);
status_t init(engine_t *engine) {
using namespace data_type;
VDISPATCH_CONV(desc()->prop_kind == prop_kind::backward_weights,
VERBOSE_BAD_PROPKIND);
VDISPATCH_CONV(expect_data_types(f32, f32, f32, f32, f32),
VERBOSE_UNSUPPORTED_DT);
VDISPATCH_CONV(set_default_alg_kind(alg_kind::convolution_direct),
VERBOSE_BAD_ALGORITHM);
VDISPATCH_CONV(!has_zero_dim_memory(), VERBOSE_EMPTY_TENSOR, "");
VDISPATCH_CONV(
attr()->has_default_values(), VERBOSE_UNSUPPORTED_ATTR);
VDISPATCH_CONV(set_default_formats(), VERBOSE_UNSUPPORTED_TAG);
const convolution_desc_t *conv_d = desc();
const memory_desc_t *src_d = src_md();
rtus_prepare(this, conv_d, src_d, diff_dst_md(), diff_weights_md());
CHECK(jit_avx512_common_1x1_conv_kernel_t::init_conf(jcp_, *conv_d,
*src_d, *diff_weights_md(), *diff_dst_md(), *attr(),
dnnl_get_max_threads(), rtus_.reduce_src_));
init_balancers();
auto scratchpad = scratchpad_registry().registrar();
jit_avx512_common_1x1_conv_kernel_t::init_scratchpad(
scratchpad, jcp_);
auto reducer_bia_scratchpad = memory_tracking::registrar_t(
scratchpad, memory_tracking::names::prefix_reducer_bia);
reducer_bia_conf_.init_scratchpad(reducer_bia_scratchpad);
rtus_prepare_space_info(this, scratchpad, jcp_.nthr);
return status::success;
}
jit_1x1_conv_conf_t jcp_ = utils::zero<decltype(jcp_)>();
cpu_reducer_t<data_type::f32>::conf_t reducer_bia_conf_;
reduce_to_unit_stride_t rtus_ = utils::zero<decltype(rtus_)>();
protected:
bool set_default_formats() {
using namespace format_tag;
const memory_desc_wrapper src_d(&src_md_);
const memory_desc_wrapper diff_dst_d(&diff_dst_md_);
const auto dat_tag_nxc = utils::pick(ndims() - 3, nwc, nhwc, ndhwc);
const auto dat_tag_nCx16c
= utils::pick(ndims() - 3, nCw16c, nChw16c, nCdhw16c);
const auto curr_src_tag
= src_d.matches_one_of_tag(dat_tag_nxc, dat_tag_nCx16c);
const auto curr_dst_tag = diff_dst_d.matches_one_of_tag(
dat_tag_nxc, dat_tag_nCx16c);
const auto is_data_layout_nxc
= IMPLICATION(curr_src_tag != dat_tag_nxc,
src_d.format_kind() == format_kind::any)
&& IMPLICATION(curr_dst_tag != dat_tag_nxc,
diff_dst_d.format_kind() == format_kind::any)
&& utils::one_of(dat_tag_nxc, curr_src_tag, curr_dst_tag);
auto dat_tag = is_data_layout_nxc ? dat_tag_nxc : dat_tag_nCx16c;
auto wei_tag = utils::pick(2 * ndims() - 6 + with_groups(),
OIw16i16o, gOIw16i16o, OIhw16i16o, gOIhw16i16o, OIdhw16i16o,
gOIdhw16i16o);
return set_default_formats_common(dat_tag, wei_tag, dat_tag);
}
private:
void init_balancers() {
const size_t max_buffer_size = jcp_.nthr * 3 * 5 * 5 * 16 * 16;
if (with_bias()) {
reducer_bia_conf_.init(reduce_balancer_t(jcp_.nthr,
jcp_.oc_block, jcp_.ngroups * jcp_.nb_load, jcp_.mb,
max_buffer_size, true));
}
}
};
template <cpu_isa_t isa, typename conv_t>
friend status_t init_rtus_driver(conv_t *self);
jit_avx512_common_1x1_convolution_bwd_weights_t(const pd_t *apd)
: primitive_t(apd) {}
using data_t = typename prec_traits_t<data_type::f32>::type;
status_t init(engine_t *engine) override;
status_t execute(const exec_ctx_t &ctx) const override {
execute_backward_weights(ctx);
return status::success;
}
private:
void execute_backward_weights(const exec_ctx_t &ctx) const;
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
std::unique_ptr<jit_avx512_common_1x1_conv_kernel_t> kernel_;
std::unique_ptr<cpu_accumulator_1d_t<data_type::f32>> acc_ker_;
std::unique_ptr<cpu_reducer_t<data_type::f32>> reducer_bias_;
std::unique_ptr<jit_transpose4x16_src_t> trans_kernel_;
std::unique_ptr<rtus_driver_t<avx512_core>> rtus_driver_;
};
} } } }
#endif