| 3301 | } |
| 3302 | |
| 3303 | struct ggml_tensor * ggml_add1_inplace( |
| 3304 | struct ggml_context * ctx, |
| 3305 | struct ggml_tensor * a, |
| 3306 | struct ggml_tensor * b) { |
| 3307 | return ggml_add1_impl(ctx, a, b, true); |
| 3308 | } |
| 3309 | |
| 3310 | // ggml_acc |
| 3311 |
nothing calls this directly
no test coverage detected