| 3369 | } |
| 3370 | |
| 3371 | struct ggml_tensor * ggml_set_1d( |
| 3372 | struct ggml_context * ctx, |
| 3373 | struct ggml_tensor * a, |
| 3374 | struct ggml_tensor * b, |
| 3375 | size_t offset) { |
| 3376 | return ggml_set_impl(ctx, a, b, a->nb[1], a->nb[2], a->nb[3], offset, false); |
| 3377 | } |
| 3378 | |
| 3379 | struct ggml_tensor * ggml_set_1d_inplace( |
| 3380 | struct ggml_context * ctx, |
no test coverage detected