| 3343 | } |
| 3344 | |
| 3345 | struct ggml_tensor * ggml_acc( |
| 3346 | struct ggml_context * ctx, |
| 3347 | struct ggml_tensor * a, |
| 3348 | struct ggml_tensor * b, |
| 3349 | size_t nb1, |
| 3350 | size_t nb2, |
| 3351 | size_t nb3, |
| 3352 | size_t offset) { |
| 3353 | return ggml_acc_impl(ctx, a, b, nb1, nb2, nb3, offset, false); |
| 3354 | } |
| 3355 | |
| 3356 | struct ggml_tensor * ggml_acc_inplace( |
| 3357 | struct ggml_context * ctx, |