#ifndef COMMON_SUM_PD_HPP
#define COMMON_SUM_PD_HPP
#include <assert.h>
#include "oneapi/dnnl/dnnl.h"
#include "c_types_map.hpp"
#include "primitive_desc.hpp"
#include "type_helpers.hpp"
#include "utils.hpp"
#include "primitive_hashing.hpp"
#define VDISPATCH_SUM(cond, msg, ...) \
VCONDCHECK(primitive, create, dispatch, sum, (cond), \
status::unimplemented, "%s," msg, this->info(engine), \
##__VA_ARGS__)
#define VDISPATCH_SUM_SC(f, msg, ...) \
VCHECK(primitive, create, dispatch, sum, (f), "%s," msg, \
this->info(engine), ##__VA_ARGS__)
namespace dnnl {
namespace impl {
struct sum_pd_t : public primitive_desc_t {
const sum_desc_t *desc() const { return &desc_; }
const op_desc_t *op_desc() const override {
return reinterpret_cast<const op_desc_t *>(this->desc());
}
arg_usage_t arg_usage(int arg) const override {
if (arg >= DNNL_ARG_MULTIPLE_SRC
&& arg < DNNL_ARG_MULTIPLE_SRC + n_inputs())
return arg_usage_t::input;
if (arg == DNNL_ARG_DST) return arg_usage_t::output;
return primitive_desc_t::arg_usage(arg);
}
const memory_desc_t *arg_md(
int arg, bool user_input = false) const override {
int src_index = arg - DNNL_ARG_MULTIPLE_SRC;
if (src_index >= 0 && src_index < n_inputs()) return src_md(src_index);
if (arg == DNNL_ARG_DST) return dst_md(0, user_input);
return primitive_desc_t::arg_md(arg);
}
const memory_desc_t *src_md(
int index = 0, bool user_input = false) const override {
if (index < n_inputs())
return user_input ? desc()->src_mds[index] : &src_mds_[index];
return &glob_zero_md;
}
const memory_desc_t *dst_md(
int index = 0, bool user_input = false) const override {
if (index == 0) return user_input ? desc()->dst_md : &dst_md_;
return &glob_zero_md;
}
const memory_desc_t *dst_acc_md() const {
return need_output_reorder() ? &dst_acc_md_ : &dst_md_;
}
int n_inputs() const override { return n_; }
int n_outputs() const override { return 1; }
const float *scales() const { return &scales_[0]; }
bool need_output_reorder() const { return dst_md()->data_type != dnnl_f32; }
bool has_zero_dim_memory() const {
return memory_desc_wrapper(dst_md()).has_zero_dim();
}
protected:
int n_;
std::vector<float> scales_;
memory_desc_t dst_md_, dst_acc_md_;
std::vector<memory_desc_t> src_mds_;
memory_desc_t original_dst_md_;
sum_desc_t desc_;
sum_pd_t(const primitive_attr_t *attr, const memory_desc_t *dst_md, int n,
const float *scales, const memory_desc_t *const *src_mds)
: primitive_desc_t(attr, primitive_kind::sum)
, n_(n)
, dst_md_(*dst_md)
, original_dst_md_(*dst_md) {
scales_.reserve(n_);
for (int i = 0; i < n_; ++i)
scales_.push_back(scales[i]);
src_mds_.reserve(n_);
for (int i = 0; i < n_; ++i)
src_mds_.push_back(*src_mds[i]);
init_desc();
}
sum_pd_t(const sum_pd_t &other)
: primitive_desc_t(other)
, n_(other.n_)
, scales_(other.scales_)
, dst_md_(other.dst_md_)
, dst_acc_md_(other.dst_acc_md_)
, src_mds_(other.src_mds_)
, original_dst_md_(other.original_dst_md_) {
init_desc();
}
sum_pd_t &operator=(const sum_pd_t &other) {
DNNL_SHORT_CIRCUIT_SELF_ASSIGN(other);
n_ = other.n_;
scales_ = other.scales_;
dst_md_ = other.dst_md_;
dst_acc_md_ = other.dst_acc_md_;
src_mds_ = other.src_mds_;
original_dst_md_ = other.original_dst_md_;
init_desc();
return *this;
}
virtual void define_dst_acc_md() {
dst_acc_md_ = dst_md_;
dst_acc_md_.data_type = dnnl_f32;
}
status_t init(engine_t *engine) {
for (int i = 0; i < n_; ++i) {
const memory_desc_wrapper src_d(&src_mds_[i]);
if (!src_d.is_blocking_desc() || src_d.is_additional_buffer())
return status::unimplemented;
}
bool ok = true && set_default_params() == status::success
&& attr()->has_default_values();
if (!ok) return status::unimplemented;
if (need_output_reorder()) { define_dst_acc_md(); }
return status::success;
}
status_t set_default_params() {
if (dst_md_.format_kind != format_kind::any) return status::success;
for (int i = 0; i < n_; ++i) {
const memory_desc_wrapper src_d(src_mds_[i]);
if (!src_d.is_plain() && src_d.is_blocking_desc()) {
return memory_desc_init_by_blocking_desc(
dst_md_, src_d.blocking_desc());
}
}
if (src_mds_[0].format_kind != format_kind::blocked)
return status::unimplemented;
CHECK(memory_desc_init_by_md_and_dt(
dst_md_, src_mds_[0], dst_md_.data_type));
return status::success;
}
private:
void init_desc() {
desc_ = sum_desc_t();
desc_.primitive_kind = primitive_kind::sum;
desc_.dst_md = &original_dst_md_;
desc_.n = n_;
desc_.scales = scales_.data();
for (const auto &md : src_mds_)
desc_.src_mds.push_back(&md);
}
};
#define DECLARE_SUM_PD_t(impl_name, ...) \
static status_t create(sum_pd_t **sum_pd, dnnl::impl::engine_t *engine, \
const primitive_attr_t *attr, const memory_desc_t *dst_md, int n, \
const float *scales, const memory_desc_t *const *src_mds) { \
using namespace status; \
auto _pd = make_unique_pd<pd_t>(attr, dst_md, n, scales, src_mds); \
if (_pd == nullptr) return out_of_memory; \
CHECK(_pd->init(engine)); \
CHECK(_pd->init_scratchpad_md()); \
return safe_ptr_assign(*sum_pd, _pd.release()); \
} \
status_t create_primitive( \
std::pair<std::shared_ptr<impl::primitive_t>, cache_state_t> \
&primitive, \
dnnl::impl::engine_t *engine, const cache_blob_t &cache_blob, \
bool force_create_from_blob) const override { \
return primitive_t::create_primitive_common<__VA_ARGS__, pd_t>( \
primitive, this, engine, false, cache_blob, \
force_create_from_blob); \
} \
pd_t *clone() const override { \
auto new_pd = utils::make_unique<pd_t>(*this); \
if (!new_pd->is_initialized()) return nullptr; \
return new_pd.release(); \
} \
const char *name() const override { \
return impl_name; \
}
#define DECLARE_SUM_PD_T(impl_name, ...) \
DECLARE_SUM_PD_t(impl_name, __VA_ARGS__)
} }
#endif