| | #include "models.h"
|
| |
|
| | ggml_cgraph * clip_graph_llama4::build() {
|
| | GGML_ASSERT(model.class_embedding != nullptr);
|
| | GGML_ASSERT(model.position_embeddings != nullptr);
|
| |
|
| | const int n_pos = n_patches + 1;
|
| |
|
| |
|
| | ggml_tensor * pos_h = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_pos);
|
| | ggml_set_name(pos_h, "pos_h");
|
| | ggml_set_input(pos_h);
|
| |
|
| | ggml_tensor * pos_w = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_pos);
|
| | ggml_set_name(pos_w, "pos_w");
|
| | ggml_set_input(pos_w);
|
| |
|
| | ggml_tensor * inp = build_inp_raw();
|
| |
|
| |
|
| | {
|
| | ggml_tensor * kernel = ggml_reshape_4d(ctx0, model.patch_embeddings_0,
|
| | patch_size, patch_size, 3, n_embd);
|
| | inp = ggml_im2col(ctx0, kernel, inp, patch_size, patch_size, 0, 0, 1, 1, true, inp->type);
|
| | inp = ggml_mul_mat(ctx0, model.patch_embeddings_0, inp);
|
| | inp = ggml_reshape_2d(ctx0, inp, n_embd, n_patches);
|
| | cb(inp, "patch_conv", -1);
|
| | }
|
| |
|
| |
|
| | inp = ggml_concat(ctx0, inp, model.class_embedding, 1);
|
| |
|
| |
|
| | auto add_pos = [&](ggml_tensor * cur, const clip_layer &) {
|
| |
|
| |
|
| |
|
| | return build_rope_2d(ctx0, cur, pos_w, pos_h, hparams.rope_theta, false);
|
| | };
|
| | ggml_tensor * cur = build_vit(
|
| | inp, n_pos,
|
| | NORM_TYPE_NORMAL,
|
| | hparams.ffn_op,
|
| | model.position_embeddings,
|
| | add_pos);
|
| |
|
| |
|
| | cur = ggml_view_2d(ctx0, cur,
|
| | n_embd, n_patches,
|
| | ggml_row_size(cur->type, n_embd), 0);
|
| |
|
| |
|
| |
|
| |
|
| | {
|
| | const int scale_factor = model.hparams.n_merge;
|
| | const int bsz = 1;
|
| | GGML_ASSERT(scale_factor > 0);
|
| | GGML_ASSERT(n_patches_x == n_patches_y);
|
| | cur = ggml_reshape_4d(ctx0, cur,
|
| | n_embd * scale_factor,
|
| | n_patches_x / scale_factor,
|
| | n_patches_y,
|
| | bsz);
|
| | cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
|
| | cur = ggml_cont_4d(ctx0, cur,
|
| | n_embd * scale_factor * scale_factor,
|
| | n_patches_x / scale_factor,
|
| | n_patches_y / scale_factor,
|
| | bsz);
|
| |
|
| |
|
| | cur = ggml_cont_2d(ctx0, cur,
|
| | n_embd * scale_factor * scale_factor,
|
| | n_patches / scale_factor / scale_factor);
|
| | cb(cur, "pixel_shuffle", -1);
|
| | }
|
| |
|
| |
|
| | {
|
| | cur = ggml_mul_mat(ctx0, model.mm_model_mlp_1_w, cur);
|
| | cur = ggml_gelu(ctx0, cur);
|
| | cur = ggml_mul_mat(ctx0, model.mm_model_mlp_2_w, cur);
|
| | cur = ggml_gelu(ctx0, cur);
|
| | cb(cur, "adapter_mlp", -1);
|
| | }
|
| |
|
| |
|
| | cur = ggml_mul_mat(ctx0, model.mm_model_proj, cur);
|
| | cb(cur, "projected", -1);
|
| |
|
| |
|
| | ggml_build_forward_expand(gf, cur);
|
| |
|
| | return gf;
|
| | }
|
| |
|