Skip to content

Commit 368560a

Browse files
CUDA: fix compilation on CC 6.0 (ggml-org#16091)
1 parent 4ca088b commit 368560a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ggml/src/ggml-cuda/fattn-tile.cu

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ static int fattn_tile_get_kq_stride_host(const int D, const int ncols, const int
3535
switch (D) {
3636
case 64:
3737
case 128:
38-
return 128;
3938
case 256:
4039
return ncols <= 16 ? 128 : 64;
4140
default:
@@ -86,7 +85,6 @@ static constexpr __device__ int fattn_tile_get_kq_stride_device(int D, int ncols
8685
switch (D) {
8786
case 64:
8887
case 128:
89-
return 128;
9088
case 256:
9189
return ncols <= 16 ? 128 : 64;
9290
default:

0 commit comments

Comments
 (0)