We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eb1795 commit 129e7daCopy full SHA for 129e7da
ggml/src/ggml-cpu/kleidiai/kleidiai.cpp
@@ -311,9 +311,9 @@ class tensor_traits : public ggml::cpu::tensor_traits {
311
312
GGML_ASSERT(kernel);
313
314
- int ith = params->ith;
315
- int nth_raw = params->nth;
316
- int nth = nth_raw > 0 ? nth_raw : 1;
+ const int ith = params->ith;
+ const int nth_raw = params->nth;
+ const int nth = nth_raw > 0 ? nth_raw : 1;
317
318
const size_t k = ne00;
319
const size_t m = ne11;
0 commit comments