| 1030 | } |
| 1031 | |
| 1032 | static void sam3_name_tensorf(struct ggml_tensor* t, const char* fmt, int index) { |
| 1033 | if (!t) { |
| 1034 | return; |
| 1035 | } |
| 1036 | char name[64]; |
| 1037 | snprintf(name, sizeof(name), fmt, index); |
| 1038 | ggml_set_name(t, name); |
| 1039 | } |
| 1040 | |
| 1041 | static struct ggml_tensor* sam3_layer_norm(struct ggml_context* ctx, |
| 1042 | struct ggml_tensor* x, |
no outgoing calls
no test coverage detected