2021-01-04 11:29:40 +01:00
|
|
|
// The Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2021 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
|
2021-01-13 19:56:14 +01:00
|
|
|
#include <dlfcn.h>
|
2021-01-04 11:29:40 +01:00
|
|
|
#include <CL/cl.h>
|
2021-10-04 00:28:27 +02:00
|
|
|
#include <CL/cl_ext.h>
|
2021-01-04 11:29:40 +01:00
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
// Util
|
2021-01-04 11:29:40 +01:00
|
|
|
namespace ircd::cl
|
|
|
|
{
|
2021-01-05 23:50:53 +01:00
|
|
|
static bool is_error(const int &code) noexcept;
|
|
|
|
static int throw_on_error(const int &code);
|
|
|
|
template<class func, class... args> static int call(func&&, args&&...);
|
|
|
|
template<class T = string_view, class F, class id, class param> static T info(F&&, const id &, const param &, const mutable_buffer &);
|
2021-04-03 21:22:56 +02:00
|
|
|
template<class T = string_view, class F, class id0, class id1, class param> static T info(F&&, const id0 &, const id1 &, const param &, const mutable_buffer &);
|
2021-04-03 21:25:59 +02:00
|
|
|
|
|
|
|
static uint query_warp_size(cl_context, cl_device_id);
|
2021-01-04 11:29:40 +01:00
|
|
|
}
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
// Runtime state
|
|
|
|
namespace ircd::cl
|
|
|
|
{
|
|
|
|
static const size_t
|
2021-01-13 19:56:14 +01:00
|
|
|
OPTION_MAX {8},
|
2021-01-05 23:50:53 +01:00
|
|
|
PLATFORM_MAX {8},
|
|
|
|
DEVICE_MAX {8};
|
|
|
|
|
|
|
|
static uint
|
2021-01-13 19:56:14 +01:00
|
|
|
options,
|
2021-01-05 23:50:53 +01:00
|
|
|
platforms,
|
|
|
|
devices[PLATFORM_MAX];
|
|
|
|
|
2021-01-13 19:56:14 +01:00
|
|
|
static char
|
|
|
|
option[OPTION_MAX][256];
|
|
|
|
|
|
|
|
static void
|
|
|
|
*linkage;
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
static cl_platform_id
|
|
|
|
platform[PLATFORM_MAX];
|
|
|
|
|
|
|
|
static cl_device_id
|
|
|
|
device[PLATFORM_MAX][DEVICE_MAX];
|
|
|
|
|
2021-10-04 00:28:27 +02:00
|
|
|
static struct version
|
|
|
|
{
|
|
|
|
int major, minor;
|
|
|
|
}
|
|
|
|
api[PLATFORM_MAX][DEVICE_MAX];
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
static cl_context
|
|
|
|
primary;
|
|
|
|
|
2021-03-26 02:36:36 +01:00
|
|
|
extern struct stats
|
|
|
|
primary_stats;
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
static cl_command_queue
|
|
|
|
queue[PLATFORM_MAX][DEVICE_MAX];
|
|
|
|
|
|
|
|
static void handle_notify(const char *, const void *, size_t, void *) noexcept;
|
|
|
|
}
|
|
|
|
|
2021-03-26 02:36:36 +01:00
|
|
|
struct ircd::cl::stats
|
|
|
|
{
|
|
|
|
template<class T>
|
|
|
|
using item = ircd::stats::item<T>;
|
|
|
|
|
|
|
|
item<uint64_t>
|
2021-04-09 21:13:27 +02:00
|
|
|
sync_count,
|
|
|
|
flush_count,
|
2021-03-26 02:36:36 +01:00
|
|
|
alloc_count,
|
|
|
|
alloc_bytes,
|
|
|
|
dealloc_count,
|
|
|
|
dealloc_bytes,
|
2021-04-09 21:13:27 +02:00
|
|
|
work_waits,
|
|
|
|
work_waits_async,
|
|
|
|
work_errors,
|
2021-03-26 02:36:36 +01:00
|
|
|
exec_tasks,
|
|
|
|
exec_kern_tasks,
|
|
|
|
exec_kern_threads,
|
|
|
|
exec_kern_groups,
|
2021-04-09 21:13:27 +02:00
|
|
|
exec_write_tasks,
|
|
|
|
exec_write_bytes,
|
|
|
|
exec_read_tasks,
|
|
|
|
exec_read_bytes,
|
|
|
|
exec_copy_tasks,
|
|
|
|
exec_copy_bytes,
|
2021-03-26 02:36:36 +01:00
|
|
|
exec_barrier_tasks;
|
|
|
|
};
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
decltype(ircd::cl::log)
|
|
|
|
ircd::cl::log
|
|
|
|
{
|
|
|
|
"cl"
|
|
|
|
};
|
|
|
|
|
|
|
|
decltype(ircd::cl::version_api)
|
|
|
|
ircd::cl::version_api
|
2021-01-04 11:29:40 +01:00
|
|
|
{
|
|
|
|
"OpenCL", info::versions::API, CL_TARGET_OPENCL_VERSION,
|
|
|
|
{
|
2021-01-05 23:50:53 +01:00
|
|
|
#if defined(CL_VERSION_MAJOR) && defined(CL_VERSION_MINOR) && defined(CL_VERSION_PATCH)
|
|
|
|
CL_VERSION_MAJOR(CL_TARGET_OPENCL_VERSION),
|
|
|
|
CL_VERSION_MINOR(CL_TARGET_OPENCL_VERSION),
|
|
|
|
CL_VERSION_PATCH(CL_TARGET_OPENCL_VERSION),
|
|
|
|
#endif
|
2021-01-04 11:29:40 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
decltype(ircd::cl::version_abi)
|
|
|
|
ircd::cl::version_abi
|
2021-01-04 11:29:40 +01:00
|
|
|
{
|
2021-01-13 19:56:14 +01:00
|
|
|
"OpenCL", info::versions::ABI
|
2021-01-04 11:29:40 +01:00
|
|
|
};
|
2021-01-05 23:50:53 +01:00
|
|
|
|
2021-01-16 01:40:42 +01:00
|
|
|
decltype(ircd::cl::enable)
|
|
|
|
ircd::cl::enable
|
|
|
|
{
|
|
|
|
{ "name", "ircd.cl.enable" },
|
2021-05-12 08:39:35 +02:00
|
|
|
{ "default", true },
|
2021-01-16 01:40:42 +01:00
|
|
|
{ "persist", false },
|
|
|
|
};
|
|
|
|
|
2021-03-20 21:41:25 +01:00
|
|
|
decltype(ircd::cl::profile_queue)
|
|
|
|
ircd::cl::profile_queue
|
|
|
|
{
|
|
|
|
{ "name", "ircd.cl.profile.queue" },
|
|
|
|
{ "default", false },
|
|
|
|
{ "persist", false },
|
|
|
|
};
|
|
|
|
|
2021-05-10 06:24:10 +02:00
|
|
|
decltype(ircd::cl::nice_rate)
|
|
|
|
ircd::cl::nice_rate
|
|
|
|
{
|
|
|
|
{ "name", "ircd.cl.nice.rate" },
|
|
|
|
{ "default", 1L },
|
|
|
|
};
|
|
|
|
|
2021-03-26 02:36:36 +01:00
|
|
|
decltype(ircd::cl::primary_stats)
|
|
|
|
ircd::cl::primary_stats
|
|
|
|
{
|
2021-04-09 21:13:27 +02:00
|
|
|
{ { "name", "ircd.cl.sync.count" } },
|
|
|
|
{ { "name", "ircd.cl.flush.count" } },
|
|
|
|
{ { "name", "ircd.cl.alloc.count" } },
|
|
|
|
{ { "name", "ircd.cl.alloc.bytes" } },
|
|
|
|
{ { "name", "ircd.cl.dealloc.count" } },
|
|
|
|
{ { "name", "ircd.cl.dealloc.bytes" } },
|
|
|
|
{ { "name", "ircd.cl.work.waits" } },
|
|
|
|
{ { "name", "ircd.cl.work.waits.async" } },
|
|
|
|
{ { "name", "ircd.cl.work.errors" } },
|
|
|
|
{ { "name", "ircd.cl.exec.tasks" } },
|
|
|
|
{ { "name", "ircd.cl.exec.kern.tasks" } },
|
|
|
|
{ { "name", "ircd.cl.exec.kern.threads" } },
|
|
|
|
{ { "name", "ircd.cl.exec.kern.groups" } },
|
|
|
|
{ { "name", "ircd.cl.exec.write.tasks" } },
|
|
|
|
{ { "name", "ircd.cl.exec.write.bytes" } },
|
|
|
|
{ { "name", "ircd.cl.exec.read.tasks" } },
|
|
|
|
{ { "name", "ircd.cl.exec.read.bytes" } },
|
|
|
|
{ { "name", "ircd.cl.exec.copy.tasks" } },
|
|
|
|
{ { "name", "ircd.cl.exec.copy.bytes" } },
|
|
|
|
{ { "name", "ircd.cl.exec.barrier.tasks" } },
|
2021-03-26 02:36:36 +01:00
|
|
|
};
|
|
|
|
|
2021-05-12 08:09:47 +02:00
|
|
|
decltype(ircd::cl::envs)
|
|
|
|
ircd::cl::envs
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{ "name", "LP_NUM_THREADS" },
|
|
|
|
{ "default", "0" },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ "name", "MESA_NO_MINMAX_CACHE" },
|
|
|
|
{ "default", "true" },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ "name", "MESA_GLSL_CACHE_DISABLE" },
|
|
|
|
{ "default", "true" },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ "name", "AMD_DEBUG" },
|
|
|
|
{ "default", "nogfx,reserve_vmid" },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ "name", "R600_DEBUG" },
|
|
|
|
{ "default", "forcedma" },
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
//
|
|
|
|
// init
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::cl::init::init()
|
|
|
|
{
|
2021-01-16 01:40:42 +01:00
|
|
|
if(!enable)
|
|
|
|
{
|
|
|
|
log::dwarning
|
|
|
|
{
|
|
|
|
log, "OpenCL hardware acceleration is not available or enabled."
|
|
|
|
};
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-13 19:56:14 +01:00
|
|
|
const ctx::posix::enable_pthread enable_pthread;
|
|
|
|
|
|
|
|
// Setup options
|
2021-05-12 08:09:47 +02:00
|
|
|
for(const auto &item : envs)
|
|
|
|
{
|
|
|
|
assert(options < OPTION_MAX);
|
|
|
|
fmt::sprintf
|
|
|
|
{
|
|
|
|
option[options], "%s=%s",
|
|
|
|
item.name,
|
|
|
|
string_view{item},
|
|
|
|
};
|
2021-01-13 19:56:14 +01:00
|
|
|
|
2021-05-12 08:09:47 +02:00
|
|
|
sys::call(putenv, option[options++]);
|
|
|
|
}
|
2021-01-13 19:56:14 +01:00
|
|
|
|
|
|
|
// Load the pipe.
|
|
|
|
assert(!linkage);
|
|
|
|
if(!(linkage = dlopen("libOpenCL.so", RTLD_LAZY | RTLD_GLOBAL)))
|
|
|
|
return;
|
|
|
|
|
2021-10-04 00:28:27 +02:00
|
|
|
// Get the platforms.
|
|
|
|
init_platforms();
|
|
|
|
|
|
|
|
// Report the platforms.
|
|
|
|
log_platform_info();
|
|
|
|
|
|
|
|
// Get the devices.
|
|
|
|
init_devices();
|
|
|
|
|
|
|
|
// Report the devices.
|
|
|
|
log_dev_info();
|
|
|
|
|
|
|
|
// Various other inits.
|
|
|
|
init_pipes();
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::init::~init()
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
if(!linkage)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const ctx::posix::enable_pthread enable_pthread;
|
|
|
|
log::debug
|
|
|
|
{
|
|
|
|
log, "Shutting down OpenCL...",
|
|
|
|
};
|
|
|
|
|
|
|
|
fini_pipes();
|
|
|
|
dlclose(linkage);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::cl::init::init_platforms()
|
|
|
|
{
|
2021-01-13 19:56:14 +01:00
|
|
|
// OpenCL sez platform=null is implementation defined.
|
|
|
|
info(clGetPlatformInfo, nullptr, CL_PLATFORM_VERSION, version_abi.string);
|
|
|
|
|
|
|
|
// Get the platforms.
|
2021-01-05 23:50:53 +01:00
|
|
|
call(clGetPlatformIDs, PLATFORM_MAX, platform, &platforms);
|
|
|
|
|
2021-10-04 00:28:27 +02:00
|
|
|
return platforms;
|
|
|
|
}
|
2021-01-05 23:50:53 +01:00
|
|
|
|
2021-10-04 00:28:27 +02:00
|
|
|
size_t
|
|
|
|
ircd::cl::init::init_devices()
|
|
|
|
{
|
|
|
|
// Get the devices.
|
2021-01-05 23:50:53 +01:00
|
|
|
size_t devices_total(0);
|
|
|
|
for(size_t i(0); i < platforms; ++i)
|
|
|
|
{
|
|
|
|
static const auto type
|
|
|
|
{
|
|
|
|
CL_DEVICE_TYPE_GPU | CL_DEVICE_TYPE_ACCELERATOR
|
|
|
|
};
|
|
|
|
|
|
|
|
call(clGetDeviceIDs, platform[i], type, DEVICE_MAX, device[i], devices + i);
|
|
|
|
devices_total += devices[i];
|
|
|
|
}
|
|
|
|
|
2021-10-04 00:28:27 +02:00
|
|
|
// Gather the API versions for the devices.
|
|
|
|
for(size_t i(0); i < platforms; ++i)
|
|
|
|
for(size_t j(0); j < devices[i]; ++j)
|
|
|
|
{
|
|
|
|
// OpenCL sez:
|
|
|
|
// OpenCL<space><major_version.minor_version><space><vendor-specific information>
|
|
|
|
string_view ver; char buf[32];
|
|
|
|
ver = info(clGetDeviceInfo, device[i][j], CL_DEVICE_VERSION, buf);
|
|
|
|
ver = lstrip(ver, "OpenCL ");
|
|
|
|
ver = split(ver, ' ').first;
|
|
|
|
const auto &[major, minor]
|
|
|
|
{
|
|
|
|
split(ver, '.')
|
|
|
|
};
|
|
|
|
|
|
|
|
api[i][j].major = lex_cast<uint>(major);
|
|
|
|
api[i][j].minor = lex_cast<uint>(minor);
|
|
|
|
}
|
|
|
|
|
|
|
|
return devices_total;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::cl::init::init_pipes()
|
|
|
|
{
|
2021-01-05 23:50:53 +01:00
|
|
|
// Gather all devices we'll use.
|
|
|
|
size_t _devs {0};
|
|
|
|
cl_device_id _dev[DEVICE_MAX];
|
|
|
|
for(size_t i(0); i < platforms; ++i)
|
|
|
|
for(size_t j(0); j < devices[i]; ++j)
|
|
|
|
_dev[_devs++] = device[i][j];
|
|
|
|
|
|
|
|
// Create a context from gathered devices.
|
|
|
|
cl_int err {CL_SUCCESS};
|
|
|
|
cl_context_properties ctxprop {0};
|
|
|
|
primary = clCreateContext(&ctxprop, _devs, _dev, handle_notify, nullptr, &err);
|
|
|
|
throw_on_error(err);
|
|
|
|
|
2021-04-10 01:00:19 +02:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
|
|
|
// Setup legacy queue properties
|
|
|
|
cl_command_queue_properties legacy_qprop {0};
|
|
|
|
legacy_qprop |= (profile_queue? CL_QUEUE_PROFILING_ENABLE: cl_command_queue_properties{0});
|
|
|
|
//legacy_qprop |= CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE;
|
|
|
|
|
|
|
|
// Setup modern queue properties
|
2021-03-21 01:45:20 +01:00
|
|
|
cl_queue_properties qprop {0};
|
2021-04-10 01:00:19 +02:00
|
|
|
qprop |= (profile_queue? CL_QUEUE_PROFILING_ENABLE: cl_queue_properties{0});
|
|
|
|
//qprop |= CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE;
|
2021-03-21 01:45:20 +01:00
|
|
|
//qprop |= CL_QUEUE_ON_DEVICE;
|
|
|
|
//qprop |= CL_QUEUE_ON_DEVICE_DEFAULT;
|
2021-04-10 01:00:19 +02:00
|
|
|
|
|
|
|
// Create a queue for each device.
|
2021-01-05 23:50:53 +01:00
|
|
|
for(size_t i(0); i < platforms; ++i)
|
|
|
|
for(size_t j(0); j < devices[i]; ++j)
|
|
|
|
{
|
2021-04-10 01:00:19 +02:00
|
|
|
queue[i][j] = profile_queue?
|
|
|
|
clCreateCommandQueue(primary, device[i][j], legacy_qprop, &err):
|
|
|
|
clCreateCommandQueueWithProperties(primary, device[i][j], &qprop, &err);
|
|
|
|
//clCreateCommandQueue(primary, device[i][j], legacy_qprop, &err);
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
throw_on_error(err);
|
|
|
|
}
|
2021-03-11 18:11:57 +01:00
|
|
|
|
2021-04-10 01:00:19 +02:00
|
|
|
// For any inits in the work subsystem.
|
2021-03-11 18:11:57 +01:00
|
|
|
work::init();
|
2021-10-04 00:28:27 +02:00
|
|
|
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
return _devs;
|
2021-01-05 23:50:53 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 00:28:27 +02:00
|
|
|
void
|
|
|
|
ircd::cl::init::fini_pipes()
|
2021-01-05 23:50:53 +01:00
|
|
|
{
|
|
|
|
if(primary)
|
2021-03-11 18:11:57 +01:00
|
|
|
work::fini();
|
2021-01-08 09:53:12 +01:00
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
for(size_t i(0); i < PLATFORM_MAX; ++i)
|
|
|
|
for(size_t j(0); j < DEVICE_MAX; ++j)
|
|
|
|
if(queue[i][j])
|
|
|
|
{
|
|
|
|
call(clReleaseCommandQueue, queue[i][j]);
|
|
|
|
queue[i][j] = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(primary)
|
|
|
|
{
|
|
|
|
call(clReleaseContext, primary);
|
|
|
|
primary = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-22 19:18:25 +02:00
|
|
|
void
|
|
|
|
ircd::cl::log_platform_info()
|
|
|
|
{
|
|
|
|
for(size_t i(0); i < platforms; ++i)
|
|
|
|
log_platform_info(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::log_platform_info(const uint i)
|
|
|
|
{
|
|
|
|
char buf[3][64];
|
|
|
|
char extbuf[320];
|
|
|
|
log::logf
|
|
|
|
{
|
|
|
|
log, log::level::DEBUG,
|
|
|
|
"OpenCL [%u][*] %-3d :%s :%s :%s :%s",
|
|
|
|
i,
|
|
|
|
CL_TARGET_OPENCL_VERSION,
|
|
|
|
info(clGetPlatformInfo, platform[i], CL_PLATFORM_VERSION, buf[0]),
|
|
|
|
info(clGetPlatformInfo, platform[i], CL_PLATFORM_VENDOR, buf[1]),
|
|
|
|
info(clGetPlatformInfo, platform[i], CL_PLATFORM_NAME, buf[2]),
|
|
|
|
info(clGetPlatformInfo, platform[i], CL_PLATFORM_EXTENSIONS, extbuf),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-04-03 21:25:59 +02:00
|
|
|
void
|
2021-05-01 23:29:38 +02:00
|
|
|
ircd::cl::log_dev_info()
|
2021-04-03 21:25:59 +02:00
|
|
|
{
|
2021-05-01 23:29:38 +02:00
|
|
|
for(size_t i(0); i < platforms; ++i)
|
|
|
|
log_dev_info(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::log_dev_info(const uint i)
|
|
|
|
{
|
|
|
|
if(unlikely(i >= PLATFORM_MAX))
|
|
|
|
throw std::out_of_range
|
|
|
|
{
|
|
|
|
"Invalid platform identifier."
|
|
|
|
};
|
|
|
|
|
|
|
|
for(size_t j(0); j < devices[i]; ++j)
|
|
|
|
log_dev_info(i, j);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::log_dev_info(const uint i,
|
|
|
|
const uint j)
|
|
|
|
{
|
|
|
|
if(unlikely(i >= PLATFORM_MAX || j >= DEVICE_MAX))
|
|
|
|
throw std::out_of_range
|
|
|
|
{
|
|
|
|
"Invalid platform or device identifier."
|
|
|
|
};
|
|
|
|
|
2021-04-03 21:25:59 +02:00
|
|
|
const auto &dev
|
|
|
|
{
|
|
|
|
device[i][j]
|
|
|
|
};
|
|
|
|
|
|
|
|
char buf[12][192];
|
|
|
|
char pbuf[8][64];
|
2021-05-01 20:45:35 +02:00
|
|
|
|
|
|
|
const auto type
|
|
|
|
{
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_TYPE, buf[0])
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto type_str
|
|
|
|
{
|
|
|
|
type & CL_DEVICE_TYPE_CPU?
|
|
|
|
"CPU"_sv:
|
|
|
|
type & CL_DEVICE_TYPE_GPU?
|
|
|
|
"GPU"_sv:
|
|
|
|
type & CL_DEVICE_TYPE_ACCELERATOR?
|
|
|
|
"APU"_sv:
|
|
|
|
"DEV"_sv
|
|
|
|
};
|
|
|
|
|
|
|
|
const fmt::bsprintf<32> head
|
|
|
|
{
|
2021-05-12 08:09:47 +02:00
|
|
|
"%s id:%u:%u",
|
2021-05-01 20:45:35 +02:00
|
|
|
type_str,
|
|
|
|
i,
|
|
|
|
j,
|
|
|
|
};
|
|
|
|
|
2021-04-03 21:25:59 +02:00
|
|
|
log::info
|
|
|
|
{
|
2021-05-01 20:45:35 +02:00
|
|
|
log, "%s %-3d :%s :%s :%s :%s",
|
|
|
|
string_view{head},
|
2021-04-03 21:25:59 +02:00
|
|
|
CL_TARGET_OPENCL_VERSION,
|
|
|
|
info(clGetDeviceInfo, dev, CL_DEVICE_VERSION, buf[0]),
|
|
|
|
info(clGetDeviceInfo, dev, CL_DEVICE_VENDOR, buf[1]),
|
|
|
|
info(clGetDeviceInfo, dev, CL_DEVICE_NAME, buf[2]),
|
|
|
|
info(clGetDeviceInfo, dev, CL_DRIVER_VERSION, buf[3]),
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto wid
|
|
|
|
{
|
|
|
|
info<std::array<size_t, 3>>(clGetDeviceInfo, dev, CL_DEVICE_MAX_WORK_ITEM_SIZES, buf[0])
|
|
|
|
};
|
|
|
|
|
|
|
|
log::info
|
|
|
|
{
|
2021-05-01 20:45:35 +02:00
|
|
|
log, "%s %u$mHz unit %u[%lu:%lu] dims %u[%u:%u:%u]",
|
|
|
|
string_view{head},
|
2021-04-03 21:25:59 +02:00
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_MAX_CLOCK_FREQUENCY, buf[0]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_MAX_COMPUTE_UNITS, buf[1]),
|
|
|
|
primary? query_warp_size(primary, dev): 0UL,
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_MAX_WORK_GROUP_SIZE, buf[3]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS, buf[4]),
|
|
|
|
wid[0], wid[1], wid[2],
|
|
|
|
};
|
|
|
|
|
|
|
|
const bool native_kernel
|
|
|
|
(
|
|
|
|
info<ulong>(clGetDeviceInfo, dev, CL_DEVICE_EXECUTION_CAPABILITIES, buf[0]) & CL_EXEC_NATIVE_KERNEL
|
|
|
|
);
|
|
|
|
|
|
|
|
log::info
|
|
|
|
{
|
2021-10-04 00:29:13 +02:00
|
|
|
log, "%s %u$bit-%s %s line %s align %s page %s alloc %s",
|
2021-05-01 20:45:35 +02:00
|
|
|
string_view{head},
|
2021-04-03 21:25:59 +02:00
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_ADDRESS_BITS, buf[0]),
|
|
|
|
info<bool>(clGetDeviceInfo, dev, CL_DEVICE_ENDIAN_LITTLE, buf[1])?
|
|
|
|
"LE"_sv: "BE"_sv,
|
|
|
|
info<bool>(clGetDeviceInfo, dev, CL_DEVICE_ERROR_CORRECTION_SUPPORT, buf[2])?
|
|
|
|
"ECC"_sv: "non-ECC"_sv,
|
2021-10-04 00:29:13 +02:00
|
|
|
pretty(pbuf[0], iec(info<uint>(clGetDeviceInfo, dev, CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE, buf[3]))),
|
|
|
|
pretty(pbuf[1], iec(info<uint>(clGetDeviceInfo, dev, CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE, buf[4]))),
|
|
|
|
pretty(pbuf[2], iec(info<uint>(clGetDeviceInfo, dev, CL_DEVICE_MEM_BASE_ADDR_ALIGN, buf[5]))),
|
|
|
|
pretty(pbuf[3], iec(info<ulong>(clGetDeviceInfo, dev, CL_DEVICE_MAX_MEM_ALLOC_SIZE, buf[6]))),
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto global_chans
|
|
|
|
{
|
|
|
|
api[i][j].major > 1 || (api[i][j].major == 1 && api[i][j].minor >= 2)?
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_GLOBAL_MEM_CHANNELS_AMD, buf[4]): 0
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto global_banks
|
|
|
|
{
|
|
|
|
api[i][j].major > 1 || (api[i][j].major == 1 && api[i][j].minor >= 2)?
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_GLOBAL_MEM_CHANNEL_BANKS_AMD, buf[3]): 0
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto local_banks
|
|
|
|
{
|
|
|
|
api[i][j].major > 1 || (api[i][j].major == 1 && api[i][j].minor >= 2)?
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_LOCAL_MEM_BANKS_AMD, buf[7]): 0
|
2021-04-03 21:25:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
log::info
|
|
|
|
{
|
2021-10-04 00:29:13 +02:00
|
|
|
log, "%s global %s cache %s type[%02x] banks %u chans %u; local %s type[%02x] banks %u; const %s",
|
2021-05-01 20:45:35 +02:00
|
|
|
string_view{head},
|
2021-04-03 21:25:59 +02:00
|
|
|
pretty(pbuf[0], iec(info<ulong>(clGetDeviceInfo, dev, CL_DEVICE_GLOBAL_MEM_SIZE, buf[0]))),
|
|
|
|
pretty(pbuf[1], iec(info<ulong>(clGetDeviceInfo, dev, CL_DEVICE_GLOBAL_MEM_CACHE_SIZE, buf[1]))),
|
2021-10-04 00:29:13 +02:00
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_GLOBAL_MEM_CACHE_TYPE, buf[2]),
|
|
|
|
global_banks,
|
|
|
|
global_chans,
|
|
|
|
pretty(pbuf[2], iec(info<ulong>(clGetDeviceInfo, dev, CL_DEVICE_LOCAL_MEM_SIZE, buf[5]))),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_LOCAL_MEM_TYPE, buf[6]),
|
|
|
|
local_banks,
|
|
|
|
pretty(pbuf[3], iec(info<ulong>(clGetDeviceInfo, dev, CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE, buf[8]))),
|
2021-04-06 00:09:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
log::info
|
|
|
|
{
|
2021-05-01 20:45:35 +02:00
|
|
|
log, "%s char%u short%u half%u int%u float%u long%u double%u; argc:%u cargc:%u SPIR-V:%b",
|
|
|
|
string_view{head},
|
2021-04-06 00:09:48 +02:00
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR, buf[0]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT, buf[1]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF, buf[2]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_NATIVE_VECTOR_WIDTH_INT, buf[3]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT, buf[4]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG, buf[5]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE, buf[6]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_MAX_PARAMETER_SIZE, buf[7]),
|
|
|
|
info<uint>(clGetDeviceInfo, dev, CL_DEVICE_MAX_CONSTANT_ARGS, buf[8]),
|
|
|
|
native_kernel,
|
2021-04-03 21:25:59 +02:00
|
|
|
};
|
|
|
|
|
2021-09-15 10:42:43 +02:00
|
|
|
char extensions_buf[2048];
|
|
|
|
const string_view extensions
|
|
|
|
{
|
|
|
|
info(clGetDeviceInfo, dev, CL_DEVICE_EXTENSIONS, extensions_buf)
|
|
|
|
};
|
|
|
|
|
2021-05-01 20:45:35 +02:00
|
|
|
log::logf
|
2021-04-03 21:25:59 +02:00
|
|
|
{
|
2021-05-01 20:45:35 +02:00
|
|
|
log, log::level::DEBUG,
|
|
|
|
"%s :%s",
|
|
|
|
string_view{head},
|
2021-09-15 10:42:43 +02:00
|
|
|
extensions,
|
2021-04-03 21:25:59 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Silly quirks of OpenCL force us to setup a context, compile a program, and
|
|
|
|
/// instantiate a kernel to find out the warp/wavefront size characteristic.
|
|
|
|
/// Note that other thread-grouping characteristics are available from device
|
|
|
|
/// properties directly.
|
|
|
|
uint
|
|
|
|
ircd::cl::query_warp_size(cl_context context,
|
|
|
|
cl_device_id device)
|
|
|
|
{
|
|
|
|
//TODO: XXX
|
|
|
|
assert(primary);
|
|
|
|
assert(context == primary);
|
|
|
|
|
|
|
|
cl::code code
|
|
|
|
{
|
|
|
|
"__kernel void ircd_test() {}"
|
|
|
|
};
|
|
|
|
|
|
|
|
cl::kern kern
|
|
|
|
{
|
|
|
|
code, "ircd_test"
|
|
|
|
};
|
|
|
|
|
|
|
|
return kern.preferred_group_size_multiple(device);
|
|
|
|
}
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
//
|
|
|
|
// interface
|
|
|
|
//
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::sync()
|
|
|
|
{
|
2021-05-01 20:46:41 +02:00
|
|
|
if(unlikely(!primary))
|
|
|
|
return;
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
|
|
|
call
|
|
|
|
(
|
|
|
|
clFinish, q
|
|
|
|
);
|
2021-04-09 21:13:27 +02:00
|
|
|
|
|
|
|
++primary_stats.sync_count;
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::flush()
|
|
|
|
{
|
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
|
|
|
call
|
|
|
|
(
|
|
|
|
clFlush, q
|
|
|
|
);
|
2021-04-09 21:13:27 +02:00
|
|
|
|
|
|
|
++primary_stats.flush_count;
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// exec
|
|
|
|
//
|
|
|
|
|
2021-03-11 18:11:57 +01:00
|
|
|
namespace ircd::cl
|
|
|
|
{
|
2021-03-21 01:45:20 +01:00
|
|
|
static const size_t _deps_list_max {32};
|
2021-03-13 00:50:27 +01:00
|
|
|
static thread_local cl_event _deps_list[_deps_list_max];
|
|
|
|
|
2021-03-26 02:43:04 +01:00
|
|
|
static void handle_submitted(cl::exec *const &, const exec::opts &);
|
2021-03-13 00:50:27 +01:00
|
|
|
static vector_view<cl_event> make_deps_default(cl::work *const &, const exec::opts &);
|
|
|
|
static vector_view<cl_event> make_deps(cl::work *const &, const exec::opts &);
|
2021-03-11 18:11:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
|
|
|
decltype(ircd::util::instance_list<ircd::cl::work>::allocator)
|
|
|
|
ircd::util::instance_list<ircd::cl::work>::allocator
|
|
|
|
{};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
decltype(ircd::util::instance_list<ircd::cl::work>::list)
|
|
|
|
ircd::util::instance_list<ircd::cl::work>::list
|
|
|
|
{
|
|
|
|
allocator
|
|
|
|
};
|
|
|
|
|
2021-03-13 00:50:27 +01:00
|
|
|
decltype(ircd::cl::exec::opts_default)
|
|
|
|
ircd::cl::exec::opts_default;
|
|
|
|
|
|
|
|
ircd::cl::exec::exec(const opts &opts)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto deps
|
|
|
|
{
|
|
|
|
make_deps(this, opts)
|
|
|
|
};
|
|
|
|
|
2021-03-17 23:50:38 +01:00
|
|
|
assert(!this->handle);
|
2021-03-13 00:50:27 +01:00
|
|
|
call
|
|
|
|
(
|
|
|
|
clEnqueueBarrierWithWaitList,
|
|
|
|
q,
|
|
|
|
deps.size(),
|
|
|
|
deps.size()? deps.data(): nullptr,
|
|
|
|
reinterpret_cast<cl_event *>(&this->handle)
|
|
|
|
);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
|
|
|
primary_stats.exec_barrier_tasks += 1;
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-03-13 00:50:27 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
log, "Exec Barrier :%s",
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
ircd::cl::exec::exec(kern &kern,
|
2021-03-13 00:50:27 +01:00
|
|
|
const kern::range &work,
|
|
|
|
const opts &opts)
|
2021-01-08 09:53:12 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
size_t dim(0);
|
|
|
|
for(size_t i(0); i < work.global.size(); ++i)
|
2021-03-26 02:36:36 +01:00
|
|
|
dim += work.global[i] > 0 && dim == i;
|
2021-01-08 09:53:12 +01:00
|
|
|
|
2021-03-25 04:01:15 +01:00
|
|
|
if(!dim)
|
|
|
|
return;
|
|
|
|
|
2021-03-11 18:11:57 +01:00
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
2021-03-13 00:50:27 +01:00
|
|
|
const auto deps
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
2021-03-13 00:50:27 +01:00
|
|
|
make_deps(this, opts)
|
2021-01-08 09:53:12 +01:00
|
|
|
};
|
|
|
|
|
2021-09-22 19:11:22 +02:00
|
|
|
assert(!this->object);
|
|
|
|
this->object = &kern;
|
|
|
|
|
2021-03-17 23:50:38 +01:00
|
|
|
assert(!this->handle);
|
2021-01-08 09:53:12 +01:00
|
|
|
call
|
|
|
|
(
|
|
|
|
clEnqueueNDRangeKernel,
|
|
|
|
q,
|
2021-02-11 10:55:46 +01:00
|
|
|
cl_kernel(kern.handle),
|
2021-01-08 09:53:12 +01:00
|
|
|
dim,
|
|
|
|
work.offset.data(),
|
|
|
|
work.global.data(),
|
|
|
|
work.local.data(),
|
2021-03-13 00:50:27 +01:00
|
|
|
deps.size(),
|
|
|
|
deps.size()? deps.data(): nullptr,
|
2021-01-08 09:53:12 +01:00
|
|
|
reinterpret_cast<cl_event *>(&this->handle)
|
|
|
|
);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
|
|
|
size_t global_size(work.global[0]);
|
|
|
|
for(size_t i(1); i < dim; ++i)
|
|
|
|
global_size *= work.global[i];
|
|
|
|
|
|
|
|
size_t local_size(work.local[0]);
|
|
|
|
for(size_t i(1); i < dim; ++i)
|
|
|
|
local_size *= work.local[i];
|
|
|
|
|
|
|
|
primary_stats.exec_kern_tasks += 1;
|
|
|
|
primary_stats.exec_kern_threads += global_size;
|
|
|
|
primary_stats.exec_kern_groups += global_size / local_size;
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
log, "Exec Kern :%s",
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2021-03-19 19:13:20 +01:00
|
|
|
ircd::cl::exec::exec(data &dst,
|
|
|
|
const data &src,
|
|
|
|
const opts &opts)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
2021-09-22 19:11:22 +02:00
|
|
|
assert(src.handle);
|
|
|
|
assert(dst.handle);
|
2021-03-19 19:13:20 +01:00
|
|
|
const size_t size
|
|
|
|
{
|
2021-09-16 06:19:36 +02:00
|
|
|
opts.size == -1UL?
|
|
|
|
std::min(dst.size(), src.size()):
|
|
|
|
opts.size
|
2021-03-19 19:13:20 +01:00
|
|
|
};
|
|
|
|
|
2021-09-16 06:19:36 +02:00
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-09-22 19:11:22 +02:00
|
|
|
assert(!this->object);
|
|
|
|
this->object = &dst;
|
|
|
|
|
|
|
|
const auto deps
|
|
|
|
{
|
|
|
|
make_deps(this, opts)
|
|
|
|
};
|
|
|
|
|
2021-03-19 19:13:20 +01:00
|
|
|
assert(!this->handle);
|
|
|
|
call
|
|
|
|
(
|
|
|
|
clEnqueueCopyBuffer,
|
|
|
|
q,
|
|
|
|
cl_mem(src.handle),
|
|
|
|
cl_mem(dst.handle),
|
|
|
|
opts.offset[1],
|
|
|
|
opts.offset[0],
|
|
|
|
size,
|
|
|
|
deps.size(),
|
|
|
|
deps.size()? deps.data(): nullptr,
|
|
|
|
reinterpret_cast<cl_event *>(&this->handle)
|
|
|
|
);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
2021-04-09 21:13:27 +02:00
|
|
|
primary_stats.exec_copy_bytes += size;
|
|
|
|
primary_stats.exec_copy_tasks += 1;
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-03-19 19:13:20 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
log, "Exec Copy :%s",
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
ircd::cl::exec::exec(data &data,
|
|
|
|
const mutable_buffer &buf,
|
2021-03-13 00:50:27 +01:00
|
|
|
const opts &opts)
|
2021-01-08 09:53:12 +01:00
|
|
|
try
|
|
|
|
{
|
2021-03-11 18:11:57 +01:00
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
2021-09-16 06:19:36 +02:00
|
|
|
const size_t size
|
2021-03-28 04:48:03 +02:00
|
|
|
{
|
2021-09-16 06:19:36 +02:00
|
|
|
opts.size == -1UL?
|
|
|
|
ircd::size(buf):
|
|
|
|
opts.size
|
2021-03-28 04:48:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-09-22 19:11:22 +02:00
|
|
|
assert(!this->object);
|
|
|
|
this->object = &data;
|
|
|
|
|
2021-03-13 00:50:27 +01:00
|
|
|
const auto deps
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
2021-03-13 00:50:27 +01:00
|
|
|
make_deps(this, opts)
|
2021-01-08 09:53:12 +01:00
|
|
|
};
|
|
|
|
|
2021-03-17 23:50:38 +01:00
|
|
|
assert(!this->handle);
|
2021-01-08 09:53:12 +01:00
|
|
|
call
|
|
|
|
(
|
|
|
|
clEnqueueReadBuffer,
|
|
|
|
q,
|
2021-02-11 10:55:46 +01:00
|
|
|
cl_mem(data.handle),
|
2021-03-13 00:50:27 +01:00
|
|
|
opts.blocking,
|
2021-03-19 19:13:20 +01:00
|
|
|
opts.offset[0],
|
2021-03-28 04:48:03 +02:00
|
|
|
size,
|
2021-01-08 09:53:12 +01:00
|
|
|
ircd::data(buf),
|
2021-03-13 00:50:27 +01:00
|
|
|
deps.size(),
|
|
|
|
deps.size()? deps.data(): nullptr,
|
2021-01-08 09:53:12 +01:00
|
|
|
reinterpret_cast<cl_event *>(&this->handle)
|
|
|
|
);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
2021-04-09 21:13:27 +02:00
|
|
|
primary_stats.exec_read_bytes += size;
|
|
|
|
primary_stats.exec_read_tasks += 1;
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
2021-04-02 21:55:13 +02:00
|
|
|
log, "Exec Read data:%p cl_mem:%p buf:%p,%zu :%s",
|
|
|
|
&data,
|
|
|
|
data.handle,
|
|
|
|
ircd::data(buf),
|
|
|
|
ircd::size(buf),
|
2021-01-08 09:53:12 +01:00
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::exec::exec(data &data,
|
|
|
|
const const_buffer &buf,
|
2021-03-13 00:50:27 +01:00
|
|
|
const opts &opts)
|
2021-01-08 09:53:12 +01:00
|
|
|
try
|
|
|
|
{
|
2021-03-11 18:11:57 +01:00
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
2021-09-16 06:19:36 +02:00
|
|
|
const size_t size
|
2021-03-28 04:48:03 +02:00
|
|
|
{
|
2021-09-16 06:19:36 +02:00
|
|
|
opts.size == -1UL?
|
|
|
|
ircd::size(buf):
|
|
|
|
opts.size
|
2021-03-28 04:48:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-09-22 19:11:22 +02:00
|
|
|
assert(!this->object);
|
|
|
|
this->object = &data;
|
|
|
|
|
2021-03-13 00:50:27 +01:00
|
|
|
const auto deps
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
2021-03-13 00:50:27 +01:00
|
|
|
make_deps(this, opts)
|
2021-01-08 09:53:12 +01:00
|
|
|
};
|
|
|
|
|
2021-03-18 01:15:03 +01:00
|
|
|
assert(!this->handle);
|
2021-01-08 09:53:12 +01:00
|
|
|
call
|
|
|
|
(
|
2021-03-10 14:22:40 +01:00
|
|
|
clEnqueueWriteBuffer,
|
2021-01-08 09:53:12 +01:00
|
|
|
q,
|
2021-02-11 10:55:46 +01:00
|
|
|
cl_mem(data.handle),
|
2021-03-13 00:50:27 +01:00
|
|
|
opts.blocking,
|
2021-03-19 19:13:20 +01:00
|
|
|
opts.offset[0],
|
2021-03-28 04:48:03 +02:00
|
|
|
size,
|
2021-01-08 09:53:12 +01:00
|
|
|
mutable_cast(ircd::data(buf)),
|
2021-03-13 00:50:27 +01:00
|
|
|
deps.size(),
|
|
|
|
deps.size()? deps.data(): nullptr,
|
2021-01-08 09:53:12 +01:00
|
|
|
reinterpret_cast<cl_event *>(&this->handle)
|
|
|
|
);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
2021-04-09 21:13:27 +02:00
|
|
|
primary_stats.exec_write_bytes += size;
|
|
|
|
primary_stats.exec_write_tasks += 1;
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
2021-04-02 21:55:13 +02:00
|
|
|
log, "Exec Write data:%p cl_mem:%p buf:%p,%zu :%s",
|
|
|
|
&data,
|
|
|
|
data.handle,
|
|
|
|
ircd::data(buf),
|
|
|
|
ircd::size(buf),
|
2021-01-08 09:53:12 +01:00
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2021-03-18 01:15:03 +01:00
|
|
|
ircd::cl::exec::exec(data &data,
|
2021-03-29 19:26:57 +02:00
|
|
|
const pair<size_t, off_t> &slice,
|
2021-03-18 01:15:03 +01:00
|
|
|
const read_closure &closure,
|
|
|
|
const opts &opts)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
2021-03-29 19:26:57 +02:00
|
|
|
const auto size
|
2021-03-18 01:15:03 +01:00
|
|
|
{
|
2021-03-29 19:26:57 +02:00
|
|
|
slice.first?:
|
2021-09-16 06:19:36 +02:00
|
|
|
opts.size == -1UL?
|
|
|
|
data.size():
|
|
|
|
opts.size
|
2021-03-18 01:15:03 +01:00
|
|
|
};
|
|
|
|
|
2021-09-16 06:19:36 +02:00
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-03-29 19:26:57 +02:00
|
|
|
const auto offset
|
2021-03-18 01:15:03 +01:00
|
|
|
{
|
2021-03-29 19:26:57 +02:00
|
|
|
slice.second?:
|
|
|
|
opts.offset[0]
|
|
|
|
};
|
|
|
|
|
|
|
|
assert(size_t(size) <= data.size());
|
|
|
|
assert(size_t(offset) <= data.size());
|
|
|
|
|
2021-09-22 19:11:22 +02:00
|
|
|
assert(!this->object);
|
|
|
|
this->object = &data;
|
|
|
|
|
2021-03-29 19:26:57 +02:00
|
|
|
const auto deps
|
|
|
|
{
|
|
|
|
make_deps(this, opts)
|
2021-03-18 01:15:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cl_map_flags flags {0};
|
|
|
|
flags |= CL_MAP_READ;
|
|
|
|
|
|
|
|
int err {CL_SUCCESS};
|
|
|
|
assert(!this->handle);
|
|
|
|
void *const ptr
|
|
|
|
{
|
|
|
|
clEnqueueMapBuffer
|
|
|
|
(
|
|
|
|
q,
|
|
|
|
cl_mem(data.handle),
|
|
|
|
opts.blocking,
|
|
|
|
flags,
|
2021-03-29 19:26:57 +02:00
|
|
|
offset,
|
2021-03-18 01:15:03 +01:00
|
|
|
size,
|
|
|
|
deps.size(),
|
|
|
|
deps.size()? deps.data(): nullptr,
|
|
|
|
reinterpret_cast<cl_event *>(&this->handle),
|
|
|
|
&err
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
throw_on_error(err);
|
2021-04-09 21:13:27 +02:00
|
|
|
primary_stats.exec_read_bytes += size;
|
|
|
|
primary_stats.exec_read_tasks += 1;
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-03-18 01:15:03 +01:00
|
|
|
assert(this->handle);
|
|
|
|
assert(ptr);
|
|
|
|
|
2021-03-18 19:15:49 +01:00
|
|
|
// Perform the unmapping on unwind. This is after the mapping event
|
|
|
|
// completed and the closure was called below. The unmapping event will
|
|
|
|
// replace the event handle for this exec instance until its actual dtor;
|
|
|
|
// thus the lifetime of the exec we are constructing actually represents
|
|
|
|
// the unmapping event.
|
2021-03-26 02:43:04 +01:00
|
|
|
const unwind unmap{[this, &data, &q, &ptr, &opts]
|
2021-03-18 01:15:03 +01:00
|
|
|
{
|
|
|
|
assert(!this->handle);
|
|
|
|
call
|
|
|
|
(
|
|
|
|
clEnqueueUnmapMemObject,
|
|
|
|
q,
|
|
|
|
cl_mem(data.handle),
|
|
|
|
ptr,
|
|
|
|
0, // deps
|
|
|
|
nullptr, // depslist
|
|
|
|
reinterpret_cast<cl_event *>(&this->handle)
|
|
|
|
);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-03-18 01:15:03 +01:00
|
|
|
}};
|
|
|
|
|
2021-03-18 19:15:49 +01:00
|
|
|
// After the closure is called below, or throws, or if wait() throws,
|
|
|
|
// we free the completed map event here to allow for the unmap event.
|
|
|
|
const unwind rehandle{[this]
|
|
|
|
{
|
|
|
|
assert(this->handle);
|
|
|
|
call(clReleaseEvent, cl_event(this->handle));
|
|
|
|
this->handle = nullptr;
|
|
|
|
}};
|
|
|
|
|
|
|
|
// Wait for the mapping to complete before presenting the buffer.
|
2021-03-18 01:15:03 +01:00
|
|
|
wait();
|
|
|
|
closure(const_buffer
|
|
|
|
{
|
|
|
|
reinterpret_cast<const char *>(ptr), size
|
|
|
|
});
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
log, "Exec Read Closure :%s",
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::exec::exec(data &data,
|
2021-03-29 19:26:57 +02:00
|
|
|
const pair<size_t, off_t> &slice,
|
2021-03-18 01:15:03 +01:00
|
|
|
const write_closure &closure,
|
|
|
|
const opts &opts)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto &q
|
|
|
|
{
|
|
|
|
queue[0][0]
|
|
|
|
};
|
|
|
|
|
2021-03-29 19:26:57 +02:00
|
|
|
const auto size
|
2021-03-18 01:15:03 +01:00
|
|
|
{
|
2021-03-29 19:26:57 +02:00
|
|
|
slice.first?:
|
2021-09-16 06:19:36 +02:00
|
|
|
opts.size == -1UL?
|
|
|
|
data.size():
|
|
|
|
opts.size
|
2021-03-18 01:15:03 +01:00
|
|
|
};
|
|
|
|
|
2021-09-16 06:19:36 +02:00
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-03-29 19:26:57 +02:00
|
|
|
const auto offset
|
2021-03-18 01:15:03 +01:00
|
|
|
{
|
2021-03-29 19:26:57 +02:00
|
|
|
slice.second?:
|
|
|
|
opts.offset[0]
|
|
|
|
};
|
|
|
|
|
|
|
|
assert(size_t(size) <= data.size());
|
|
|
|
assert(size_t(offset) <= data.size());
|
|
|
|
|
2021-09-22 19:11:22 +02:00
|
|
|
assert(!this->object);
|
|
|
|
this->object = &data;
|
|
|
|
|
2021-03-29 19:26:57 +02:00
|
|
|
const auto deps
|
|
|
|
{
|
|
|
|
make_deps(this, opts)
|
2021-03-18 01:15:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cl_map_flags flags {0};
|
|
|
|
flags |= CL_MAP_WRITE;
|
|
|
|
flags |= opts.duplex? CL_MAP_READ: 0;
|
|
|
|
|
|
|
|
int err {CL_SUCCESS};
|
|
|
|
assert(!this->handle);
|
|
|
|
void *const ptr
|
|
|
|
{
|
|
|
|
clEnqueueMapBuffer
|
|
|
|
(
|
|
|
|
q,
|
|
|
|
cl_mem(data.handle),
|
|
|
|
opts.blocking,
|
|
|
|
flags,
|
2021-03-29 19:26:57 +02:00
|
|
|
offset,
|
2021-03-18 01:15:03 +01:00
|
|
|
size,
|
|
|
|
deps.size(),
|
|
|
|
deps.size()? deps.data(): nullptr,
|
|
|
|
reinterpret_cast<cl_event *>(&this->handle),
|
|
|
|
&err
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
throw_on_error(err);
|
2021-04-09 21:13:27 +02:00
|
|
|
// Account for read operation only when caller maps read/write.
|
|
|
|
primary_stats.exec_read_bytes += opts.duplex? size: 0UL;
|
|
|
|
primary_stats.exec_read_tasks += opts.duplex;
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-03-18 01:15:03 +01:00
|
|
|
assert(this->handle);
|
|
|
|
assert(ptr);
|
|
|
|
|
2021-04-09 21:13:27 +02:00
|
|
|
const unwind unmap{[this, &data, &q, &ptr, &opts, &size]
|
2021-03-18 01:15:03 +01:00
|
|
|
{
|
|
|
|
assert(!this->handle);
|
|
|
|
call
|
|
|
|
(
|
|
|
|
clEnqueueUnmapMemObject,
|
|
|
|
q,
|
|
|
|
cl_mem(data.handle),
|
|
|
|
ptr,
|
|
|
|
0, // deps
|
|
|
|
nullptr, // depslist
|
|
|
|
reinterpret_cast<cl_event *>(&this->handle)
|
|
|
|
);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
2021-04-09 21:13:27 +02:00
|
|
|
primary_stats.exec_write_bytes += size;
|
|
|
|
primary_stats.exec_write_tasks += 1;
|
2021-03-26 02:43:04 +01:00
|
|
|
handle_submitted(this, opts);
|
2021-03-18 01:15:03 +01:00
|
|
|
}};
|
|
|
|
|
2021-03-18 19:15:49 +01:00
|
|
|
const unwind rehandle{[this]
|
|
|
|
{
|
|
|
|
assert(this->handle);
|
|
|
|
call(clReleaseEvent, cl_event(this->handle));
|
|
|
|
this->handle = nullptr;
|
|
|
|
}};
|
|
|
|
|
2021-03-18 01:15:03 +01:00
|
|
|
wait();
|
|
|
|
closure(mutable_buffer
|
|
|
|
{
|
|
|
|
reinterpret_cast<char *>(ptr), size
|
|
|
|
});
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
log, "Exec Write Closure :%s",
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2021-03-26 02:43:04 +01:00
|
|
|
void
|
|
|
|
ircd::cl::handle_submitted(cl::exec *const &exec,
|
|
|
|
const exec::opts &opts)
|
|
|
|
{
|
|
|
|
primary_stats.exec_tasks += 1;
|
|
|
|
|
|
|
|
if(opts.flush)
|
|
|
|
cl::flush();
|
|
|
|
|
|
|
|
if(opts.sync)
|
|
|
|
cl::sync();
|
2021-05-10 06:24:10 +02:00
|
|
|
|
|
|
|
if(opts.nice == 0)
|
|
|
|
ctx::yield();
|
|
|
|
|
|
|
|
if(opts.nice > 0)
|
|
|
|
ctx::sleep(opts.nice * milliseconds(nice_rate));
|
2021-03-26 02:43:04 +01:00
|
|
|
}
|
|
|
|
|
2021-03-13 00:50:27 +01:00
|
|
|
ircd::vector_view<cl_event>
|
|
|
|
ircd::cl::make_deps(cl::work *const &work,
|
|
|
|
const exec::opts &opts)
|
2021-03-11 18:11:57 +01:00
|
|
|
{
|
2021-03-21 01:45:20 +01:00
|
|
|
//TODO: for out-of-order queue
|
|
|
|
if((false) && empty(opts.deps) && !opts.indep)
|
2021-03-13 00:50:27 +01:00
|
|
|
return make_deps_default(work, opts);
|
|
|
|
|
2021-03-19 07:24:41 +01:00
|
|
|
if(empty(opts.deps))
|
|
|
|
return {};
|
|
|
|
|
2021-03-11 18:11:57 +01:00
|
|
|
size_t ret(0);
|
2021-03-13 00:50:27 +01:00
|
|
|
vector_view<cl_event> out(_deps_list);
|
|
|
|
for(auto &exec : opts.deps)
|
|
|
|
out.at(ret++) = cl_event(exec.handle);
|
|
|
|
|
|
|
|
return vector_view<cl_event>
|
|
|
|
{
|
|
|
|
out, ret
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::vector_view<cl_event>
|
|
|
|
ircd::cl::make_deps_default(cl::work *const &work,
|
|
|
|
const exec::opts &opts)
|
|
|
|
{
|
|
|
|
size_t ret(0);
|
|
|
|
vector_view<cl_event> out(_deps_list);
|
2021-03-11 18:11:57 +01:00
|
|
|
for(auto it(rbegin(cl::work::list)); it != rend(cl::work::list); ++it)
|
|
|
|
{
|
|
|
|
cl::work *const &other{*it};
|
|
|
|
if(other == work)
|
|
|
|
continue;
|
|
|
|
|
2021-03-17 23:50:38 +01:00
|
|
|
if(!other->handle)
|
|
|
|
continue;
|
|
|
|
|
2021-03-11 18:11:57 +01:00
|
|
|
if(other->context != ctx::current)
|
|
|
|
continue;
|
|
|
|
|
2021-03-13 00:50:27 +01:00
|
|
|
out.at(ret++) = cl_event(other->handle);
|
2021-03-11 18:11:57 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-03-13 00:50:27 +01:00
|
|
|
return vector_view<cl_event>
|
|
|
|
{
|
|
|
|
out, ret
|
|
|
|
};
|
2021-03-11 18:11:57 +01:00
|
|
|
}
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
//
|
|
|
|
// kern
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::cl::kern::kern(code &code,
|
|
|
|
const string_view &name)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
int err {CL_SUCCESS};
|
2021-02-11 10:55:46 +01:00
|
|
|
handle = clCreateKernel(cl_program(code.handle), name.c_str(), &err);
|
2021-01-08 09:53:12 +01:00
|
|
|
throw_on_error(err);
|
2021-04-03 21:25:59 +02:00
|
|
|
|
|
|
|
const std::array<size_t, 3> cgs
|
|
|
|
{
|
|
|
|
#ifdef RB_DEBUG
|
|
|
|
compile_group_size()
|
|
|
|
#else
|
|
|
|
0, 0, 0
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
char buf[1][16];
|
|
|
|
char pbuf[2][48];
|
|
|
|
log::debug
|
|
|
|
{
|
|
|
|
log, "kernel stack %s local %s group:%zu pref:%zu comp:%zu:%zu:%zu :%s",
|
|
|
|
pretty(pbuf[0], iec(stack_mem_size())),
|
|
|
|
pretty(pbuf[1], iec(local_mem_size())),
|
|
|
|
group_size(),
|
|
|
|
preferred_group_size_multiple(),
|
|
|
|
cgs[0], cgs[1], cgs[2],
|
|
|
|
name,
|
|
|
|
};
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
log, "Kernel Create '%s' :%s",
|
|
|
|
name,
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::kern::kern(kern &&o)
|
|
|
|
noexcept
|
|
|
|
:handle{std::move(o.handle)}
|
|
|
|
{
|
|
|
|
o.handle = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::kern &
|
|
|
|
ircd::cl::kern::operator=(kern &&o)
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
this->~kern();
|
|
|
|
handle = std::move(o.handle);
|
|
|
|
o.handle = nullptr;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::kern::~kern()
|
|
|
|
noexcept try
|
|
|
|
{
|
2021-03-22 19:06:54 +01:00
|
|
|
if(likely(handle))
|
|
|
|
call(clReleaseKernel, cl_kernel(handle));
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::critical
|
|
|
|
{
|
|
|
|
log, "Kernel Release :%s",
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::kern::arg(const int i,
|
|
|
|
data &data)
|
|
|
|
{
|
2021-02-11 10:55:46 +01:00
|
|
|
const auto &data_handle
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
2021-02-11 10:55:46 +01:00
|
|
|
cl_mem(data.handle)
|
2021-01-08 09:53:12 +01:00
|
|
|
};
|
|
|
|
|
2021-02-11 10:55:46 +01:00
|
|
|
call(clSetKernelArg, cl_kernel(handle), i, sizeof(cl_mem), &data_handle);
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
2021-03-22 19:05:45 +01:00
|
|
|
void
|
|
|
|
ircd::cl::kern::arg(const int i,
|
|
|
|
const const_buffer &buf)
|
|
|
|
{
|
|
|
|
call(clSetKernelArg, cl_kernel(handle), i, ircd::size(buf), ircd::data(buf));
|
|
|
|
}
|
|
|
|
|
2021-04-03 21:23:52 +02:00
|
|
|
std::array<size_t, 3>
|
|
|
|
ircd::cl::kern::compile_group_size(void *const dev)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
char buf[24];
|
|
|
|
const auto handle(cl_kernel(this->handle));
|
|
|
|
constexpr auto flag(CL_KERNEL_COMPILE_WORK_GROUP_SIZE);
|
|
|
|
return info<std::array<size_t, 3>>(clGetKernelWorkGroupInfo, handle, cl_device_id(dev), flag, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::cl::kern::preferred_group_size_multiple(void *const dev)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
char buf[16];
|
|
|
|
const auto handle(cl_kernel(this->handle));
|
|
|
|
constexpr auto flag(CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE);
|
|
|
|
return info<size_t>(clGetKernelWorkGroupInfo, handle, cl_device_id(dev), flag, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::cl::kern::group_size(void *const dev)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
char buf[16];
|
|
|
|
const auto handle(cl_kernel(this->handle));
|
|
|
|
constexpr auto flag(CL_KERNEL_WORK_GROUP_SIZE);
|
|
|
|
return info<size_t>(clGetKernelWorkGroupInfo, handle, cl_device_id(dev), flag, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::cl::kern::local_mem_size(void *const dev)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
char buf[16];
|
|
|
|
const auto handle(cl_kernel(this->handle));
|
|
|
|
constexpr auto flag(CL_KERNEL_LOCAL_MEM_SIZE);
|
|
|
|
return info<ulong>(clGetKernelWorkGroupInfo, handle, cl_device_id(dev), flag, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
ircd::cl::kern::stack_mem_size(void *const dev)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
char buf[16];
|
|
|
|
const auto handle(cl_kernel(this->handle));
|
|
|
|
constexpr auto flag(CL_KERNEL_PRIVATE_MEM_SIZE);
|
|
|
|
return info<ulong>(clGetKernelWorkGroupInfo, handle, cl_device_id(dev), flag, buf);
|
|
|
|
}
|
|
|
|
|
2021-09-22 19:11:22 +02:00
|
|
|
uint
|
|
|
|
ircd::cl::kern::argc()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
const auto handle
|
|
|
|
{
|
|
|
|
cl_kernel(this->handle)
|
|
|
|
};
|
|
|
|
|
|
|
|
char buf[sizeof(uint)];
|
|
|
|
return info<uint>(clGetKernelInfo, handle, CL_KERNEL_NUM_ARGS, buf);
|
|
|
|
}
|
|
|
|
|
2021-10-04 00:32:11 +02:00
|
|
|
ircd::string_view
|
|
|
|
ircd::cl::kern::name(const mutable_buffer &buf)
|
2021-09-22 19:11:22 +02:00
|
|
|
const
|
|
|
|
{
|
|
|
|
const auto handle
|
|
|
|
{
|
|
|
|
cl_kernel(this->handle)
|
|
|
|
};
|
|
|
|
|
2021-10-04 00:32:11 +02:00
|
|
|
return handle?
|
|
|
|
info(clGetKernelInfo, handle, CL_KERNEL_FUNCTION_NAME, buf):
|
|
|
|
string_view{};
|
2021-09-22 19:11:22 +02:00
|
|
|
}
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
//
|
|
|
|
// code
|
|
|
|
//
|
|
|
|
|
2021-03-10 12:03:03 +01:00
|
|
|
ircd::cl::code::code(const string_view &src,
|
|
|
|
const string_view &build_opts)
|
2021-01-08 09:53:12 +01:00
|
|
|
:code
|
|
|
|
{
|
2021-03-10 12:03:03 +01:00
|
|
|
vector_view<const string_view>(&src, 1),
|
|
|
|
build_opts
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-03-10 12:03:03 +01:00
|
|
|
ircd::cl::code::code(const vector_view<const string_view> &srcs,
|
|
|
|
const string_view &build_opts)
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
|
|
|
static const size_t iov_max
|
|
|
|
{
|
|
|
|
64 //TODO: ???
|
|
|
|
};
|
|
|
|
|
|
|
|
if(unlikely(srcs.size() > iov_max))
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"Maximum number of sources exceeded: lim:%zu got:%zu",
|
|
|
|
iov_max,
|
|
|
|
srcs.size(),
|
|
|
|
};
|
|
|
|
|
|
|
|
const size_t count
|
|
|
|
{
|
|
|
|
std::min(srcs.size(), iov_max)
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t len[count];
|
|
|
|
const char *src[count];
|
|
|
|
for(size_t i(0); i < count; ++i)
|
|
|
|
src[i] = ircd::data(srcs[i]),
|
|
|
|
len[i] = ircd::size(srcs[i]);
|
|
|
|
|
|
|
|
int err {CL_SUCCESS};
|
|
|
|
handle = clCreateProgramWithSource(primary, count, src, len, &err);
|
|
|
|
throw_on_error(err);
|
2021-03-10 12:03:03 +01:00
|
|
|
|
|
|
|
if(!null(build_opts))
|
|
|
|
build(build_opts);
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
2021-03-22 01:46:31 +01:00
|
|
|
ircd::cl::code::code(const vector_view<const const_buffer> &bins,
|
|
|
|
const string_view &build_opts)
|
|
|
|
{
|
|
|
|
static const size_t iov_max
|
|
|
|
{
|
|
|
|
64 //TODO: ???
|
|
|
|
};
|
|
|
|
|
|
|
|
if(unlikely(bins.size() > iov_max))
|
|
|
|
throw error
|
|
|
|
{
|
|
|
|
"Maximum number of binaries exceeded: lim:%zu got:%zu",
|
|
|
|
iov_max,
|
|
|
|
bins.size(),
|
|
|
|
};
|
|
|
|
|
|
|
|
const size_t count
|
|
|
|
{
|
|
|
|
std::min(bins.size(), iov_max)
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t len[iov_max + 1] {0};
|
|
|
|
const uint8_t *bin[iov_max + 1] {nullptr};
|
|
|
|
for(size_t i(0); i < count; ++i)
|
|
|
|
bin[i] = reinterpret_cast<const uint8_t *>(ircd::data(bins[i])),
|
|
|
|
len[i] = ircd::size(bins[i]);
|
|
|
|
|
|
|
|
size_t devs {0};
|
|
|
|
cl_device_id dev[DEVICE_MAX] {0};
|
|
|
|
for(size_t i(0); i < platforms; ++i)
|
|
|
|
for(size_t j(0); j < devices[i]; ++j)
|
|
|
|
dev[devs++] = device[i][j];
|
|
|
|
|
|
|
|
int err {CL_SUCCESS};
|
|
|
|
int binerr[iov_max + 1] {CL_SUCCESS};
|
|
|
|
handle = clCreateProgramWithBinary(primary, devs, dev, len, bin, binerr, &err);
|
|
|
|
throw_on_error(err);
|
|
|
|
for(size_t i(0); i < count; ++i)
|
|
|
|
throw_on_error(binerr[i]);
|
|
|
|
|
|
|
|
if(!null(build_opts))
|
|
|
|
build(build_opts);
|
|
|
|
}
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
ircd::cl::code::code(code &&o)
|
|
|
|
noexcept
|
|
|
|
:handle{std::move(o.handle)}
|
|
|
|
{
|
|
|
|
o.handle = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::code &
|
|
|
|
ircd::cl::code::operator=(code &&o)
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
this->~code();
|
|
|
|
handle = std::move(o.handle);
|
|
|
|
o.handle = nullptr;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::code::~code()
|
|
|
|
noexcept try
|
|
|
|
{
|
2021-03-22 19:06:54 +01:00
|
|
|
if(likely(handle))
|
|
|
|
call(clReleaseProgram, cl_program(handle));
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::critical
|
|
|
|
{
|
|
|
|
log, "Program Release :%s",
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ircd::cl
|
|
|
|
{
|
2021-03-19 18:11:10 +01:00
|
|
|
static void build_handle_error_log_line(const string_view &line);
|
|
|
|
static void build_handle_error(code &, const opencl_error &);
|
|
|
|
static void build_handle(cl_program program, void *priv);
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::code::build(const string_view &opts)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const uint num_devices {0};
|
|
|
|
const cl_device_id *const device_list {nullptr};
|
|
|
|
call
|
|
|
|
(
|
|
|
|
clBuildProgram,
|
2021-02-11 10:55:46 +01:00
|
|
|
cl_program(handle),
|
2021-01-08 09:53:12 +01:00
|
|
|
num_devices,
|
|
|
|
device_list,
|
|
|
|
opts.c_str(),
|
2021-03-19 18:11:10 +01:00
|
|
|
cl::build_handle,
|
2021-01-08 09:53:12 +01:00
|
|
|
nullptr
|
|
|
|
);
|
|
|
|
}
|
2021-03-19 18:11:10 +01:00
|
|
|
catch(const opencl_error &e)
|
|
|
|
{
|
|
|
|
build_handle_error(*this, e);
|
|
|
|
throw;
|
|
|
|
}
|
2021-01-08 09:53:12 +01:00
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
2021-03-19 18:11:10 +01:00
|
|
|
log::error
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
2021-03-19 18:11:10 +01:00
|
|
|
log, "code(%p) :Failed to build :%s",
|
|
|
|
this,
|
|
|
|
e.what(),
|
|
|
|
};
|
2021-01-08 09:53:12 +01:00
|
|
|
|
2021-03-19 18:11:10 +01:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::build_handle(cl_program program,
|
|
|
|
void *const priv)
|
|
|
|
{
|
2021-09-01 20:28:40 +02:00
|
|
|
log::debug
|
|
|
|
{
|
|
|
|
log, "program(%p) :Successfully built.",
|
|
|
|
(const void *)program,
|
|
|
|
};
|
2021-03-19 18:11:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::build_handle_error(code &code,
|
|
|
|
const opencl_error &e)
|
|
|
|
{
|
|
|
|
const auto string_closure
|
|
|
|
{
|
|
|
|
[&code](const mutable_buffer &buf)
|
|
|
|
{
|
|
|
|
size_t len {0}; call
|
|
|
|
(
|
|
|
|
clGetProgramBuildInfo,
|
|
|
|
cl_program(code.handle),
|
|
|
|
device[0][0],
|
|
|
|
CL_PROGRAM_BUILD_LOG,
|
|
|
|
ircd::size(buf),
|
|
|
|
ircd::data(buf),
|
|
|
|
&len
|
|
|
|
);
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
};
|
2021-01-08 09:53:12 +01:00
|
|
|
|
|
|
|
const auto error_message
|
|
|
|
{
|
2021-03-19 18:11:10 +01:00
|
|
|
ircd::string(8_KiB | SHRINK_TO_FIT, string_closure)
|
2021-01-08 09:53:12 +01:00
|
|
|
};
|
|
|
|
|
2021-03-19 18:11:10 +01:00
|
|
|
const auto lines
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
2021-03-19 18:11:10 +01:00
|
|
|
ircd::tokens(error_message, '\n', build_handle_error_log_line)
|
|
|
|
};
|
|
|
|
}
|
2021-01-08 09:53:12 +01:00
|
|
|
|
2021-03-19 18:11:10 +01:00
|
|
|
void
|
|
|
|
ircd::cl::build_handle_error_log_line(const string_view &line)
|
|
|
|
{
|
|
|
|
// note last line is just a CR
|
|
|
|
if(line.size() <= 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto &[loc, line_] { split(line, ' ') };
|
|
|
|
const auto &[fac, msg] { split(line_, ' ') };
|
|
|
|
const auto &[fname, pos] { split(loc, ':') };
|
|
|
|
const auto &[row, col] { split(pos, ':') };
|
|
|
|
|
|
|
|
const auto level
|
|
|
|
{
|
|
|
|
startswith(fac, "warning")?
|
|
|
|
log::level::WARNING:
|
|
|
|
|
|
|
|
startswith(fac, "error")?
|
|
|
|
log::level::ERROR:
|
|
|
|
|
|
|
|
log::level::ERROR
|
|
|
|
};
|
|
|
|
|
|
|
|
log::logf
|
|
|
|
{
|
|
|
|
log, level, "%s", line
|
|
|
|
};
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// data
|
|
|
|
//
|
|
|
|
|
2021-03-14 23:21:05 +01:00
|
|
|
ircd::cl::data::data(const size_t size_,
|
|
|
|
const mutable_buffer &buf,
|
2021-01-08 09:53:12 +01:00
|
|
|
const bool wonly)
|
|
|
|
{
|
2021-03-14 23:21:05 +01:00
|
|
|
const auto ptr
|
|
|
|
{
|
|
|
|
ircd::size(buf)? ircd::data(buf): nullptr
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto size
|
|
|
|
{
|
|
|
|
ircd::size(buf)?: size_
|
|
|
|
};
|
|
|
|
|
2021-04-15 05:56:01 +02:00
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
cl_mem_flags flags {0};
|
2021-03-29 19:29:20 +02:00
|
|
|
flags |= wonly? CL_MEM_WRITE_ONLY: CL_MEM_READ_WRITE;
|
2021-03-14 23:21:05 +01:00
|
|
|
flags |= ircd::size(buf)? CL_MEM_COPY_HOST_PTR: 0;
|
|
|
|
|
|
|
|
int err {CL_SUCCESS};
|
|
|
|
handle = clCreateBuffer(primary, flags, size, ptr, &err);
|
|
|
|
throw_on_error(err);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
|
|
|
primary_stats.alloc_count += 1;
|
|
|
|
primary_stats.alloc_bytes += size;
|
2021-03-14 23:21:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::data::data(const size_t size_,
|
|
|
|
const const_buffer &buf)
|
|
|
|
{
|
2021-04-15 05:56:01 +02:00
|
|
|
const auto &ptr
|
2021-03-14 23:21:05 +01:00
|
|
|
{
|
|
|
|
ircd::size(buf)? ircd::data(buf): nullptr
|
|
|
|
};
|
|
|
|
|
2021-04-15 05:56:01 +02:00
|
|
|
const auto &size
|
2021-03-14 23:21:05 +01:00
|
|
|
{
|
|
|
|
ircd::size(buf)?: size_
|
|
|
|
};
|
|
|
|
|
2021-04-15 05:56:01 +02:00
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-03-14 23:21:05 +01:00
|
|
|
cl_mem_flags flags {0};
|
|
|
|
flags |= CL_MEM_READ_ONLY;
|
|
|
|
flags |= ircd::size(buf)? CL_MEM_COPY_HOST_PTR: 0;
|
|
|
|
|
|
|
|
int err {CL_SUCCESS};
|
|
|
|
handle = clCreateBuffer(primary, flags, size, mutable_cast(ptr), &err);
|
2021-01-08 09:53:12 +01:00
|
|
|
throw_on_error(err);
|
2021-03-26 02:36:36 +01:00
|
|
|
|
|
|
|
primary_stats.alloc_count += 1;
|
|
|
|
primary_stats.alloc_bytes += size;
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::data::data(const mutable_buffer &buf,
|
|
|
|
const bool wonly)
|
|
|
|
{
|
2021-04-15 05:56:01 +02:00
|
|
|
const auto &size
|
|
|
|
{
|
|
|
|
ircd::size(buf)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
cl_mem_flags flags {0};
|
|
|
|
flags |= CL_MEM_USE_HOST_PTR;
|
|
|
|
flags |= wonly? CL_MEM_WRITE_ONLY: CL_MEM_READ_WRITE;
|
2021-03-14 23:21:05 +01:00
|
|
|
|
|
|
|
int err {CL_SUCCESS};
|
2021-04-15 05:56:01 +02:00
|
|
|
handle = clCreateBuffer(primary, flags, size, ircd::data(buf), &err);
|
2021-01-08 09:53:12 +01:00
|
|
|
throw_on_error(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::data::data(const const_buffer &buf)
|
|
|
|
{
|
2021-04-15 05:56:01 +02:00
|
|
|
const auto &ptr
|
|
|
|
{
|
|
|
|
mutable_cast(ircd::data(buf))
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &size
|
|
|
|
{
|
|
|
|
ircd::size(buf)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!size)
|
|
|
|
return;
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
cl_mem_flags flags {0};
|
|
|
|
flags |= CL_MEM_USE_HOST_PTR;
|
|
|
|
flags |= CL_MEM_READ_ONLY;
|
2021-03-14 23:21:05 +01:00
|
|
|
|
|
|
|
int err {CL_SUCCESS};
|
2021-04-15 05:56:01 +02:00
|
|
|
handle = clCreateBuffer(primary, flags, size, ptr, &err);
|
2021-01-08 09:53:12 +01:00
|
|
|
throw_on_error(err);
|
|
|
|
}
|
|
|
|
|
2021-03-29 21:56:45 +02:00
|
|
|
ircd::cl::data::data(data &master,
|
|
|
|
const pair<size_t, off_t> &slice)
|
|
|
|
{
|
|
|
|
cl_mem_flags flags {0};
|
|
|
|
|
|
|
|
cl_buffer_region region {0};
|
|
|
|
region.origin = slice.second;
|
|
|
|
region.size = slice.first;
|
|
|
|
|
2021-09-16 06:19:36 +02:00
|
|
|
if(!region.size)
|
|
|
|
return;
|
|
|
|
|
2021-03-29 21:56:45 +02:00
|
|
|
int err {CL_SUCCESS};
|
2021-04-10 01:00:19 +02:00
|
|
|
constexpr auto type {CL_BUFFER_CREATE_TYPE_REGION};
|
|
|
|
handle = clCreateSubBuffer(cl_mem(master.handle), flags, type, ®ion, &err);
|
2021-03-29 21:56:45 +02:00
|
|
|
throw_on_error(err);
|
|
|
|
}
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
ircd::cl::data::data(data &&o)
|
|
|
|
noexcept
|
|
|
|
:handle{std::move(o.handle)}
|
|
|
|
{
|
|
|
|
o.handle = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::data &
|
|
|
|
ircd::cl::data::operator=(data &&o)
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
this->~data();
|
|
|
|
handle = std::move(o.handle);
|
|
|
|
o.handle = nullptr;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::data::~data()
|
|
|
|
noexcept try
|
|
|
|
{
|
2021-03-22 19:06:54 +01:00
|
|
|
if(likely(handle))
|
2021-03-26 02:36:36 +01:00
|
|
|
{
|
|
|
|
const auto size
|
|
|
|
{
|
|
|
|
this->size()
|
|
|
|
};
|
|
|
|
|
2021-03-22 19:06:54 +01:00
|
|
|
call(clReleaseMemObject, cl_mem(handle));
|
2021-03-26 02:36:36 +01:00
|
|
|
|
|
|
|
primary_stats.dealloc_count += 1;
|
|
|
|
primary_stats.dealloc_bytes += size;
|
|
|
|
}
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::critical
|
|
|
|
{
|
|
|
|
log, "Memory Release :%s",
|
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-03-18 01:12:58 +01:00
|
|
|
char *
|
|
|
|
ircd::cl::data::ptr()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
assert(handle);
|
|
|
|
|
|
|
|
char buf[sizeof(void *)] {0};
|
|
|
|
return info<char *>(clGetMemObjectInfo, cl_mem(mutable_cast(handle)), CL_MEM_SIZE, buf);
|
|
|
|
}
|
|
|
|
|
2021-09-15 13:32:38 +02:00
|
|
|
off_t
|
|
|
|
ircd::cl::data::offset()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
assert(handle);
|
|
|
|
|
|
|
|
char buf[sizeof(off_t)] {0};
|
|
|
|
return info<off_t>(clGetMemObjectInfo, cl_mem(mutable_cast(handle)), CL_MEM_OFFSET, buf);
|
|
|
|
}
|
|
|
|
|
2021-03-18 01:12:58 +01:00
|
|
|
size_t
|
|
|
|
ircd::cl::data::size()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
assert(handle);
|
|
|
|
|
|
|
|
char buf[sizeof(size_t)] {0};
|
|
|
|
return info<size_t>(clGetMemObjectInfo, cl_mem(mutable_cast(handle)), CL_MEM_SIZE, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint
|
|
|
|
ircd::cl::data::flags()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
assert(handle);
|
|
|
|
|
|
|
|
char buf[sizeof(uint)] {0};
|
|
|
|
return info<uint>(clGetMemObjectInfo, cl_mem(mutable_cast(handle)), CL_MEM_FLAGS, buf);
|
|
|
|
}
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
//
|
|
|
|
// cl::work (event)
|
|
|
|
//
|
|
|
|
|
|
|
|
namespace ircd::cl
|
|
|
|
{
|
2021-03-18 01:56:01 +01:00
|
|
|
struct completion;
|
2021-01-08 09:53:12 +01:00
|
|
|
|
2021-04-10 00:56:42 +02:00
|
|
|
extern conf::item<bool> offload_enable;
|
|
|
|
extern const ctx::ole::opts offload_opts;
|
|
|
|
|
|
|
|
static void handle_event_callback(cl_event, cl_int, void *) noexcept;
|
|
|
|
static int wait_event_callback(work &, const int, const int);
|
|
|
|
static int wait_event_offload(work &, const int, const int);
|
|
|
|
static int wait_event(work &, const int, const int);
|
2021-03-11 18:11:57 +01:00
|
|
|
}
|
|
|
|
|
2021-04-10 00:56:42 +02:00
|
|
|
struct alignas(64) ircd::cl::completion
|
2021-03-18 01:56:01 +01:00
|
|
|
{
|
|
|
|
cl_event event {nullptr};
|
|
|
|
cl_int status {CL_COMPLETE};
|
|
|
|
ctx::dock dock;
|
|
|
|
};
|
|
|
|
|
2021-04-10 00:56:42 +02:00
|
|
|
decltype(ircd::cl::offload_enable)
|
|
|
|
ircd::cl::offload_enable
|
|
|
|
{
|
|
|
|
{ "name", "ircd.cl.offload.enable" },
|
|
|
|
{ "default", true },
|
|
|
|
};
|
|
|
|
|
|
|
|
decltype(ircd::cl::offload_opts)
|
|
|
|
ircd::cl::offload_opts
|
|
|
|
{
|
|
|
|
"cl"
|
|
|
|
};
|
|
|
|
|
2021-03-11 18:11:57 +01:00
|
|
|
void
|
|
|
|
ircd::cl::work::init()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::work::fini()
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
cl::sync();
|
|
|
|
}
|
|
|
|
|
2021-03-20 22:33:40 +01:00
|
|
|
//
|
|
|
|
// work::work
|
|
|
|
//
|
2021-03-11 18:11:57 +01:00
|
|
|
|
2021-03-20 22:33:40 +01:00
|
|
|
ircd::cl::work::work()
|
2021-03-11 18:11:57 +01:00
|
|
|
{
|
2021-10-15 20:38:47 +02:00
|
|
|
if(unlikely(!cl::linkage || run::level != run::level::RUN))
|
|
|
|
throw unavailable
|
|
|
|
{
|
|
|
|
"Unable to submit work items at this time."
|
|
|
|
};
|
|
|
|
|
|
|
|
assert(cl::linkage);
|
2021-04-10 00:56:42 +02:00
|
|
|
assert(ircd::run::level == run::level::RUN);
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::work::work(void *const &handle)
|
|
|
|
{
|
|
|
|
call(clRetainEvent, cl_event(handle));
|
|
|
|
this->handle = handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::cl::work::~work()
|
|
|
|
noexcept try
|
|
|
|
{
|
2021-03-20 22:33:40 +01:00
|
|
|
if(!handle)
|
|
|
|
return;
|
|
|
|
|
2021-03-18 19:15:49 +01:00
|
|
|
const unwind free{[this]
|
|
|
|
{
|
2021-03-20 22:33:40 +01:00
|
|
|
assert(handle);
|
|
|
|
call(clReleaseEvent, cl_event(handle));
|
2021-03-18 19:15:49 +01:00
|
|
|
}};
|
|
|
|
|
2021-03-17 23:50:38 +01:00
|
|
|
wait();
|
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::critical
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
2021-03-17 23:50:38 +01:00
|
|
|
log, "Work Release :%s",
|
|
|
|
e.what(),
|
2021-01-08 09:53:12 +01:00
|
|
|
};
|
|
|
|
|
2021-03-17 23:50:38 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-03-20 22:33:40 +01:00
|
|
|
void
|
|
|
|
ircd::cl::work::wait(const uint desired)
|
2021-03-18 21:21:10 +01:00
|
|
|
try
|
2021-03-17 23:50:38 +01:00
|
|
|
{
|
2021-03-20 22:33:40 +01:00
|
|
|
static_assert(CL_COMPLETE == 0);
|
|
|
|
assert(handle);
|
2021-03-17 23:50:38 +01:00
|
|
|
|
2021-03-18 21:21:10 +01:00
|
|
|
char buf[4];
|
|
|
|
int status
|
2021-01-08 09:53:12 +01:00
|
|
|
{
|
2021-03-17 23:50:38 +01:00
|
|
|
info<int>(clGetEventInfo, cl_event(handle), CL_EVENT_COMMAND_EXECUTION_STATUS, buf)
|
2021-03-11 18:11:57 +01:00
|
|
|
};
|
2021-01-08 09:53:12 +01:00
|
|
|
|
2021-03-20 22:33:40 +01:00
|
|
|
if(status > int(desired))
|
2021-04-10 00:56:42 +02:00
|
|
|
status = wait_event(*this, status, desired);
|
2021-01-08 09:53:12 +01:00
|
|
|
|
2021-03-18 21:21:10 +01:00
|
|
|
if(unlikely(status < 0))
|
|
|
|
throw_on_error(status);
|
|
|
|
|
2021-03-20 22:33:40 +01:00
|
|
|
assert(int(status) == int(desired));
|
2021-01-08 09:53:12 +01:00
|
|
|
}
|
2021-03-18 21:21:10 +01:00
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
2021-03-20 22:33:40 +01:00
|
|
|
log, "work(%p)::wait(%u) :%s",
|
2021-03-18 21:21:10 +01:00
|
|
|
this,
|
2021-03-20 22:33:40 +01:00
|
|
|
desired,
|
2021-03-18 21:21:10 +01:00
|
|
|
e.what(),
|
|
|
|
};
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
2021-01-08 09:53:12 +01:00
|
|
|
|
2021-10-04 00:32:11 +02:00
|
|
|
ircd::string_view
|
|
|
|
ircd::cl::work::name(const mutable_buffer &buf)
|
2021-09-22 19:11:22 +02:00
|
|
|
const
|
|
|
|
{
|
|
|
|
switch(const auto type(this->type()); type)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
case CL_COMMAND_READ_BUFFER:
|
|
|
|
case CL_COMMAND_WRITE_BUFFER:
|
|
|
|
case CL_COMMAND_COPY_BUFFER:
|
|
|
|
case CL_COMMAND_MAP_BUFFER:
|
|
|
|
case CL_COMMAND_UNMAP_MEM_OBJECT:
|
|
|
|
{
|
|
|
|
const auto data
|
|
|
|
{
|
|
|
|
reinterpret_cast<const cl::data *>(object)
|
|
|
|
};
|
|
|
|
|
2021-10-04 00:32:11 +02:00
|
|
|
return data? nullptr: nullptr; //TODO: XXX
|
2021-09-22 19:11:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
case CL_COMMAND_NDRANGE_KERNEL:
|
|
|
|
{
|
|
|
|
const auto kern
|
|
|
|
{
|
|
|
|
reinterpret_cast<const cl::kern *>(object)
|
|
|
|
};
|
|
|
|
|
2021-10-04 00:32:11 +02:00
|
|
|
return kern? kern->name(buf): nullptr;
|
2021-09-22 19:11:22 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ircd::cl::work::type()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
const auto handle
|
|
|
|
{
|
|
|
|
cl_event(this->handle)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!handle)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
char buf[4];
|
|
|
|
return info<int>(clGetEventInfo, handle, CL_EVENT_COMMAND_TYPE, buf);
|
|
|
|
}
|
|
|
|
|
2021-10-04 00:31:04 +02:00
|
|
|
//
|
|
|
|
// cl::work::prof
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::cl::work::prof::prof(const cl::work &w)
|
|
|
|
{
|
|
|
|
const auto h
|
|
|
|
{
|
|
|
|
cl_event(w.handle)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!profile_queue || !h)
|
|
|
|
{
|
|
|
|
for(uint i(0); i < this->size(); ++i)
|
|
|
|
(*this)[i] = 0ns;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
char b[5][8];
|
|
|
|
(*this)[0] = info<nanoseconds>(clGetEventProfilingInfo, h, CL_PROFILING_COMMAND_QUEUED, b[0]);
|
|
|
|
(*this)[1] = info<nanoseconds>(clGetEventProfilingInfo, h, CL_PROFILING_COMMAND_SUBMIT, b[1]);
|
|
|
|
(*this)[2] = info<nanoseconds>(clGetEventProfilingInfo, h, CL_PROFILING_COMMAND_START, b[2]);
|
|
|
|
(*this)[3] = info<nanoseconds>(clGetEventProfilingInfo, h, CL_PROFILING_COMMAND_END, b[3]);
|
|
|
|
(*this)[4] = info<nanoseconds>(clGetEventProfilingInfo, h, CL_PROFILING_COMMAND_COMPLETE, b[4]);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// cl::work (internal)
|
|
|
|
//
|
|
|
|
|
2021-03-20 22:33:40 +01:00
|
|
|
int
|
2021-04-10 00:56:42 +02:00
|
|
|
ircd::cl::wait_event(work &work,
|
|
|
|
const int status,
|
|
|
|
const int desired)
|
2021-03-20 22:33:40 +01:00
|
|
|
{
|
|
|
|
assert(work.handle);
|
2021-04-10 00:56:42 +02:00
|
|
|
assert(status > desired);
|
|
|
|
const ctx::uninterruptible::nothrow ui;
|
|
|
|
|
|
|
|
const bool use_offload
|
|
|
|
{
|
|
|
|
// conf item
|
|
|
|
bool(offload_enable)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto ret
|
|
|
|
{
|
|
|
|
use_offload?
|
|
|
|
wait_event_offload(work, status, desired):
|
|
|
|
wait_event_callback(work, status, desired)
|
|
|
|
};
|
|
|
|
|
|
|
|
const bool is_err
|
|
|
|
{
|
|
|
|
ret < 0
|
|
|
|
};
|
|
|
|
|
|
|
|
primary_stats.work_errors += is_err;
|
|
|
|
primary_stats.work_waits += 1;
|
|
|
|
return ret;
|
|
|
|
}
|
2021-03-20 22:33:40 +01:00
|
|
|
|
2021-04-10 00:56:42 +02:00
|
|
|
int
|
|
|
|
ircd::cl::wait_event_offload(work &work,
|
|
|
|
const int status,
|
|
|
|
const int desired)
|
|
|
|
{
|
|
|
|
completion c
|
|
|
|
{
|
|
|
|
cl_event(work.handle),
|
|
|
|
status,
|
|
|
|
};
|
|
|
|
|
|
|
|
ctx::ole::offload
|
|
|
|
{
|
|
|
|
offload_opts, [&c]
|
|
|
|
{
|
|
|
|
call(clWaitForEvents, 1UL, &c.event);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
char buf[4];
|
|
|
|
//c.status = info<int>(clGetEventInfo, c.event, CL_EVENT_COMMAND_EXECUTION_STATUS, buf);
|
|
|
|
c.status = CL_COMPLETE;
|
|
|
|
assert(c.status == CL_COMPLETE);
|
|
|
|
return c.status;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ircd::cl::wait_event_callback(work &work,
|
|
|
|
const int status,
|
|
|
|
const int desired)
|
|
|
|
{
|
2021-04-09 21:13:27 +02:00
|
|
|
// Completion state structure on this ircd::ctx's stack.
|
2021-03-20 22:33:40 +01:00
|
|
|
completion c
|
|
|
|
{
|
|
|
|
cl_event(work.handle),
|
|
|
|
status,
|
|
|
|
};
|
|
|
|
|
2021-04-09 21:13:27 +02:00
|
|
|
// Completion condition closure to be satisfied.
|
|
|
|
const auto condition{[&c, &desired]() -> bool
|
|
|
|
{
|
|
|
|
return !c.event || c.status <= desired;
|
|
|
|
}};
|
|
|
|
|
|
|
|
// Register callback with OpenCL; note that the callback might be
|
|
|
|
// dispatched immediately from this call itself (see below).
|
2021-03-20 22:33:40 +01:00
|
|
|
call
|
|
|
|
(
|
|
|
|
clSetEventCallback,
|
|
|
|
c.event,
|
|
|
|
desired,
|
2021-04-10 00:56:42 +02:00
|
|
|
&handle_event_callback,
|
2021-03-20 22:33:40 +01:00
|
|
|
&c
|
|
|
|
);
|
|
|
|
|
2021-04-09 21:13:27 +02:00
|
|
|
// This stats item counts clSetEventCallback()'s which return before OpenCL
|
|
|
|
// calls the callback, verifying asynchronicity. If this stats item remains
|
|
|
|
// zero, the OpenCL runtime has hijacked our thread for a blocking wait.
|
|
|
|
primary_stats.work_waits_async += !condition();
|
|
|
|
|
|
|
|
// Yield ircd::ctx while condition unsatisfied
|
|
|
|
c.dock.wait(condition);
|
2021-03-20 22:33:40 +01:00
|
|
|
return c.status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-04-10 00:56:42 +02:00
|
|
|
ircd::cl::handle_event_callback(cl_event event,
|
|
|
|
cl_int status,
|
|
|
|
void *const priv)
|
2021-03-20 22:33:40 +01:00
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
auto *const c
|
|
|
|
{
|
|
|
|
reinterpret_cast<completion *>(priv)
|
|
|
|
};
|
|
|
|
|
2021-04-09 21:13:27 +02:00
|
|
|
assert(priv != nullptr);
|
2021-03-20 22:33:40 +01:00
|
|
|
assert(event != nullptr);
|
2021-04-09 21:13:27 +02:00
|
|
|
assert(c->event == event);
|
2021-03-20 22:33:40 +01:00
|
|
|
c->status = status;
|
|
|
|
c->dock.notify_one();
|
|
|
|
}
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
//
|
|
|
|
// callback surface
|
|
|
|
//
|
|
|
|
|
|
|
|
void
|
|
|
|
ircd::cl::handle_notify(const char *errstr,
|
|
|
|
const void *token,
|
|
|
|
size_t cb,
|
|
|
|
void *priv)
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
if(errstr)
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
log, "OpenCL t:%p cb:%zu :%s",
|
|
|
|
token,
|
|
|
|
cb,
|
|
|
|
errstr,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// util
|
|
|
|
//
|
|
|
|
|
|
|
|
template<class T,
|
|
|
|
class F,
|
|
|
|
class id,
|
|
|
|
class param>
|
|
|
|
T
|
|
|
|
ircd::cl::info(F&& func,
|
|
|
|
const id &i,
|
|
|
|
const param &p,
|
|
|
|
const mutable_buffer &out)
|
|
|
|
{
|
2021-01-08 09:53:12 +01:00
|
|
|
using ircd::data;
|
|
|
|
using ircd::size;
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
size_t len {0};
|
|
|
|
call(std::forward<F>(func), i, p, size(out), data(out), &len);
|
|
|
|
const string_view str
|
|
|
|
{
|
|
|
|
data(out), len
|
|
|
|
};
|
|
|
|
|
2021-01-08 09:53:12 +01:00
|
|
|
return byte_view<T>(str);
|
2021-01-05 23:50:53 +01:00
|
|
|
}
|
|
|
|
|
2021-04-03 21:22:56 +02:00
|
|
|
template<class T,
|
|
|
|
class F,
|
|
|
|
class id0,
|
|
|
|
class id1,
|
|
|
|
class param>
|
|
|
|
T
|
|
|
|
ircd::cl::info(F&& func,
|
|
|
|
const id0 &i0,
|
|
|
|
const id1 &i1,
|
|
|
|
const param &p,
|
|
|
|
const mutable_buffer &out)
|
|
|
|
{
|
|
|
|
using ircd::data;
|
|
|
|
using ircd::size;
|
|
|
|
|
|
|
|
size_t len {0};
|
|
|
|
call(std::forward<F>(func), i0, i1, p, size(out), data(out), &len);
|
|
|
|
const string_view str
|
|
|
|
{
|
|
|
|
data(out), len
|
|
|
|
};
|
|
|
|
|
|
|
|
return byte_view<T>(str);
|
|
|
|
}
|
|
|
|
|
2021-01-05 23:50:53 +01:00
|
|
|
template<class func,
|
|
|
|
class... args>
|
|
|
|
int
|
|
|
|
ircd::cl::call(func&& f,
|
|
|
|
args&&... a)
|
|
|
|
{
|
|
|
|
const int ret
|
|
|
|
{
|
|
|
|
f(std::forward<args>(a)...)
|
|
|
|
};
|
|
|
|
|
|
|
|
return throw_on_error(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ircd::cl::throw_on_error(const int &code)
|
|
|
|
{
|
|
|
|
if(unlikely(is_error(code)))
|
|
|
|
throw opencl_error
|
|
|
|
{
|
2021-03-19 18:11:10 +01:00
|
|
|
"(%d) :%s",
|
2021-01-05 23:50:53 +01:00
|
|
|
code,
|
|
|
|
reflect_error(code),
|
|
|
|
};
|
|
|
|
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ircd::cl::is_error(const int &code)
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
return code < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::cl::reflect_error(const int code)
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
switch(code)
|
|
|
|
{
|
|
|
|
case CL_SUCCESS: return "SUCCESS";
|
|
|
|
case CL_DEVICE_NOT_FOUND: return "DEVICE_NOT_FOUND";
|
|
|
|
case CL_DEVICE_NOT_AVAILABLE: return "DEVICE_NOT_AVAILABLE";
|
|
|
|
case CL_COMPILER_NOT_AVAILABLE: return "COMPILER_NOT_AVAILABLE";
|
|
|
|
case CL_MEM_OBJECT_ALLOCATION_FAILURE: return "MEM_OBJECT_ALLOCATION_FAILURE";
|
|
|
|
case CL_OUT_OF_RESOURCES: return "OUT_OF_RESOURCES";
|
|
|
|
case CL_OUT_OF_HOST_MEMORY: return "OUT_OF_HOST_MEMORY";
|
|
|
|
case CL_PROFILING_INFO_NOT_AVAILABLE: return "PROFILING_INFO_NOT_AVAILABLE";
|
|
|
|
case CL_MEM_COPY_OVERLAP: return "MEM_COPY_OVERLAP";
|
|
|
|
case CL_IMAGE_FORMAT_MISMATCH: return "IMAGE_FORMAT_MISMATCH";
|
|
|
|
case CL_IMAGE_FORMAT_NOT_SUPPORTED: return "IMAGE_FORMAT_NOT_SUPPORTED";
|
|
|
|
case CL_BUILD_PROGRAM_FAILURE: return "BUILD_PROGRAM_FAILURE";
|
|
|
|
case CL_MAP_FAILURE: return "MAP_FAILURE";
|
|
|
|
case CL_INVALID_VALUE: return "INVALID_VALUE";
|
|
|
|
case CL_INVALID_DEVICE_TYPE: return "INVALID_DEVICE_TYPE";
|
|
|
|
case CL_INVALID_PLATFORM: return "INVALID_PLATFORM";
|
|
|
|
case CL_INVALID_DEVICE: return "INVALID_DEVICE";
|
|
|
|
case CL_INVALID_CONTEXT: return "INVALID_CONTEXT";
|
|
|
|
case CL_INVALID_QUEUE_PROPERTIES: return "INVALID_QUEUE_PROPERTIES";
|
|
|
|
case CL_INVALID_COMMAND_QUEUE: return "INVALID_COMMAND_QUEUE";
|
|
|
|
case CL_INVALID_HOST_PTR: return "INVALID_HOST_PTR";
|
|
|
|
case CL_INVALID_MEM_OBJECT: return "INVALID_MEM_OBJECT";
|
|
|
|
case CL_INVALID_IMAGE_FORMAT_DESCRIPTOR: return "INVALID_IMAGE_FORMAT_DESCRIPTOR";
|
|
|
|
case CL_INVALID_IMAGE_SIZE: return "INVALID_IMAGE_SIZE";
|
|
|
|
case CL_INVALID_SAMPLER: return "INVALID_SAMPLER";
|
|
|
|
case CL_INVALID_BINARY: return "INVALID_BINARY";
|
|
|
|
case CL_INVALID_BUILD_OPTIONS: return "INVALID_BUILD_OPTIONS";
|
|
|
|
case CL_INVALID_PROGRAM: return "INVALID_PROGRAM";
|
|
|
|
case CL_INVALID_PROGRAM_EXECUTABLE: return "INVALID_PROGRAM_EXECUTABLE";
|
|
|
|
case CL_INVALID_KERNEL_NAME: return "INVALID_KERNEL_NAME";
|
|
|
|
case CL_INVALID_KERNEL_DEFINITION: return "INVALID_KERNEL_DEFINITION";
|
|
|
|
case CL_INVALID_KERNEL: return "INVALID_KERNEL";
|
|
|
|
case CL_INVALID_ARG_INDEX: return "INVALID_ARG_INDEX";
|
|
|
|
case CL_INVALID_ARG_VALUE: return "INVALID_ARG_VALUE";
|
|
|
|
case CL_INVALID_ARG_SIZE: return "INVALID_ARG_SIZE";
|
|
|
|
case CL_INVALID_KERNEL_ARGS: return "INVALID_KERNEL_ARGS";
|
|
|
|
case CL_INVALID_WORK_DIMENSION: return "INVALID_WORK_DIMENSION";
|
|
|
|
case CL_INVALID_WORK_GROUP_SIZE: return "INVALID_WORK_GROUP_SIZE";
|
|
|
|
case CL_INVALID_WORK_ITEM_SIZE: return "INVALID_WORK_ITEM_SIZE";
|
|
|
|
case CL_INVALID_GLOBAL_OFFSET: return "INVALID_GLOBAL_OFFSET";
|
|
|
|
case CL_INVALID_EVENT_WAIT_LIST: return "INVALID_EVENT_WAIT_LIST";
|
|
|
|
case CL_INVALID_EVENT: return "INVALID_EVENT";
|
|
|
|
case CL_INVALID_OPERATION: return "INVALID_OPERATION";
|
|
|
|
case CL_INVALID_GL_OBJECT: return "INVALID_GL_OBJECT";
|
|
|
|
case CL_INVALID_BUFFER_SIZE: return "INVALID_BUFFER_SIZE";
|
|
|
|
case CL_INVALID_MIP_LEVEL: return "INVALID_MIP_LEVEL";
|
|
|
|
case CL_INVALID_GLOBAL_WORK_SIZE: return "INVALID_GLOBAL_WORK_SIZE";
|
|
|
|
|
|
|
|
#ifdef CL_VERSION_1_1
|
|
|
|
case CL_INVALID_PROPERTY: return "INVALID_PROPERTY";
|
|
|
|
case CL_MISALIGNED_SUB_BUFFER_OFFSET: return "MISALIGNED_SUB_BUFFER_OFFSET";
|
|
|
|
case CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST: return "EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CL_VERSION_1_2
|
|
|
|
case CL_COMPILE_PROGRAM_FAILURE: return "COMPILE_PROGRAM_FAILURE";
|
|
|
|
case CL_LINKER_NOT_AVAILABLE: return "LINKER_NOT_AVAILABLE";
|
|
|
|
case CL_LINK_PROGRAM_FAILURE: return "LINK_PROGRAM_FAILURE";
|
|
|
|
case CL_DEVICE_PARTITION_FAILED: return "DEVICE_PARTITION_FAILED";
|
|
|
|
case CL_KERNEL_ARG_INFO_NOT_AVAILABLE: return "KERNEL_ARG_INFO_NOT_AVAILABLE";
|
|
|
|
case CL_INVALID_IMAGE_DESCRIPTOR: return "INVALID_IMAGE_DESCRIPTOR";
|
|
|
|
case CL_INVALID_COMPILER_OPTIONS: return "INVALID_COMPILER_OPTIONS";
|
|
|
|
case CL_INVALID_LINKER_OPTIONS: return "INVALID_LINKER_OPTIONS";
|
|
|
|
case CL_INVALID_DEVICE_PARTITION_COUNT: return "INVALID_DEVICE_PARTITION_COUNT";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CL_VERSION_2_0
|
|
|
|
case CL_INVALID_PIPE_SIZE: return "INVALID_PIPE_SIZE";
|
|
|
|
case CL_INVALID_DEVICE_QUEUE: return "INVALID_DEVICE_QUEUE";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CL_VERSION_2_2
|
|
|
|
case CL_INVALID_SPEC_ID: return "INVALID_SPEC_ID";
|
|
|
|
case CL_MAX_SIZE_RESTRICTION_EXCEEDED: return "MAX_SIZE_RESTRICTION_EXCEEDED";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return "???????";
|
|
|
|
}
|