| 5573 | } |
| 5574 | |
| 5575 | struct ggml_tensor * ggml_upscale( |
| 5576 | struct ggml_context * ctx, |
| 5577 | struct ggml_tensor * a, |
| 5578 | int scale_factor) { |
| 5579 | return ggml_upscale_impl(ctx, a, scale_factor); |
| 5580 | } |
| 5581 | |
| 5582 | // ggml_flash_attn |
| 5583 |
nothing calls this directly
no test coverage detected