| 3967 | } |
| 3968 | |
| 3969 | struct ggml_tensor * ggml_soft_max( |
| 3970 | struct ggml_context * ctx, |
| 3971 | struct ggml_tensor * a) { |
| 3972 | return ggml_soft_max_impl(ctx, a, NULL, 1.0f, 0.0f, false); |
| 3973 | } |
| 3974 | |
| 3975 | struct ggml_tensor * ggml_soft_max_inplace( |
| 3976 | struct ggml_context * ctx, |