| 3297 | } |
| 3298 | |
| 3299 | struct ggml_tensor * ggml_scale_inplace( |
| 3300 | struct ggml_context * ctx, |
| 3301 | struct ggml_tensor * a, |
| 3302 | float s) { |
| 3303 | return ggml_scale_impl(ctx, a, s, 0.0, true); |
| 3304 | } |
| 3305 | |
| 3306 | struct ggml_tensor * ggml_scale_bias( |
| 3307 | struct ggml_context * ctx, |
no test coverage detected