| 3385 | } |
| 3386 | |
| 3387 | struct ggml_tensor * ggml_set_2d( |
| 3388 | struct ggml_context * ctx, |
| 3389 | struct ggml_tensor * a, |
| 3390 | struct ggml_tensor * b, |
| 3391 | size_t nb1, |
| 3392 | size_t offset) { |
| 3393 | return ggml_set_impl(ctx, a, b, nb1, a->nb[2], a->nb[3], offset, false); |
| 3394 | } |
| 3395 | |
| 3396 | struct ggml_tensor * ggml_set_2d_inplace( |
| 3397 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected