#ifndef GPU_INTEL_MATMUL_GROUPED_MICRO_GEMM_HPP
#define GPU_INTEL_MATMUL_GROUPED_MICRO_GEMM_HPP
#include "oneapi/dnnl/dnnl_config.h"
#if DNNL_EXPERIMENTAL_GROUPED_MEMORY
#include "common/c_types_map.hpp"
#include "common/memory_desc_wrapper.hpp"
#include "common/primitive.hpp"
#include "common/type_helpers.hpp"
#include "common/utils.hpp"
#include "gemmstone/microkernel/package.hpp"
#include "gpu/intel/compute/device_info.hpp"
#include "gpu/intel/matmul/config.hpp"
#include "gpu/intel/primitive.hpp"
#include "gpu/intel/primitive_conf.hpp"
namespace dnnl {
namespace impl {
namespace gpu {
namespace intel {
namespace matmul {
struct grouped_micro_params_t
: trivially_serializable_t<grouped_micro_params_t> {
const std::vector<const char *> &get_kernel_names() const {
static const std::vector<const char *> kernel_names
= {"grouped_micro_gemm"};
return kernel_names;
}
status_t create_generator(const intel::engine_t &engine,
compute::kernel_bundle_t &bundle) const {
compute::kernel_ctx_t kernel_ctx;
CHECK(get_kernel_ctx(kernel_ctx));
auto status = engine.create_kernel_bundle(
bundle, get_kernel_names(), kernel_ctx);
return status;
}
status_t get_kernel_ctx(compute::kernel_ctx_t &) const;
};
struct grouped_micro_gemm_t : public primitive_t {
using primitive_t::primitive_t;
struct pd_t : public matmul::pd_t {
using matmul::pd_t::pd_t;
DECLARE_COMMON_PD_T("grouped_gemm:micro", grouped_micro_gemm_t);
status_t init(impl::engine_t *engine);
status_t init_microkernels(impl::engine_t *engine);
bool is_gemv_ = false;
int sg_size_ = 0;
int strategyGRFs_ = 0;
dim_t ngroups_ = 0;
std::array<int, 2> src_group_sizes_ = {0, 0};
std::array<int, 3> wei_group_sizes_ = {0, 0, 0};
quantization_t src_quant_;
quantization_t wei_quant_;
gemmstone::microkernel::Package gemm_;
compute::kernel_ctx_t kernel_ctx_;
};
status_t init(impl::engine_t *engine) override;
status_t execute(const exec_ctx_t &ctx) const override;
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
compute::kernel_t kernel_;
};
} } } } }
#endif #endif