| 27 | size_t ctx_size = ggml_tensor_overhead() * 16 + ggml_graph_overhead(); |
| 28 | struct ggml_init_params params = {ctx_size, nullptr, true}; |
| 29 | struct ggml_context* ctx = ggml_init(params); |
| 30 | |
| 31 | // Kernel: [KW, KH, 1, C] |
| 32 | auto* knl = ggml_new_tensor_4d(ctx, GGML_TYPE_F32, KW, KH, 1, C); |
nothing calls this directly
no outgoing calls
no test coverage detected