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 e034ed7 commit b65eff8Copy full SHA for b65eff8
ggml/src/ggml-metal/ggml-metal.m
@@ -2067,8 +2067,8 @@ static void ggml_metal_encode_node(
2067
GGML_ASSERT(ne12 % ne02 == 0);
2068
GGML_ASSERT(ne13 % ne03 == 0);
2069
2070
- const uint r2 = ne12/ne02;
2071
- const uint r3 = ne13/ne03;
+ const uint32_t r2 = ne12/ne02;
+ const uint32_t r3 = ne13/ne03;
2072
2073
// find the break-even point where the matrix-matrix kernel becomes more efficient compared
2074
// to the matrix-vector kernel
0 commit comments