| 3174 | } |
| 3175 | |
| 3176 | struct ggml_tensor * ggml_add( |
| 3177 | struct ggml_context * ctx, |
| 3178 | struct ggml_tensor * a, |
| 3179 | struct ggml_tensor * b) { |
| 3180 | return ggml_add_impl(ctx, a, b, false); |
| 3181 | } |
| 3182 | |
| 3183 | struct ggml_tensor * ggml_add_inplace( |
| 3184 | struct ggml_context * ctx, |