| 3988 | } |
| 3989 | |
| 3990 | struct ggml_tensor * ggml_soft_max_ext_inplace( |
| 3991 | struct ggml_context * ctx, |
| 3992 | struct ggml_tensor * a, |
| 3993 | struct ggml_tensor * mask, |
| 3994 | float scale, |
| 3995 | float max_bias) { |
| 3996 | return ggml_soft_max_impl(ctx, a, mask, scale, max_bias, true); |
| 3997 | } |
| 3998 | |
| 3999 | void ggml_soft_max_add_sinks( |
| 4000 | struct ggml_tensor * a, |