| 784 | }; |
| 785 | |
| 786 | struct edgetam_repvit { |
| 787 | // Stem: 2 conv layers (3→24→48, each stride 2) |
| 788 | struct ggml_tensor* stem_conv1_w = nullptr; // [3, 3, 3, 24] |
| 789 | struct ggml_tensor* stem_conv1_b = nullptr; // [24] |
| 790 | struct ggml_tensor* stem_conv2_w = nullptr; // [3, 3, 24, 48] |
| 791 | struct ggml_tensor* stem_conv2_b = nullptr; // [48] |
| 792 | |
| 793 | edgetam_repvit_stage stages[4]; |
| 794 | }; |
| 795 | |
| 796 | /* |
| 797 | ** ── EdgeTAM Spatial Perceiver ─────────────────────────────────────────── |
nothing calls this directly
no outgoing calls
no test coverage detected