| 4243 | } |
| 4244 | |
| 4245 | struct ggml_tensor * ggml_scale( |
| 4246 | struct ggml_context * ctx, |
| 4247 | struct ggml_tensor * a, |
| 4248 | struct ggml_tensor * b) { |
| 4249 | return ggml_scale_impl(ctx, a, b, false); |
| 4250 | } |
| 4251 | |
| 4252 | struct ggml_tensor * ggml_scale_inplace( |
| 4253 | struct ggml_context * ctx, |