#ifndef GPU_INTEL_BNORM_NHWC_REUSABLE_HPP
#define GPU_INTEL_BNORM_NHWC_REUSABLE_HPP
#include "common/serialization.hpp"
#include "gpu/intel/bnorm/config.hpp"
#include "gpu/intel/bnorm/nhwc.hpp"
#include "gpu/intel/compute/kernel.hpp"
#include "gpu/intel/primitive.hpp"
namespace dnnl {
namespace impl {
namespace gpu {
namespace intel {
namespace bnorm {
struct nhwc_reusable_compile_params_t {
status_t create_generator(const intel::engine_t &engine,
compute::kernel_bundle_t &bundle) const {
auto status = engine.create_kernel_bundle(
bundle, get_kernel_names(), get_kernel_ctx());
return status;
}
const std::vector<const char *> &get_kernel_names() const {
static const std::vector<const char *> kernel_names = {
"nhwc_reusable_norm_fwd", "nhwc_reusable_calc_mean",
"nhwc_reusable_calc_var", "nhwc_reusable_reduce_fwd_reg",
"nhwc_reusable_calc_mean_var", "nhwc_reusable_reduce_fwd_1pass",
"nhwc_reusable_reduce_aux", "nhwc_reusable_norm_bwd",
"nhwc_reusable_calc_stat", "nhwc_reusable_reduce_stat",
"nhwc_reusable_norm_fwd_buff", "nhwc_reusable_norm_bwd_buff",
"nhwc_reusable_calc_mean_buff", "nhwc_reusable_calc_var_buff",
"nhwc_reusable_calc_mean_var_buff",
"nhwc_reusable_calc_stat_buff"};
return kernel_names;
}
#if __cplusplus >= 202002L
bool operator==(const nhwc_reusable_compile_params_t &) const = default;
#endif
serialization_stream_t serialize() const {
DNNL_ASSERT_TRIVIALLY_SERIALIZABLE(nhwc_reusable_compile_params_t);
return serialization_stream_t(*this);
}
static nhwc_reusable_compile_params_t deserialize(
const serialization_stream_t &s) {
return deserializer_t(s).pop<nhwc_reusable_compile_params_t>();
}
compute::kernel_ctx_t get_kernel_ctx() const;
data_type_t data_type;
int vect_size;
int sub_group_size;
int max_ic_block;
bool use_scale;
bool use_shift;
bool is_training;
bool fuse_norm_relu;
bool fuse_norm_add_relu;
bool with_relu;
bool with_leaky_relu;
bool calculate_stats;
bool use_stats_one_pass;
bool require_stateless_addressing;
uint8_t padding[2] = {0};
};
struct nhwc_reusable_runtime_params_t {
dim_t ic_size, sp_size;
dim_t update_sp_block, stat_sp_block, ic_block, update_sp_unroll;
dim_t reduce_stat_nblocks;
dim_t reduce_ic_sub_groups;
dim_t sg_size;
float relu_negative_slope;
float eps;
bool use_fused_atomics_reduction;
bool use_buffers_calc;
bool use_buffers_norm;
compute::range_t calc_adj_lws;
};
struct nhwc_reusable_fwd_t : public primitive_t {
using primitive_t::primitive_t;
struct pd_t : public fwd_pd_t {
using fwd_pd_t::fwd_pd_t;
DECLARE_COMMON_PD_T(impl_name(), nhwc_reusable_fwd_t);
const char *impl_name() const {
return bn_conf.use_stats_one_pass ? "ocl:nhwc_reusable:onepass"
: "ocl:nhwc_reusable";
}
status_t init(impl::engine_t *engine) {
using namespace data_type;
auto *intel_engine = utils::downcast<intel::engine_t *>(engine);
const auto attr_skip_mask = primitive_attr_t::skip_mask_t::post_ops;
VDISPATCH_BNORM(is_fwd(), VERBOSE_BAD_PROPKIND);
VDISPATCH_BNORM(
!has_zero_dim_memory(), VERBOSE_EMPTY_TENSOR, "src");
VDISPATCH_BNORM(
utils::one_of(src_md()->data_type, f32, bf16, f16, s8),
VERBOSE_UNSUPPORTED_DT);
VDISPATCH_BNORM(IMPLICATION(f16 == src_md()->data_type,
intel_engine->mayiuse(
compute::device_ext_t::khr_fp16)),
VERBOSE_UNSUPPORTED_DT_CFG);
VDISPATCH_BNORM(src_md()->data_type == dst_md()->data_type,
VERBOSE_INCONSISTENT_DT, "src", "dst");
VDISPATCH_BNORM(IMPLICATION(src_md()->data_type == s8,
!is_training() && stats_is_src()),
VERBOSE_UNSUPPORTED_DT);
VDISPATCH_BNORM(check_scale_shift_data_type(),
VERBOSE_UNSUPPORTED_FEATURE,
"unsupported scale, shift or datatype configuration");
VDISPATCH_BNORM(attr()->has_default_values(attr_skip_mask),
VERBOSE_UNSUPPORTED_ATTR);
VDISPATCH_BNORM(
IMPLICATION(!attr()->has_default_values(),
attr()->post_ops_.len() == 1
&& with_relu_post_op(is_training())),
VERBOSE_UNSUPPORTED_ATTR);
VDISPATCH_BNORM(
set_default_formats_common(), VERBOSE_UNSUPPORTED_TAG);
VDISPATCH_BNORM(memory_desc_wrapper(src_md())
== memory_desc_wrapper(dst_md()),
VERBOSE_INCONSISTENT_MDS, "src", "dst");
VDISPATCH_BNORM(intel_engine->mayiuse(
compute::device_ext_t::intel_subgroups),
VERBOSE_UNSUPPORTED_DEVICE_FEATURE, "subgroups");
if (is_training() && (fuse_norm_relu() || fuse_norm_add_relu())) {
VDISPATCH_BNORM_SC(init_default_ws(8), VERBOSE_WS_INIT);
}
CHECK(init_conf(engine));
init_scratchpad();
return status::success;
}
status_t init_conf(impl::engine_t *engine);
void init_scratchpad();
nhwc_reusable_compile_params_t cmpl_conf;
nhwc_reusable_runtime_params_t rt_conf;
nhwc_params_t bn_conf;
compute::dispatch_t dispatch_calc_stat;
compute::dispatch_t dispatch_reduce_stat;
compute::dispatch_t dispatch;
compute::dispatch_t dispatch_reduce_aux;
};
status_t init(impl::engine_t *engine) override {
if (pd()->has_zero_dim_memory()) return status::success;
const auto &kernel_names = pd()->cmpl_conf.get_kernel_names();
CHECK(create_kernels(engine, kernels_, kernel_names, pd()->cmpl_conf));
return status::success;
}
status_t execute(const exec_ctx_t &ctx) const override {
return execute_forward(ctx);
}
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::vector<compute::kernel_t> kernels_;
};
struct nhwc_reusable_bwd_t : public primitive_t {
using primitive_t::primitive_t;
struct pd_t : public bwd_pd_t {
using bwd_pd_t::bwd_pd_t;
DECLARE_COMMON_PD_T("ocl:nhwc_reusable", nhwc_reusable_bwd_t);
status_t init(impl::engine_t *engine) {
using namespace data_type;
auto *intel_engine = utils::downcast<intel::engine_t *>(engine);
VDISPATCH_BNORM(!is_fwd(), VERBOSE_BAD_PROPKIND);
VDISPATCH_BNORM(
!has_zero_dim_memory(), VERBOSE_EMPTY_TENSOR, "src");
VDISPATCH_BNORM(utils::one_of(src_md()->data_type, f32, bf16, f16),
VERBOSE_UNSUPPORTED_DT);
VDISPATCH_BNORM(IMPLICATION(f16 == src_md()->data_type,
intel_engine->mayiuse(
compute::device_ext_t::khr_fp16)),
VERBOSE_UNSUPPORTED_DT_CFG);
VDISPATCH_BNORM(src_md()->data_type == diff_src_md()->data_type,
VERBOSE_INCONSISTENT_DT, "src", "diff_src");
VDISPATCH_BNORM(
diff_src_md()->data_type == diff_dst_md()->data_type,
VERBOSE_INCONSISTENT_DT, "diff_src", "diff_dst");
VDISPATCH_BNORM(check_scale_shift_data_type(),
VERBOSE_UNSUPPORTED_FEATURE,
"unsupported scale, shift or datatype configuration");
VDISPATCH_BNORM(
attr()->has_default_values(), VERBOSE_UNSUPPORTED_ATTR);
VDISPATCH_BNORM(
set_default_formats_common(), VERBOSE_UNSUPPORTED_TAG);
VDISPATCH_BNORM(memory_desc_wrapper(diff_src_md())
== memory_desc_wrapper(diff_dst_md()),
VERBOSE_INCONSISTENT_MDS, "diff_src", "diff_dst");
VDISPATCH_BNORM(intel_engine->mayiuse(
compute::device_ext_t::intel_subgroups),
VERBOSE_UNSUPPORTED_DEVICE_FEATURE, "subgroups");
if (fuse_norm_relu() || fuse_norm_add_relu()) {
VDISPATCH_BNORM_SC(init_default_ws(8), VERBOSE_WS_INIT);
VDISPATCH_BNORM(compare_ws(hint_fwd_pd_), VERBOSE_WS_MISMATCH);
}
CHECK(init_conf(engine));
init_scratchpad();
return status::success;
}
status_t init_conf(impl::engine_t *engine);
void init_scratchpad();
nhwc_reusable_compile_params_t cmpl_conf;
nhwc_reusable_runtime_params_t rt_conf;
nhwc_params_t bn_conf;
offsets_t off;
compute::dispatch_t dispatch_calc_stat;
compute::dispatch_t dispatch_reduce_stat;
compute::dispatch_t dispatch;
compute::dispatch_t dispatch_reduce_aux;
};
status_t init(impl::engine_t *engine) override {
if (pd()->has_zero_dim_memory()) return status::success;
const auto &kernel_names = pd()->cmpl_conf.get_kernel_names();
CHECK(create_kernels(engine, kernels_, kernel_names, pd()->cmpl_conf));
return status::success;
}
status_t execute(const exec_ctx_t &ctx) const override {
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::vector<compute::kernel_t> kernels_;
};
} } } } }
#endif