| 11639 | auto* st = ggml_new_tensor_2d(tracker.ctx, GGML_TYPE_F32, MD, N_perc); |
| 11640 | auto* sb = ggml_backend_alloc_buffer(model.backend, MD * N_perc * sizeof(float)); |
| 11641 | struct ggml_tallocr ta_perc = ggml_tallocr_new(sb); |
| 11642 | ggml_tallocr_alloc(&ta_perc, st); |
| 11643 | tracker.owned_buffers.push_back(sb); |
| 11644 | ggml_backend_tensor_set(st, perc_latents.data(), 0, MD * N_perc * sizeof(float)); |
nothing calls this directly
no outgoing calls
no test coverage detected