Skip to content

Commit a190a9d

Browse files
committed
fix type: int32->int64
1 parent 2f77e82 commit a190a9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ggml/src/ggml-metal/ggml-metal.metal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4149,9 +4149,9 @@ kernel void kernel_conv_transpose_2d(
41494149
uint3 tgpig[[threadgroup_position_in_grid]],
41504150
uint3 tgpg[[threadgroups_per_grid]]) {
41514151

4152-
const int32_t out_x = tgpig[0];
4153-
const int32_t out_y = tgpig[1];
4154-
const int32_t out_c = tgpig[2];
4152+
const int64_t out_x = tgpig[0];
4153+
const int64_t out_y = tgpig[1];
4154+
const int64_t out_c = tgpig[2];
41554155

41564156
float v = 0.0f;
41574157

0 commit comments

Comments
 (0)