| 1969 | } |
| 1970 | |
| 1971 | struct ggml_tensor * ggml_add( |
| 1972 | struct ggml_context * ctx, |
| 1973 | struct ggml_tensor * a, |
| 1974 | struct ggml_tensor * b) { |
| 1975 | return ggml_add_impl(ctx, a, b, false); |
| 1976 | } |
| 1977 | |
| 1978 | struct ggml_tensor * ggml_add_inplace( |
| 1979 | struct ggml_context * ctx, |