| 2098 | } |
| 2099 | |
| 2100 | struct ggml_tensor * ggml_acc( |
| 2101 | struct ggml_context * ctx, |
| 2102 | struct ggml_tensor * a, |
| 2103 | struct ggml_tensor * b, |
| 2104 | size_t nb1, |
| 2105 | size_t nb2, |
| 2106 | size_t nb3, |
| 2107 | size_t offset) { |
| 2108 | return ggml_acc_impl(ctx, a, b, nb1, nb2, nb3, offset, false); |
| 2109 | } |
| 2110 | |
| 2111 | struct ggml_tensor * ggml_acc_inplace( |
| 2112 | struct ggml_context * ctx, |