| 3358 | } |
| 3359 | |
| 3360 | struct ggml_tensor * ggml_set_inplace( |
| 3361 | struct ggml_context * ctx, |
| 3362 | struct ggml_tensor * a, |
| 3363 | struct ggml_tensor * b, |
| 3364 | size_t nb1, |
| 3365 | size_t nb2, |
| 3366 | size_t nb3, |
| 3367 | size_t offset) { |
| 3368 | return ggml_set_impl(ctx, a, b, nb1, nb2, nb3, offset, true); |
| 3369 | } |
| 3370 | |
| 3371 | struct ggml_tensor * ggml_set_1d( |
| 3372 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected