#ifndef GPU_INTEL_CONV_DECONVOLUTION_HPP
#define GPU_INTEL_CONV_DECONVOLUTION_HPP
#include "common/c_types_map.hpp"
#include "common/primitive.hpp"
#include "common/type_helpers.hpp"
#include "common/utils.hpp"
#include "gpu/intel/compute/utils.hpp"
#include "gpu/intel/conv/config.hpp"
#include "gpu/intel/primitive.hpp"
#include "gpu/intel/primitive_conf.hpp"
namespace dnnl {
namespace impl {
namespace gpu {
namespace intel {
namespace deconv {
using namespace conv;
static status_t weights_axes_permutation(
memory_desc_t *o_md, const memory_desc_t *i_md, bool with_groups) {
int perm[DNNL_MAX_NDIMS] {}; for (int d = 0; d < DNNL_MAX_NDIMS; ++d)
perm[d] = d;
nstl::swap(perm[0 + with_groups], perm[1 + with_groups]);
return memory_desc_permute_axes(*o_md, *i_md, perm);
}
static status_t conv_descr_create(const deconv::desc_t *dd, conv::desc_t *cd) {
using namespace prop_kind;
alg_kind_t alg_kind = alg_kind::convolution_direct;
const memory_desc_t *src_md, *dst_md, *d_weights_d;
prop_kind_t prop_kind;
switch (dd->prop_kind) {
case forward:
case forward_inference:
prop_kind = backward_data;
src_md = &dd->dst_desc;
dst_md = &dd->src_desc;
d_weights_d = &dd->weights_desc;
break;
case backward_data:
prop_kind = forward_training;
src_md = &dd->diff_dst_desc;
dst_md = &dd->diff_src_desc;
d_weights_d = &dd->weights_desc;
break;
case backward_weights:
prop_kind = dd->prop_kind;
src_md = &dd->diff_dst_desc;
dst_md = &dd->src_desc;
d_weights_d = &dd->diff_weights_desc;
break;
default: assert(!"unknown prop kind"); return status::invalid_arguments;
}
memory_desc_t c_weights_d;
const bool with_groups = d_weights_d->ndims == src_md->ndims + 1;
CHECK(weights_axes_permutation(&c_weights_d, d_weights_d, with_groups));
return conv_desc_init(cd, prop_kind, alg_kind, src_md, &c_weights_d,
prop_kind != backward_weights ? &dd->bias_desc : nullptr, dst_md,
dd->strides, dd->dilates, dd->padding[0], dd->padding[1]);
}
struct conv_bwd_weights_t : public primitive_t {
using primitive_t::primitive_t;
struct pd_t : public bwd_weights_pd_t {
using bwd_weights_pd_t::bwd_weights_pd_t;
DECLARE_COMMON_PD_T(name_.c_str(), conv_bwd_weights_t);
status_t init_convolution(impl::engine_t *engine) {
conv::desc_t cd;
CHECK(conv_descr_create(desc(), &cd));
primitive_attr_t conv_attr(*attr());
if (!conv_attr.is_initialized()) return status::out_of_memory;
primitive_desc_iterator_t it(
engine, (op_desc_t *)&cd, &conv_attr, nullptr);
if (!it.is_initialized()) return status::out_of_memory;
conv_pd_ = *(++it);
return (conv_pd_) ? status::success : status::unimplemented;
}
status_t init(impl::engine_t *engine) {
using namespace format_tag;
VDISPATCH_DECONVOLUTION(
desc()->prop_kind == prop_kind::backward_weights,
VERBOSE_BAD_PROPKIND);
VDISPATCH_DECONVOLUTION(
(utils::everyone_is(data_type::f32,
desc()->src_desc.data_type,
desc()->diff_weights_desc.data_type,
desc()->diff_dst_desc.data_type)
|| utils::everyone_is(data_type::f64,
desc()->src_desc.data_type,
desc()->diff_weights_desc.data_type,
desc()->diff_dst_desc.data_type)
|| utils::everyone_is(data_type::f16,
desc()->diff_dst_desc.data_type,
desc()->src_desc.data_type)
|| utils::everyone_is(data_type::bf16,
desc()->diff_dst_desc.data_type,
desc()->src_desc.data_type)),
VERBOSE_UNSUPPORTED_DT);
VDISPATCH_DECONVOLUTION(utils::one_of(desc()->alg_kind,
alg_kind::deconvolution_direct),
VERBOSE_BAD_ALGORITHM);
VDISPATCH_DECONVOLUTION(
attr()->has_default_values(), VERBOSE_UNSUPPORTED_ATTR);
VDISPATCH_DECONVOLUTION(
utils::one_of(desc()->diff_weights_desc.data_type,
data_type::bf16, data_type::f16, data_type::f32,
data_type::f64),
VERBOSE_UNSUPPORTED_DT);
VDISPATCH_DECONVOLUTION_SC(
init_convolution(engine), "init_convolution()");
if (diff_weights_md_.format_kind == format_kind::any) {
VDISPATCH_DECONVOLUTION_SC(
weights_axes_permutation(&diff_weights_md_,
conv_pd_->diff_weights_md(), with_groups()),
"weights_axes_permutation()");
}
if (src_md_.format_kind == format_kind::any)
src_md_ = *conv_pd_->diff_dst_md();
if (diff_dst_md_.format_kind == format_kind::any)
diff_dst_md_ = *conv_pd_->src_md();
if (diff_bias_md_.format_kind == format_kind::any) {
VDISPATCH_DECONVOLUTION_SC(
memory_desc_init_by_tag(diff_bias_md_, x),
VERBOSE_UNSUPPORTED_TAG);
}
init_name();
init_scratchpad();
return status::success;
}
std::shared_ptr<primitive_desc_t> conv_pd_;
private:
std::string name_ = "conv:any";
void init_name() {
name_.append("+");
name_.append(conv_pd_->name());
}
void init_scratchpad() {
auto scratchpad = scratchpad_registry().registrar();
scratchpad.book(memory_tracking::names::key_nested,
conv_pd_->scratchpad_registry());
}
};
status_t init(impl::engine_t *engine) override {
CHECK(create_nested_primitive(nested_p_, pd()->conv_pd_, engine));
if (!pd()->with_bias()) return status::success;
compute::kernel_ctx_t kernel_ctx;
memory_desc_wrapper diff_dst_mdw(pd()->diff_dst_md());
kernel_ctx.set_data_type(pd()->diff_dst_md()->data_type);
kernel_ctx.require_stateless_addressing(pd()->has_large_buffers());
offsets_t off;
set_offsets(diff_dst_mdw, off.dst_off);
def_offsets(off.dst_off, kernel_ctx, "DST",
pd()->desc()->diff_dst_desc.ndims);
kernel_ctx.define_int("MB", pd()->MB());
kernel_ctx.define_int("OH", pd()->OH());
kernel_ctx.define_int("OW", pd()->OW());
kernel_ctx.define_int("OD", pd()->OD());
kernel_ctx.define_int("OC", pd()->OC() / pd()->G());
kernel_ctx.define_int("NDIMS", pd()->desc()->src_desc.ndims);
gws[0] = pd()->OC();
dst_data_type = pd()->diff_dst_md()->data_type;
bias_data_type = pd()->diff_weights_md(1)->data_type;
accum_data_type = pd()->desc()->accum_data_type;
def_data_type(kernel_ctx, dst_data_type, "DST");
def_data_type(kernel_ctx, bias_data_type, "BIA");
def_data_type(kernel_ctx, accum_data_type, "ACC");
CHECK(create_kernel(
engine, &bias_kernel_, "deconv_backward_bias", kernel_ctx));
if (!bias_kernel_) return status::runtime_error;
return status::success;
}
status_t execute(const exec_ctx_t &ctx) const override {
using namespace memory_tracking::names;
const auto &args = ctx.args();
exec_args_t nested_args;
nested_args[DNNL_ARG_DIFF_DST] = args.at(DNNL_ARG_SRC);
nested_args[DNNL_ARG_SRC] = args.at(DNNL_ARG_DIFF_DST);
nested_args[DNNL_ARG_DIFF_WEIGHTS] = args.at(DNNL_ARG_DIFF_WEIGHTS);
if (!types::is_zero_md(pd()->scratchpad_md()))
nested_args[DNNL_ARG_SCRATCHPAD] = args.at(DNNL_ARG_SCRATCHPAD);
exec_ctx_t nested_ctx(ctx, std::move(nested_args));
auto *nested_grantor
= create_nested_grantor(ctx.get_scratchpad_grantor(),
key_nested, nested_p_->pd()->scratchpad_registry());
nested_ctx.set_scratchpad_grantor(nested_grantor);
status_t status = nested_p_->execute(nested_ctx);
if (status != status::success) return status;
if (pd()->with_bias()) {
auto &diff_bias = CTX_OUT_STORAGE(DNNL_ARG_DIFF_BIAS);
auto &diff_dst = CTX_IN_STORAGE(DNNL_ARG_DIFF_DST);
compute::kernel_arg_list_t arg_list;
arg_list.set(0, diff_dst);
arg_list.set(1, diff_bias);
auto nd_range = compute::nd_range_t(gws);
status = parallel_for(ctx, nd_range, bias_kernel_, arg_list);
}
return status::success;
}
private:
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
std::shared_ptr<impl::primitive_t> nested_p_;
compute::kernel_t bias_kernel_;
compute::range_t gws = compute::range_t::empty(1);
data_type_t dst_data_type = data_type::undef;
data_type_t bias_data_type = data_type::undef;
data_type_t accum_data_type = data_type::undef;
};
} } } } }
#endif