| 2063 | } |
| 2064 | |
| 2065 | struct ggml_tensor * ggml_add1_inplace( |
| 2066 | struct ggml_context * ctx, |
| 2067 | struct ggml_tensor * a, |
| 2068 | struct ggml_tensor * b) { |
| 2069 | return ggml_add1_impl(ctx, a, b, true); |
| 2070 | } |
| 2071 | |
| 2072 | // ggml_acc |
| 2073 |
nothing calls this directly
no test coverage detected