| 3377 | } |
| 3378 | |
| 3379 | struct ggml_tensor * ggml_set_1d_inplace( |
| 3380 | struct ggml_context * ctx, |
| 3381 | struct ggml_tensor * a, |
| 3382 | struct ggml_tensor * b, |
| 3383 | size_t offset) { |
| 3384 | return ggml_set_impl(ctx, a, b, a->nb[1], a->nb[2], a->nb[3], offset, true); |
| 3385 | } |
| 3386 | |
| 3387 | struct ggml_tensor * ggml_set_2d( |
| 3388 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected