diff --git a/tools/mtmd/clip.cpp b/tools/mtmd/clip.cpp index 8a631ca65b..a807e28274 100644 --- a/tools/mtmd/clip.cpp +++ b/tools/mtmd/clip.cpp @@ -834,18 +834,23 @@ static ggml_cgraph * clip_image_build_graph(clip_ctx * ctx, const clip_image_f32 case PROJECTOR_TYPE_GLM_EDGE: { builder = std::make_unique(ctx, img); - } break; + } + break; case PROJECTOR_TYPE_DEEPSEEKOCR: { builder = std::make_unique(ctx, img); + } + break; case PROJECTOR_TYPE_LFM2A: { builder = std::make_unique(ctx, img); - } break; + } + break; case PROJECTOR_TYPE_GLM4V: { builder = std::make_unique(ctx, img); - } break; + } + break; default: GGML_ABORT("missing cgraph builder"); }