#include "common/compiler_workarounds.hpp"
#include "gpu/amd/miopen_reduction.hpp"
#include "gpu/amd/stream.hpp"
#include "gpu/amd/sycl_hip_scoped_context.hpp"
#include "xpu/sycl/buffer_memory_storage.hpp"
#include "xpu/sycl/memory_storage_helper.hpp"
namespace dnnl {
namespace impl {
namespace gpu {
namespace amd {
status_t miopen_reduction_t::execute(const exec_ctx_t &ctx) const {
if (memory_desc_wrapper(pd()->src_md()).has_zero_dim())
return status::success;
amd::stream_t *hip_stream = utils::downcast<amd::stream_t *>(ctx.stream());
return hip_stream->interop_task([&](::sycl::handler &cgh) {
auto arg_src = CTX_IN_SYCL_MEMORY(DNNL_ARG_SRC);
auto arg_dst = CTX_OUT_SYCL_MEMORY(DNNL_ARG_DST);
auto arg_scratch
= CTX_SCRATCH_SYCL_MEMORY(memory_tracking::names::key_none);
compat::host_task(
cgh, [= COMPAT_THIS_CAPTURE](const compat::interop_handle &ih) {
auto &sycl_engine
= *utils::downcast<amd::engine_t *>(hip_stream->engine());
auto sc = hip_sycl_scoped_context_handler_t(sycl_engine);
auto handle = hip_stream->get_miopen_handle();
void *a = arg_src.get_native_pointer(ih);
void *c = arg_dst.get_native_pointer(ih);
void *scratch = arg_scratch.get_native_pointer(ih);
pd()->reduction_impl_->execute(handle, a, c, scratch);
});
});
}
} } } }