#ifndef CPU_SIMPLE_LAYER_NORMALIZATION_HPP
#define CPU_SIMPLE_LAYER_NORMALIZATION_HPP
#include <memory>
#include "common/c_types_map.hpp"
#include "common/dnnl_thread.hpp"
#include "common/memory_tracking.hpp"
#include "common/primitive.hpp"
#include "common/reorder_pd.hpp"
#include "common/stream.hpp"
#include "common/utils.hpp"
#include "cpu/primitive_attr_postops.hpp"
#include "cpu/cpu_layer_normalization_pd.hpp"
namespace dnnl {
namespace impl {
namespace cpu {
struct simple_layer_normalization_fwd_t : public primitive_t {
struct pd_t : public cpu_layer_normalization_fwd_pd_t {
using cpu_layer_normalization_fwd_pd_t::
cpu_layer_normalization_fwd_pd_t;
DECLARE_COMMON_PD_T("simple:any", simple_layer_normalization_fwd_t);
status_t init(engine_t *engine);
bool use_tmp_stats() const { return reorder_pd_ || stats_are_tmp(); }
std::shared_ptr<primitive_desc_t> reorder_pd_;
memory_desc_t reordered_stat_md_;
private:
void init_scratchpad() {
using namespace memory_tracking::names;
auto scratchpad = scratchpad_registry().registrar();
if (use_tmp_stats()) {
if (!skip_mean()) {
scratchpad.template book<float>(
key_lnorm_tmp_mean, across_axis());
}
scratchpad.template book<float>(
key_lnorm_tmp_var, across_axis());
}
if (reordered_stat_md_ != *stat_md() && !stats_are_tmp()) {
scratchpad.book(key_nested, reorder_pd_->scratchpad_registry());
}
}
bool post_ops_ok() const {
return ref_post_ops_t::post_ops_ok(attr()->post_ops_);
}
};
status_t init(engine_t *engine) override {
if (pd()->reorder_pd_)
pd()->reorder_pd_->create_primitive(reorder_, engine);
ref_post_ops
= utils::make_unique<ref_post_ops_t>(pd()->attr()->post_ops_);
if (!ref_post_ops) return status::out_of_memory;
CHECK(ref_post_ops->init(pd()->dst_md()));
return status::success;
}
simple_layer_normalization_fwd_t(const pd_t *apd) : primitive_t(apd) {}
void reorder_stat(const exec_ctx_t &ctx, engine_t *engine,
const memory_arg_t &in, const memory_arg_t &out) const {
using namespace memory_tracking::names;
exec_args_t r_args;
r_args[DNNL_ARG_SRC] = in;
r_args[DNNL_ARG_DST] = out;
exec_ctx_t r_ctx(ctx, std::move(r_args));
auto *nested_grantor
= create_nested_grantor(ctx.get_scratchpad_grantor(),
key_nested, reorder_->pd()->scratchpad_registry());
r_ctx.set_scratchpad_grantor(nested_grantor);
reorder_->execute(r_ctx);
}
status_t execute(const exec_ctx_t &ctx) const override {
using namespace memory_tracking::names;
engine_t *engine = ctx.stream()->engine();
const auto &scratchpad = ctx.get_scratchpad_grantor();
bool skip_mean = pd()->skip_mean();
std::unique_ptr<memory_t, memory_deleter_t> mean;
if (!skip_mean) {
auto mean_mem = scratchpad.get_memory_storage(key_lnorm_tmp_mean);
CHECK(safe_ptr_assign(mean,
new memory_t(engine, &(pd()->reordered_stat_md_),
std::move(mean_mem))));
}
auto variance_mem = scratchpad.get_memory_storage(key_lnorm_tmp_var);
std::unique_ptr<memory_t, memory_deleter_t> variance;
CHECK(safe_ptr_assign(variance,
new memory_t(engine, &(pd()->reordered_stat_md_),
std::move(variance_mem))));
if (pd()->stats_are_src() && reorder_) {
if (!skip_mean) {
reorder_stat(ctx, engine, ctx.args().at(DNNL_ARG_MEAN),
{mean.get(), false});
}
reorder_stat(ctx, engine, ctx.args().at(DNNL_ARG_VARIANCE),
{variance.get(), false});
}
status_t status = execute_forward(ctx);
if (status != status::success) return status;
if (!pd()->stats_are_src() && reorder_) {
if (!skip_mean) {
reorder_stat(ctx, engine, {mean.get(), true},
ctx.args().at(DNNL_ARG_MEAN));
}
reorder_stat(ctx, engine, {variance.get(), true},
ctx.args().at(DNNL_ARG_VARIANCE));
}
return status::success;
}
private:
status_t execute_forward(const exec_ctx_t &ctx) const;
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
std::shared_ptr<primitive_t> reorder_;
std::unique_ptr<ref_post_ops_t> ref_post_ops;
};
struct simple_layer_normalization_bwd_t : public primitive_t {
struct pd_t : public cpu_layer_normalization_bwd_pd_t {
using cpu_layer_normalization_bwd_pd_t::
cpu_layer_normalization_bwd_pd_t;
DECLARE_COMMON_PD_T("simple:any", simple_layer_normalization_bwd_t);
status_t init(engine_t *engine);
bool use_tmp_stats() const { return reorder_pd_.get(); }
std::shared_ptr<primitive_desc_t> reorder_pd_;
memory_desc_t reordered_stat_md_;
int nthr_;
private:
void init_scratchpad() {
using namespace memory_tracking::names;
auto scratchpad = scratchpad_registry().registrar();
if (use_tmp_stats()) {
if (!skip_mean()) {
scratchpad.template book<float>(
key_lnorm_tmp_mean, across_axis());
}
scratchpad.template book<float>(
key_lnorm_tmp_var, across_axis());
}
scratchpad.template book<float>(
key_lnorm_reduction, 2 * norm_axis() * nthr_);
scratchpad.template book<float>(
key_lnorm_tmp_diff_ss, 2 * norm_axis());
if (reordered_stat_md_ != *stat_md() && !stats_are_tmp()) {
scratchpad.book(key_nested, reorder_pd_->scratchpad_registry());
}
scratchpad.template book<float>(
key_lnorm_inv_sqrtvar, across_axis());
}
};
status_t init(engine_t *engine) override {
if (pd()->reorder_pd_)
pd()->reorder_pd_->create_primitive(reorder_, engine);
return status::success;
}
simple_layer_normalization_bwd_t(const pd_t *apd) : primitive_t(apd) {}
void reorder_stat(const exec_ctx_t &ctx, engine_t *engine,
const memory_arg_t &in, const memory_arg_t &out) const {
using namespace memory_tracking::names;
exec_args_t r_args;
r_args[DNNL_ARG_SRC] = in;
r_args[DNNL_ARG_DST] = out;
exec_ctx_t r_ctx(ctx, std::move(r_args));
auto *nested_grantor
= create_nested_grantor(ctx.get_scratchpad_grantor(),
key_nested, reorder_->pd()->scratchpad_registry());
r_ctx.set_scratchpad_grantor(nested_grantor);
reorder_->execute(r_ctx);
}
status_t execute(const exec_ctx_t &ctx) const override {
using namespace memory_tracking::names;
if (reorder_) {
engine_t *engine = ctx.stream()->engine();
const auto &scratchpad = ctx.get_scratchpad_grantor();
if (!pd()->skip_mean()) {
auto mean_mem
= scratchpad.get_memory_storage(key_lnorm_tmp_mean);
std::unique_ptr<memory_t, memory_deleter_t> mean;
CHECK(safe_ptr_assign(mean,
new memory_t(engine, &(pd()->reordered_stat_md_),
std::move(mean_mem))));
reorder_stat(ctx, engine, ctx.args().at(DNNL_ARG_MEAN),
{mean.get(), false});
}
auto variance_mem
= scratchpad.get_memory_storage(key_lnorm_tmp_var);
std::unique_ptr<memory_t, memory_deleter_t> variance;
CHECK(safe_ptr_assign(variance,
new memory_t(engine, &(pd()->reordered_stat_md_),
std::move(variance_mem))));
reorder_stat(ctx, engine, ctx.args().at(DNNL_ARG_VARIANCE),
{variance.get(), false});
}
return execute_backward(ctx);
}
private:
status_t execute_backward(const exec_ctx_t &ctx) const;
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
std::shared_ptr<primitive_t> reorder_;
};
} } }
#endif