| 251 | } |
| 252 | |
| 253 | void clip_graph::cb(ggml_tensor * cur, const char * name, int il) const { |
| 254 | if (il >= 0) { |
| 255 | ggml_format_name(cur, "%s-%d", name, il); |
| 256 | } else { |
| 257 | ggml_set_name(cur, name); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | // siglip2 naflex |
| 262 | ggml_tensor * clip_graph::resize_position_embeddings(uint32_t interpolation_mode) { |
nothing calls this directly
no test coverage detected