| 1976 | } |
| 1977 | |
| 1978 | struct ggml_tensor * ggml_add_inplace( |
| 1979 | struct ggml_context * ctx, |
| 1980 | struct ggml_tensor * a, |
| 1981 | struct ggml_tensor * b) { |
| 1982 | return ggml_add_impl(ctx, a, b, true); |
| 1983 | } |
| 1984 | |
| 1985 | // ggml_add_cast |
| 1986 |
nothing calls this directly
no test coverage detected