| 3979 | } |
| 3980 | |
| 3981 | struct ggml_tensor * ggml_soft_max_ext( |
| 3982 | struct ggml_context * ctx, |
| 3983 | struct ggml_tensor * a, |
| 3984 | struct ggml_tensor * mask, |
| 3985 | float scale, |
| 3986 | float max_bias) { |
| 3987 | return ggml_soft_max_impl(ctx, a, mask, scale, max_bias, false); |
| 3988 | } |
| 3989 | |
| 3990 | struct ggml_tensor * ggml_soft_max_ext_inplace( |
| 3991 | struct ggml_context * ctx, |