#include <CL/cl.h>
#include "oneapi/dnnl/dnnl_ocl.h"
#include "common/c_types_map.hpp"
#include "common/engine.hpp"
#include "common/memory.hpp"
#include "common/utils.hpp"
#include "xpu/ocl/c_types_map.hpp"
#include "xpu/ocl/memory_storage.hpp"
using namespace dnnl::impl;
status_t dnnl_ocl_interop_memory_create_v2(memory_t **memory,
const memory_desc_t *md, engine_t *engine,
xpu::ocl::memory_kind_t memory_kind, int nhandles, void **handles) {
bool ok = !utils::any_null(memory, md, engine, handles) && nhandles > 0
&& engine->runtime_kind() == runtime_kind::ocl;
if (!ok) return status::invalid_arguments;
const auto mdw = memory_desc_wrapper(md);
if (mdw.format_any() || mdw.has_runtime_dims_or_strides()
|| mdw.is_host_scalar_desc())
return status::invalid_arguments;
std::vector<unsigned> flags_vec(nhandles);
std::vector<void *> handles_vec(nhandles);
for (int i = 0; i < nhandles; i++) {
unsigned f = (handles[i] == DNNL_MEMORY_ALLOCATE)
? memory_flags_t::alloc
: memory_flags_t::use_runtime_ptr;
void *h = (handles[i] == DNNL_MEMORY_ALLOCATE) ? nullptr : handles[i];
flags_vec[i] = f;
handles_vec[i] = h;
}
bool is_usm = memory_kind == xpu::ocl::memory_kind::usm;
std::vector<std::unique_ptr<memory_storage_t>> mem_storages(nhandles);
if (is_usm) {
for (int i = 0; i < nhandles; i++) {
if (handles[i] != DNNL_MEMORY_NONE
&& handles[i] != DNNL_MEMORY_ALLOCATE
&& xpu::ocl::usm::get_pointer_type(engine, handles[i])
== xpu::ocl::usm::kind_t::unknown
&& !engine->mayiuse_system_memory_allocators()) {
return status::invalid_arguments;
}
size_t sz = dnnl_memory_desc_get_size_v2(md, i);
mem_storages[i].reset(new xpu::ocl::usm_memory_storage_t(engine));
if (!mem_storages[i]) return status::out_of_memory;
CHECK(mem_storages[i]->init(flags_vec[i], sz, handles_vec[i]));
}
} else {
for (int i = 0; i < nhandles; i++) {
size_t sz = dnnl_memory_desc_get_size_v2(md, i);
mem_storages[i].reset(
new xpu::ocl::buffer_memory_storage_t(engine));
if (!mem_storages[i]) return status::out_of_memory;
CHECK(mem_storages[i]->init(flags_vec[i], sz, handles_vec[i]));
}
}
return safe_ptr_assign(
*memory, new memory_t(engine, md, std::move(mem_storages)));
}
status_t dnnl_ocl_interop_memory_create(memory_t **memory,
const memory_desc_t *md, engine_t *engine,
xpu::ocl::memory_kind_t memory_kind, void *handle) {
bool ok = !utils::any_null(memory, md, engine)
&& engine->runtime_kind() == runtime_kind::ocl;
if (!ok) return status::invalid_arguments;
const auto mdw = memory_desc_wrapper(md);
if (mdw.format_any() || mdw.has_runtime_dims_or_strides())
return status::invalid_arguments;
size_t size = mdw.size();
unsigned flags = (handle == DNNL_MEMORY_ALLOCATE)
? memory_flags_t::alloc
: memory_flags_t::use_runtime_ptr;
void *handle_ptr = (handle == DNNL_MEMORY_ALLOCATE) ? nullptr : handle;
bool is_usm = memory_kind == xpu::ocl::memory_kind::usm;
std::unique_ptr<memory_storage_t> mem_storage;
if (is_usm) {
if (handle != DNNL_MEMORY_NONE && handle != DNNL_MEMORY_ALLOCATE
&& xpu::ocl::usm::get_pointer_type(engine, handle)
== xpu::ocl::usm::kind_t::unknown
&& !engine->mayiuse_system_memory_allocators()) {
return status::invalid_arguments;
}
mem_storage.reset(new xpu::ocl::usm_memory_storage_t(engine));
} else
mem_storage.reset(new xpu::ocl::buffer_memory_storage_t(engine));
if (!mem_storage) return status::out_of_memory;
CHECK(mem_storage->init(flags, size, handle_ptr));
return safe_ptr_assign(
*memory, new memory_t(engine, md, std::move(mem_storage)));
}
status_t dnnl_ocl_interop_memory_get_mem_object(
const memory_t *memory, cl_mem *mem_object) {
if (utils::any_null(mem_object)) return status::invalid_arguments;
if (!memory) {
*mem_object = nullptr;
return status::success;
}
bool args_ok = (memory->engine()->runtime_kind() == runtime_kind::ocl);
if (!args_ok) return status::invalid_arguments;
void *handle;
status_t status = memory->get_data_handle(&handle);
if (status == status::success) *mem_object = static_cast<cl_mem>(handle);
return status;
}
status_t dnnl_ocl_interop_memory_set_mem_object(
memory_t *memory, cl_mem mem_object) {
bool args_ok = memory != nullptr
&& memory->engine()->runtime_kind() == runtime_kind::ocl;
if (!args_ok) return status::invalid_arguments;
return memory->set_data_handle(static_cast<void *>(mem_object));
}
status_t dnnl_ocl_interop_memory_get_memory_kind(
const memory_t *memory, xpu::ocl::memory_kind_t *memory_kind) {
bool ok = !utils::any_null(memory, memory_kind)
&& memory->engine()->runtime_kind() == runtime_kind::ocl;
if (!ok) return status::invalid_arguments;
*memory_kind = utils::downcast<const xpu::ocl::memory_storage_base_t *>(
memory->memory_storage())
->memory_kind();
return status::success;
}