#ifndef GPU_AMD_MIOPEN_SOFTMAX_HPP
#define GPU_AMD_MIOPEN_SOFTMAX_HPP
#include "hip/hip_runtime.h"
#include "miopen/miopen.h"
#include "common/softmax_pd.hpp"
#include "gpu/amd/engine.hpp"
#include "gpu/amd/miopen_softmax_impl.hpp"
#include "gpu/amd/sycl_hip_utils.hpp"
#include "gpu/gpu_primitive.hpp"
namespace dnnl {
namespace impl {
namespace gpu {
namespace amd {
struct miopen_softmax_fwd_t : public gpu::primitive_t {
using gpu::primitive_t::primitive_t;
struct pd_t : public softmax_fwd_pd_t {
using softmax_fwd_pd_t::softmax_fwd_pd_t;
DECLARE_COMMON_PD_T("hip:miopen:any", miopen_softmax_fwd_t);
status_t init(impl::engine_t *) {
const memory_desc_wrapper src_d(src_md());
const memory_desc_wrapper dst_d(dst_md());
bool ok = is_fwd()
&& utils::one_of(
src_d.data_type(), data_type::f32, data_type::f16)
&& attr()->has_default_values()
&& set_default_formats() == status::success
&& src_d.is_plain() && dst_d.is_plain() && dst_d == src_d
&& axis() == 1 && check_format();
if (!ok) return status::unimplemented;
softmax_impl_.reset(new miopen_softmax_fwd_impl_t());
return softmax_impl_->init(this);
}
bool check_format() const {
return (memory_desc_wrapper(src_md()).matches_one_of_tag(
format_tag::a, format_tag::ab, format_tag::abc,
format_tag::abcd, format_tag::abcde)
&& memory_desc_wrapper(dst_md()).matches_one_of_tag(
format_tag::a, format_tag::ab, format_tag::abc,
format_tag::abcd, format_tag::abcde));
}
std::shared_ptr<miopen_softmax_impl_base_t> softmax_impl_;
};
status_t execute(const exec_ctx_t &ctx) const override;
private:
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
};
struct miopen_softmax_bwd_t : public gpu::primitive_t {
using gpu::primitive_t::primitive_t;
struct pd_t : public softmax_bwd_pd_t {
using softmax_bwd_pd_t::softmax_bwd_pd_t;
DECLARE_COMMON_PD_T("hip:miopen:any", miopen_softmax_bwd_t);
status_t init(impl::engine_t *) {
const memory_desc_wrapper diff_src_d(diff_src_md());
const memory_desc_wrapper diff_dst_d(diff_dst_md());
const memory_desc_wrapper dst_d(dst_md());
bool ok = !is_fwd()
&& utils::one_of(
dst_d.data_type(), data_type::f32, data_type::f16)
&& attr()->has_default_values()
&& set_default_formats() == status::success
&& dst_d.is_plain() && diff_dst_d.is_plain()
&& diff_src_d.is_plain() && diff_src_d == diff_dst_d
&& diff_src_d == dst_d && axis() == 1 && check_format();
if (!ok) return status::unimplemented;
softmax_impl_.reset(new miopen_softmax_bwd_impl_t());
return softmax_impl_->init(this);
}
bool check_format() const {
return (memory_desc_wrapper(dst_md()).matches_one_of_tag(
format_tag::a, format_tag::ab, format_tag::abc,
format_tag::abcd, format_tag::abcde)
&& memory_desc_wrapper(diff_src_md())
.matches_one_of_tag(format_tag::a,
format_tag::ab, format_tag::abc,
format_tag::abcd, format_tag::abcde)
&& memory_desc_wrapper(diff_dst_md())
.matches_one_of_tag(format_tag::a,
format_tag::ab, format_tag::abc,
format_tag::abcd, format_tag::abcde));
}
std::shared_ptr<miopen_softmax_impl_base_t> softmax_impl_;
};
status_t execute(const exec_ctx_t &ctx) const override;
private:
const pd_t *pd() const { return (const pd_t *)primitive_t::pd().get(); }
};
} } } }
#endif