| 3290 | } |
| 3291 | |
| 3292 | struct ggml_tensor * ggml_scale( |
| 3293 | struct ggml_context * ctx, |
| 3294 | struct ggml_tensor * a, |
| 3295 | float s) { |
| 3296 | return ggml_scale_impl(ctx, a, s, 0.0, false); |
| 3297 | } |
| 3298 | |
| 3299 | struct ggml_tensor * ggml_scale_inplace( |
| 3300 | struct ggml_context * ctx, |