| 2109 | } |
| 2110 | |
| 2111 | struct ggml_tensor * ggml_acc_inplace( |
| 2112 | struct ggml_context * ctx, |
| 2113 | struct ggml_tensor * a, |
| 2114 | struct ggml_tensor * b, |
| 2115 | size_t nb1, |
| 2116 | size_t nb2, |
| 2117 | size_t nb3, |
| 2118 | size_t offset) { |
| 2119 | return ggml_acc_impl(ctx, a, b, nb1, nb2, nb3, offset, true); |
| 2120 | } |
| 2121 | |
| 2122 | // ggml_sub |
| 2123 |
nothing calls this directly
no test coverage detected