| 5162 | } |
| 5163 | |
| 5164 | struct ggml_tensor * ggml_fill( |
| 5165 | struct ggml_context * ctx, |
| 5166 | struct ggml_tensor * a, |
| 5167 | float c) { |
| 5168 | return ggml_fill_impl(ctx, a, c, false); |
| 5169 | } |
| 5170 | |
| 5171 | struct ggml_tensor * ggml_fill_inplace( |
| 5172 | struct ggml_context * ctx, |