minor : fix build
This commit is contained in:
parent
48d74f4394
commit
ef834b0070
1 changed files with 3 additions and 1 deletions
|
@ -734,7 +734,9 @@ static bool ggml_metal_graph_compute(
|
|||
}
|
||||
|
||||
const int n_nodes_per_cb = (n_nodes + n_cb - 1) / n_cb;
|
||||
dispatch_apply(n_cb, ctx->d_queue, ^(int cb_idx) {
|
||||
dispatch_apply(n_cb, ctx->d_queue, ^(size_t iter) {
|
||||
const int cb_idx = iter;
|
||||
|
||||
size_t offs_src0 = 0;
|
||||
size_t offs_src1 = 0;
|
||||
size_t offs_dst = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue