| 3181 | } |
| 3182 | |
| 3183 | struct ggml_tensor * ggml_add_inplace( |
| 3184 | struct ggml_context * ctx, |
| 3185 | struct ggml_tensor * a, |
| 3186 | struct ggml_tensor * b) { |
| 3187 | return ggml_add_impl(ctx, a, b, true); |
| 3188 | } |
| 3189 | |
| 3190 | // ggml_add_cast |
| 3191 |
no test coverage detected