mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-08-14 19:05:22 +00:00
opencl: fix crash when warming up MoE on Adreno (#22876)
This commit is contained in:
parent
527045bfb0
commit
1e4579fbb8
1 changed files with 1 additions and 1 deletions
|
|
@ -13132,7 +13132,7 @@ static void moe_router_reoerder(ggml_backend_t backend, const ggml_tensor * src,
|
|||
CL_CHECK(clSetKernelArg(kernel, 4, sizeof(int), &ne02));
|
||||
|
||||
size_t histogram_global_size[] = {(size_t)(((ne21 + 63) / 64) * 64), static_cast<size_t>(ne20), 1};
|
||||
size_t histogram_local_size[] = {64, static_cast<size_t>(ne20), 1};
|
||||
size_t histogram_local_size[] = {64, 1, 1};
|
||||
backend_ctx->enqueue_ndrange_kernel(kernel, 3, histogram_global_size, histogram_local_size, src);
|
||||
|
||||
// Scan
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue