0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 21:28:53 +02:00

ircd:🆑 Decrease kern::range dimension.

This commit is contained in:
Jason Volk 2022-03-06 14:13:49 -08:00
parent 729092d410
commit b39d3396f9

View file

@ -188,10 +188,10 @@ struct ircd::cl::kern
/// NDRangeKernel dimension range selector
struct ircd::cl::kern::range
{
std::array<size_t, 5>
global { 0, 0, 0, 0, 0 },
local { 0, 0, 0, 0, 0 },
offset { 0, 0, 0, 0, 0 };
std::array<size_t, 3>
global { 0, 0, 0 },
local { 0, 0, 0 },
offset { 0, 0, 0 };
};
/// Construction enqueues the task; destruction waits for completion.