vulkan : fix missing break in matmul selection (#9)

This commit is contained in:
cebtenzzre 2023-10-23 12:22:27 -04:00
parent 74ddf0f17d
commit 1c17010188

View File

@ -1439,6 +1439,7 @@ void ggml_vk_graph_compute(struct ggml_kompute_context * ctx, struct ggml_cgraph
ne11, ne12,
nb11, nb12,
nb1, nb2);
break;
case GGML_TYPE_F16:
ggml_vk_mul_mat_f16(seq, id_src0, id_src1, id_dst, off_src0, off_src1, off_dst, ne00, ne01, ne02, nb01, nb02, ne11, ne12, nb11, nb12, ne0, ne1);
break;