Skip to content

Commit e77094f

Browse files
committed
1 parent 34b0a08 commit e77094f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: ggml-cuda.cu

+4
Original file line numberDiff line numberDiff line change
@@ -6251,6 +6251,8 @@ static int64_t get_row_rounding(ggml_type type) {
62516251
return max_compute_capability >= CC_RDNA2 ? 128 : 64;
62526252
case GGML_TYPE_F16:
62536253
return 1;
6254+
case GGML_TYPE_F32:
6255+
return 1;
62546256
case GGML_TYPE_Q2_K:
62556257
return max_compute_capability >= CC_RDNA2 ? 128 : 32;
62566258
case GGML_TYPE_Q3_K:
@@ -6273,6 +6275,8 @@ static int64_t get_row_rounding(ggml_type type) {
62736275
return 64;
62746276
case GGML_TYPE_F16:
62756277
return 1;
6278+
case GGML_TYPE_F32:
6279+
return 1;
62766280
case GGML_TYPE_Q2_K:
62776281
case GGML_TYPE_Q3_K:
62786282
case GGML_TYPE_Q4_K:

0 commit comments

Comments
 (0)