@@ -529,8 +529,8 @@ struct vk_device_struct {
529529 vk_pipeline pipeline_opt_step_sgd_f32;
530530 vk_pipeline pipeline_conv2d_f32[CONV_SHAPE_COUNT];
531531 vk_pipeline pipeline_conv2d_f16_f32[CONV_SHAPE_COUNT];
532- vk_pipeline pipeline_conv2d_dw_whcn_f32;
533- vk_pipeline pipeline_conv2d_dw_cwhn_f32;
532+ vk_pipeline pipeline_conv2d_dw_whcn_f32, pipeline_conv2d_dw_whcn_f16_f32 ;
533+ vk_pipeline pipeline_conv2d_dw_cwhn_f32, pipeline_conv2d_dw_cwhn_f16_f32 ;
534534
535535 // [2][2][2] is for {f16acc,f32acc}x{large,small_rows}x{unaligned, aligned}
536536 vk_pipeline pipeline_flash_attn_f32_f16_cm2[GGML_TYPE_COUNT][FA_HEAD_SIZE_COUNT][2][2][2];
@@ -3251,6 +3251,8 @@ static void ggml_vk_load_shaders(vk_device& device) {
32513251
32523252 ggml_vk_create_pipeline(device, device->pipeline_conv2d_dw_whcn_f32, "conv2d_dw_whcn_f32", conv2d_dw_whcn_f32_len, conv2d_dw_whcn_f32_data, "main", 3, sizeof(vk_op_conv2d_dw_push_constants), {512, 1, 1}, {}, 1);
32533253 ggml_vk_create_pipeline(device, device->pipeline_conv2d_dw_cwhn_f32, "conv2d_dw_cwhn_f32", conv2d_dw_cwhn_f32_len, conv2d_dw_cwhn_f32_data, "main", 3, sizeof(vk_op_conv2d_dw_push_constants), {512, 1, 1}, {}, 1);
3254+ ggml_vk_create_pipeline(device, device->pipeline_conv2d_dw_whcn_f16_f32, "conv2d_dw_whcn_f16_f32", conv2d_dw_whcn_f16_f32_len, conv2d_dw_whcn_f16_f32_data, "main", 3, sizeof(vk_op_conv2d_dw_push_constants), {512, 1, 1}, {}, 1);
3255+ ggml_vk_create_pipeline(device, device->pipeline_conv2d_dw_cwhn_f16_f32, "conv2d_dw_cwhn_f16_f32", conv2d_dw_cwhn_f16_f32_len, conv2d_dw_cwhn_f16_f32_data, "main", 3, sizeof(vk_op_conv2d_dw_push_constants), {512, 1, 1}, {}, 1);
32543256
32553257 for (auto &c : compiles) {
32563258 c.wait();
@@ -7306,6 +7308,12 @@ static vk_pipeline ggml_vk_op_get_pipeline(ggml_backend_vk_context * ctx, const
73067308 } else if (ggml_is_contiguous_channels(src1)) {
73077309 return ctx->device->pipeline_conv2d_dw_cwhn_f32;
73087310 }
7311+ } else if (src0->type == GGML_TYPE_F16 && dst->type == GGML_TYPE_F32) {
7312+ if (ggml_is_contiguous(src1)) {
7313+ return ctx->device->pipeline_conv2d_dw_whcn_f16_f32;
7314+ } else if (ggml_is_contiguous_channels(src1)) {
7315+ return ctx->device->pipeline_conv2d_dw_cwhn_f16_f32;
7316+ }
73097317 }
73107318 return nullptr;
73117319 default:
0 commit comments