| 3917 | } |
| 3918 | |
| 3919 | struct ggml_tensor * ggml_diag_mask_zero( |
| 3920 | struct ggml_context * ctx, |
| 3921 | struct ggml_tensor * a, |
| 3922 | int n_past) { |
| 3923 | return ggml_diag_mask_zero_impl(ctx, a, n_past, false); |
| 3924 | } |
| 3925 | |
| 3926 | struct ggml_tensor * ggml_diag_mask_zero_inplace( |
| 3927 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected