| 3304 | } |
| 3305 | |
| 3306 | struct ggml_tensor * ggml_scale_bias( |
| 3307 | struct ggml_context * ctx, |
| 3308 | struct ggml_tensor * a, |
| 3309 | float s, |
| 3310 | float b) { |
| 3311 | return ggml_scale_impl(ctx, a, s, b, false); |
| 3312 | } |
| 3313 | |
| 3314 | struct ggml_tensor * ggml_scale_bias_inplace( |
| 3315 | struct ggml_context * ctx, |