Skip to content

Commit 129e7da

Browse files
committed
address review comments
1 parent 1eb1795 commit 129e7da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ggml/src/ggml-cpu/kleidiai/kleidiai.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,9 @@ class tensor_traits : public ggml::cpu::tensor_traits {
311311

312312
GGML_ASSERT(kernel);
313313

314-
int ith = params->ith;
315-
int nth_raw = params->nth;
316-
int nth = nth_raw > 0 ? nth_raw : 1;
314+
const int ith = params->ith;
315+
const int nth_raw = params->nth;
316+
const int nth = nth_raw > 0 ? nth_raw : 1;
317317

318318
const size_t k = ne00;
319319
const size_t m = ne11;

0 commit comments

Comments
 (0)