#ifndef GPU_INTEL_RNN_REORDERS_HPP
#define GPU_INTEL_RNN_REORDERS_HPP
#include "common/c_types_map.hpp"
#include "common/memory.hpp"
#include "common/primitive.hpp"
#include "common/utils.hpp"
#include "gpu/gpu_resource.hpp"
#include "gpu/intel/primitive.hpp"
#include "gpu/intel/reorder/config.hpp"
#include "gpu/intel/rnn/config.hpp"
namespace dnnl {
namespace impl {
namespace gpu {
namespace intel {
namespace rnn {
struct weights_reorder_t : public primitive_t {
using primitive_t::primitive_t;
struct pd_t : public reorder::pd_t {
using reorder::pd_t::pd_t;
DECLARE_COMMON_PD_T("cross_engine::rnn", weights_reorder_t);
status_t init(impl::engine_t *engine, impl::engine_t *src_engine,
impl::engine_t *dst_engine) {
VDISPATCH_REORDER(dst_md()->extra.flags
& memory_extra_flags::rnn_u8s8_compensation,
VERBOSE_BAD_FLAGS);
VDISPATCH_REORDER(utils::one_of(src_engine->kind(),
engine_kind::gpu, engine_kind::cpu),
VERBOSE_BAD_ENGINE_KIND);
VDISPATCH_REORDER(dst_engine->kind() == engine_kind::gpu,
VERBOSE_BAD_ENGINE_KIND);
auto *intel_engine = utils::downcast<intel::engine_t *>(dst_engine);
VDISPATCH_REORDER(intel_engine->mayiuse(
compute::device_ext_t::intel_subgroups),
VERBOSE_UNSUPPORTED_DEVICE_FEATURE, "subgroups");
VDISPATCH_REORDER(
IMPLICATION(
utils::one_of(data_type::f16, src_md()->data_type,
dst_md()->data_type),
true
&& intel_engine->mayiuse(
compute::device_ext_t::khr_fp16)
&& intel_engine->mayiuse(
compute::device_ext_t::
intel_subgroups_short)),
VERBOSE_UNSUPPORTED_DT_CFG);
CHECK(init_conf(engine));
init_scratchpad();
return status::success;
}
status_t init_conf(impl::engine_t *engine);
status_t init_kernel_ctx(compute::kernel_ctx_t &kernel_ctx) const;
reorder_conf_t conf;
private:
DECLARE_GPU_REORDER_CREATE();
void init_scratchpad() {
auto scratchpad = scratchpad_registry().registrar();
if (conf.do_reorder) {
size_t sz = conf.nelems;
scratchpad.book(memory_tracking::names::key_reorder_rnn_space,
sz, sizeof(float), OCL_BUFFER_ALIGNMENT);
}
}
};
status_t init(impl::engine_t *engine) override {
compute::kernel_ctx_t kernel_ctx;
auto status = pd()->init_kernel_ctx(kernel_ctx);
if (status != status::success) return status;
CHECK(create_kernel(engine, &kernel_, "wei_reorder", kernel_ctx));
if (!kernel_) return status::runtime_error;
return status::success;
}
status_t execute(const exec_ctx_t &ctx) const override;
protected:
status_t init_res_storage(
impl::engine_t *engine, gpu_resource_t *r) const override {
if (!pd()->conf.do_reorder) return status::success;
memory_storage_t *tmp_mem_storage_ptr = nullptr;
size_t size = pd()->conf.scales_count * sizeof(float);
CHECK(engine->create_memory_storage(&tmp_mem_storage_ptr, size));
void *scales_ptr = nullptr;
std::unique_ptr<memory_storage_t> tmp_mem_storage(tmp_mem_storage_ptr);
CHECK(tmp_mem_storage->map_data(
&scales_ptr, nullptr, sizeof(float) * pd()->conf.scales_count));
utils::array_copy((float *)scales_ptr,
pd()->attr()->rnn_weights_qparams_.scales_,
pd()->conf.scales_count);
CHECK(tmp_mem_storage->unmap_data(scales_ptr, nullptr));
r->add_memory_storage(SCALES_, std::move(tmp_mem_storage));
return status::success;
}
private:
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
compute::kernel_t kernel_;
enum { SCALES_ = 0 };
};
} } } } }
#endif